
#ocexRateDetail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;

    box-sizing: border-box;
    padding: 50px 20px;
}

#ocexRateDetail .rateTitle{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

#ocexRateDetail .titleUnderline{
    width:120px;
    height:3px;
    margin-bottom: 40px;

    background-color: #900000;
}

#ocexRateDetail .rateTime {
    display: flex;
    font-size: 18px;
    width:470px;
    margin-bottom: 5px;
    margin-left: auto;
}

#ocexRateDetail .rateSection {
    width: 60%;
    max-width:900px
}

#ocexRateDetail .ocexTable {
    border: 1px solid lightgray;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#ocexRateDetail .ocexRow {
    display: flex;
    width: 100%;
    height: 50px;
    /* border:1px solid red; */
}

#ocexRateDetail .pinkRow {
    background-color: #ffe6e6;
    color: black;
}

#ocexRateDetail .col_0 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

#ocexRateDetail .col_1 {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: 40%;
}

#ocexRateDetail .flag_icon {
    height: 20px;
    margin-left: 3px;
    margin-right: 3px;
}

#ocexRateDetail .rateGap{
    margin-left: 20%;
}

#ocexRateDetail .col_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;

    border-style: none solid;
    border-width: 1px;
    border-color: lightgray;
}

#ocexRateDetail .col_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

@media screen and (max-width: 1200px) {

    #ocexRateDetail .rateSection {
        width: 80%;
        max-width:900px
    }
}

@media screen and (max-width: 960px) {
    #ocexRateDetail .rateGap{
        margin-left: 10%;
    }
}


@media screen and (max-width: 768px) {
    #ocexRateDetail .rateSection {
        width: 90%;
        max-width:900px
    }
}


@media screen and (max-width: 576px) {
    #ocexRateDetail .rateTitle{
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    #ocexRateDetail .rateTime {
        display: flex;
        font-size: 14px;
        width:310px;
        margin-bottom: 5px;
        margin-left: auto;
    }

    #ocexRateDetail .currencyName{
        display: none;
    }


    #ocexRateDetail .col_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
    }

    #ocexRateDetail .rateGap{
        margin-left: 0;
    }
}