* {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    font-size: 100%;
    font-family: 'Quicksand', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
}

#home_body { 
    display: grid;
    grid-template-rows: calc(50vh - 250px) 500px calc(50vh - 250px);
}

.header {
    grid-row: 1;
    height:65px;
    width:100%;
    font-size:18px;
    background-color:#252525;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.14);
    z-index:1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.header_tab {
    margin: auto;
}

#home_logo {
    height: 50px;
    width: 50px;
    background: #252525;
    border: none;
}

#favicon {
    height: 8px; 
    width: 8px;
}


#login_container {
    grid-row: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.wrapper {
    width: 450px;
    height: 500px; 
    border-style: solid;
    border-width: 1px;
    border-color: #d9d9d9;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

#login_logo {
    height: 150px;
    width: 150px;
    margin: 0 auto;
}


.form-group {
    margin: 20px auto 0 auto;
    width: 300px;
}

.form-control {
    width: 300px;
    margin: 0 auto;
    padding: 13px 15px;
}

#login_button {
    border-style: solid;
    border-width: 1px;
    border-color: #525252;
    border-radius: 8px;
    margin: 0 auto 0 auto;
    padding: 13px 15px;
    font-weight: 700;
    color: #fff;
    float: right;
    background: #525252;
    cursor: pointer;
}

/*Welcome Page*/

#portfolio_body {
    display: grid;
    grid-template-rows: 60px auto; 
}

#portfolio_header {
    grid-row: 1;
    height:60px;
    width:100%;
    background-color:#252525;
    z-index:1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.portfolio_header_tab {
    margin: auto;
}

.portfolio_header_tab a{
    height: 60px;
    width: 60px;
}

#portfolio_header_logo_container {
    background: #252525;
    height: 60px;
    width: 60px;
}

#portfolio_header_logo {
    height: 60px;
    width: 60px;
    background: #252525;
}

#portfolio_header_search_tab {
    background: #252525;
    height: 60px;
}

#portfolio_header_search_tab input {
    background: #ffffff;
    height: 30px;
    width: 75%;
    padding-left: 15px;
    margin: 15px 25% 15px 0;
    border-radius: 5px;
}

#portfolio_header_options_tab {
    background: #252525; 
    height: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.porfolio_header_options {
    background: #252525; 
    color: #fff; 
    height: 60px;
    line-height: 60px;
    font-weight: 500;
    text-align: start;
    cursor: pointer;
}

#portfolio_header_options_tab_deposits a {
    color: #fff;
    background: #252525;
    text-decoration: none;
}

#portfolio_header_options_tab_logout a {
    color: #fff;
    background: #252525;
    text-decoration: none;
}

#portfolio_content {
    grid-row: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#portfolio_metrics {
    margin-top: 50px;
    width: 700px;
    height: 500px;
}

#portfolio_components { 
    margin: 50px 0 0 100px;
    width: 275px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#portfolio_components_header {
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    border-style: solid;
    border-width: 1px;
    border-color:#d9d9d9;
    padding-left: 27.5px;
}

.stock {
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    height: 50px;
    border-style: solid;
    border-width: 1px;
    border-color:#d9d9d9;
    padding: 2px;
}

.stock_company {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stock_ticker_symbol { 
    text-align: center;
    height: 13px;
    line-height: 13px;
    font-size: 12px;
    font-weight: 600;
    padding: 1px 0;
}
.stock_share_amount { 
    text-align: center;
    height: 13px;
    line-height: 13px;
    font-size: 10px;
    font-weight: 400;
    padding: 2px 0;
}

.stock_graph_mini {
    padding: 3px 0;
}

.stock_market_value {
    text-align: center;
    line-height: 46px;
    font-weight: 500;
    font-size: 14px;
}

#portfolio_value {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

#portfolio_value_change {
    display: flex;
    flex-direction: row;
    justify-content: start;
}

#portfolio_difference {
    font-size: 15px;
    font-weight: 500;
}

#portfolio_difference_label {
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    color: #737373;
}

#portfolio_value_chart_1min {
    font-size: 12px;
    width: 700px;
}

#portfolio_value_chart_1hour {
    font-size: 12px;
    width: 700px;
}

#portfolio_value_chart_daily {
    font-size: 12px;
    width: 700px;
}

#portfolio_chart_selection_tab {
    display: flex;
    flex-direction: row;
    justify-content: start;
    font-size: 16px;
    font-weight: 800;
}

#portfolio_chart_selection_1M {
    padding: 12.5px;
    margin: 12.5px;
    cursor: pointer;
}

#portfolio_chart_selection_1H {
    padding: 12.5px;
    margin: 12.5px;
    cursor: pointer;
}

#portfolio_chart_selection_1D {
    padding: 12.5px;
    margin: 12.5px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}


.selected {
    border: solid;
    border-width: 1px; 
    border-color: #252525;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    background-color: #252525;
    color: #fff !important;
}

/*Deposit Page*/

#deposit_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 25px;
}

#deposit_content table {
    border-collapse:collapse;
    border:1px solid #000;
}

#deposit_content table td {
    border:1px solid #000;
    padding: 15px;
    text-align: center;
}

.fab {
    cursor: pointer;
}