.stock-company-name{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.stock-update-time{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.stock-price-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

.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 #67c3b0;
    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{
    min-width: 120px;
    background-color: #67c3b0;
    color: white;
}

.btn-periodgroup .btn.active{
    background-color: white;
    color: #67c3b0;
}

.sod-row{
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 1199px) {
    .btn-periodgroup {
        width: 100%;
        overflow: auto;
    }
    .stock-od-item {
        width: 100%;
    }

    .stock-price-box {
        flex-direction: column;
    }

    .stock-company-name {
        margin-bottom: 10px;
        font-size: 16px;
        text-align: center;
    }

    .stock-update-time {
        font-size: 14px;
        text-align: center;
    }

    .stock-price-value {
        font-size: 48px;
    }

    .btn-periodgroup .btn {
        padding: 6px 10px;
        min-width: 100px;
        font-size: 14px;
    }

}