span.requiredthings{
    color:red;
}
.travelinsuranceheading{
    color: #daa520;
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: bold;
}
table.traveldetails{
    width: 100%;
    font-size: 18px;
    color: #000;
    border-collapse: separate; 
    border-spacing: 0.5em;
}
p.para{
    color:#000;
    font-size: 18px;
    text-align: justify;
    line-height: 1.2em;
}
div.divider{
    border: 2px dashed #daa520;
    margin: 20px 0;
}
div.paydivider{
    border: 2px dashed #c7c7c7;
    margin: 20px 0;
}
div.travelfeestatus
{
    display: inline-block;
    border: 3px solid #ff0000;
    transform: rotate(-15deg);
    position: relative;
    padding: 7px 25px;
}
div.travelfeestatus p{
    display: inline;
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
}
span.airstatus{
    font-weight: bold;
    animation: blink 1s infinite; 
}
span.airstatusPending
{
    color: #ff0000;
    
}
span.airstatusCompleted
{
    color: #129e12;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.caimage
{
    animation: blink 1s infinite; 
}