:root {
    --bg-white: #ffffff;
    --bg-dark: #272727;
    --bg-dark-blue: #1e2e5e;

    --primary: #0872cf;
    --secondary: #0865b9;

    -neon: #e5ff1a;

    --white: #fff;
    --text-color: #000;
    --text-detail-color: #555555;

    --green: #036600;
    --color-button: #0965b9;
    --hover-button: #408dd8;

    --font-family: 'Roboto', 'Prompt', sans-serif;
}

.stock-info {
    padding-bottom: 24px;
}

.stock-info .text-info {
    color: #000;
    text-align: center;
    font-weight: 600;
}

.stock-price {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    background: var(--secondary);
    padding: 16px 16px 0px 16px;
    text-align: center;
    color: #FFF;
}


.stock-price .stock-content {
    text-align: start;
}

.stock-content {
    width: 100%;
}

.stock-price .stock-img {
    background-color: var(--white);
    border-radius: 4px;
    padding: 4px;
    width: 80px;
    min-width: unset;
    margin-bottom: 12px;
}

.stock-name-wrap {
    text-align: start;
    margin-bottom: 12px;
}

.stock-name-wrap .name {
    font-size: 18px;
    font-weight: 500;
}

.stock-name-wrap .price {
    font-size: 26px;
    font-weight: 500;
    margin-top: 4px;
}


.stock-name-wrap .price:lang(en) {
    font-weight: 700;
}

.stock-name-wrap .unit {
    font-size: 16px;
    font-weight: 400;
}

.stock-name-wrap p {
    font-size: 14px;
    text-align: start;
    padding-bottom: 0px;
}

.stock-detail-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.stock-detail-wrap p {
    font-size: 12px;
    text-align: start;
}

.stock-detail-wrap .price-wrap p {
    padding-bottom: 0px !important;
}

.stock-detail-wrap .price {
    font-size: 18px;
    font-weight: 500;
    padding-top: 0px;
}

.stock-detail-wrap .price:lang(en){
    font-weight: 700;
}

.stock-price .stock-updated {
    font-size: 14px;
    color: #cbdbe1;
    text-align: start;
    margin: 10px 0px 10px 0px;
}

.text-update {
    font-size: 12px;
    padding-bottom: 0px;
}

.btn-shotcut {
    padding: 16px;
    background: var(--secondary);
}

a.btn-stock {
    background: var(--primary);
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 0px;
    transition: all 0.25s linear;
    font-weight: 300;
}

a.btn-stock:last-child {
    margin-bottom: 0;
}

a.btn-stock:hover {
    background: var(--hover-button);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .stock-widget{
        padding-top: 30px;
    }
    
}
@media (max-width: 991.98px) {
    .news-height{
        margin-bottom: 0 !important;
    }
}
@media (max-width: 425.98px) {
    .news-height{
        margin-bottom: 0 !important;
    }

    .stock-detail-wrap p{
        font-size: 14px;
    }

    .stock-detail-wrap .price{
        font-size: 16px;
    }
    
}