#StockDiv{
    width: 100%;
    padding: 0 20px;
}

.stock-company-name{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.stock-update-time{
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    color: lightgrey
}

.stock-price-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

.stock-price-value{
    font-weight: bold;
    font-size: 64px;
}

.stock-price-change,
.stock-price-changepercentage{
    font-size: 36px;
    margin-left: 20px;
}

.stock-price-change i,
.stock-price-changepercentage i {
    margin-right: 10px;
}

.stock-other-detail{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stock-od-item{
    margin-bottom: 20px;
    width: 48.5%;
    border-bottom: 1px solid #F26522;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 10px;
}

.sod-label{
    font-weight: 600;
}

.btn-periodgroup{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.btn-periodgroup .btn{
    background-color: #F26522;
    color: white;
    padding: 10px 20px!important;
    border: none;
}

.btn-periodgroup .btn.active{
    background-color: white;
    color: #F26522;
}

.sod-row{
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 640px) {
    
    
    .stock-other-detail{
        flex-direction: column;
    }

    .stock-od-item{
        width: 100%;
    }

    .btn-periodgroup{
        flex-direction: column;
    }

    .stock-company-name{
        font-size: 18px;
    }

    .stock-price-value{
        font-size: 48px;
    }
}