@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@100;200;300;400;500;600;700;800&display=swap');
body {
    font-family: "Sarabun", sans-serif !important;
}
#journeyinfo[data-index="1"] .routeviewbottom
{
    padding-bottom: 10px !important;
}
.ttam-title-wrap
{
    padding: 0 12px;
    margin: 15px 0 10px 0;
    display: flex;
    align-items: center;
}
.ttam-title-wrap p
{
    color: #A3B7D9;
    margin: 0;
}
.ttam-title-wrap img
{
    margin-left: 5px;
    width: 15px;
    height: auto;
    cursor: pointer;
}
.ttam-item
{
    margin: 0 10px;
    padding: 20px 10px;
    background-color: white;
    cursor: pointer;
}
.ttam-item:not(:last-child)
{
    margin-bottom: 10px;
}
.ttam-item:not(:first-child)
{
    margin-bottom: 10px;
}

.ttam-item .item-head
{
   display: grid; 
   grid-template-columns: 1fr 110px;
   align-items: center;
}
.ttam-item .item-head .left .symbol
{
    /* border: 2px solid red; */
    width: 20px;
    height: 20px;
    border-radius: 100px;
    margin-right: 6px;
}
.ttam-item .item-head .left
{
    display: grid;
    grid-template-columns: 26px 1fr;
    justify-content: start;
}
.ttam-item .item-head .left span
{
    font-weight: 500;
}
.ttam-item .item-head .right
{
    display: flex;
    justify-content: end;
}
.ttam-item .item-head .right span
{
    margin-right: 10px;
    color: #9B9B9B;
}
.ttam-item .item-head .right i
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9B9B9B;
    
    transform: rotate(180deg);
}
.ttam-item p.item-list-title
{
    margin: 10px 0;
    font-size: 12px;
}
.ttam-item .item-list
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.ttam-item .item-list .tran
{
    display: grid;
    grid-template-columns: 1fr 85px;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
}
.ttam-item .item-list .tran p
{
    margin: 0;
    font-size: 13px;
}
.ttam-item .item-list .tran .right
{
    display: flex;
    align-items: center;
    justify-content: end;
}
.ttam-item .item-list-wrap
{
    display: none;
}

.journeyinfo-tta
{
    background: white;
    margin: 0 10px;
    display: none;
    padding-bottom: 15px;
}
.journeyinfo-tta .line
{
    height: 7px;
    width: 100%;
    background: #F6F6F6;

    margin-bottom: 15px;
}
.jrninfo-tta-group
{
    padding: 0 15px;
}
.jrninfo-tta-group .title-text
{
    padding-left: 5px;    
    color: #4A4A4A;
    font-weight: 400;

    margin-bottom: 15px;
}
.jrninfo-tta-group .item
{
   background: #F8F8F8; 
   border-radius: 4px;
}
.jrninfo-tta-group .item:not(:first-child)
{
    margin-top: 10px;
}
.jrninfo-tta-group .item
{
    display: grid;
    grid-template-columns: 30px 1fr 95px;

    align-items: center;

    gap: 10px;
    padding: 8px 12px;
}
.jrninfo-tta-group .item .left img
{
    width: 100%;
    height: auto;
}
.jrninfo-tta-group .item .mid
{

}
.jrninfo-tta-group .item .mid p
{
    margin: 0;
}
.jrninfo-tta-group .item .mid p:nth-child(1)
{
    color: #214A8C;
}
.jrninfo-tta-group .item .mid p:nth-child(2)
{

}
.jrninfo-tta-group .item .right p
{
    margin: 0;
    display: block;
    text-align: right;
}

.jpcontentmain #journeyinfo[data-index="1"]
{
    padding-bottom: 15px;
}
.item-list-wrap p[data-status="arrival"], .item-list-wrap p[data-status="arriving"], .jrninfo-tta-group p[data-status="arrival"], .jrninfo-tta-group p[data-status="arriving"]
{
    animation: flashing 1s ease-in-out infinite;
    -webkit-animation: flashing 1s ease-in-out infinite;
}

@keyframes flashing {
    0%{
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@-webkit-keyframes flashing {
    0%{
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}