* {
    direction: rtl;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
body {
    background-color: rgba(201, 236, 235);
}
#one_wey {
    margin-top: 100px;
    width: 60%;
}
#return_wey {
    margin-top: 50px;
    width: 60%;
}
.bar {
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.bar > a {
    padding: 0px 10px;
    text-decoration: none;
    font-style: italic;
    font-weight: bolder;
    color: rgb(9, 39, 211);
    text-shadow: 1px 1px 3px rgb(9, 39, 211), 3px 2px 1px rgb(93, 248, 248);
    border-bottom: 3px blue solid;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.active {
    font-size: 30pt;
}
.desibale {
    opacity: 0.5;
    font-size: 24pt;
}
section > pre {
    text-align: right;
    font-size: 36pt;
    font-style: italic;
    font-weight: bolder;
    color: rgb(9, 39, 211);
    text-shadow: 1px 1px 3px rgb(9, 39, 211), 3px 2px 1px rgb(93, 248, 248);

}
table {
    width: 100%;
    border: 6px rgb(112, 241, 237);
    border-style: groove;
    border-radius: 10px;
    padding: 5px;
}
th, td {
    font-size: 20pt;
    border-bottom: 2px black solid;
    padding: 10px 15px;
}
td {
    cursor: pointer;
}
.car_row {
    display: flex;
    width: 80%;
    border: 1px black solid;
    border-radius: 10px;
}
.blue {
    background-color: rgb(177, 245, 243);
}
.purple {
    background-color: rgb(190, 189, 233);
}
.car_tr {
    display: none;
    position: relative;
    animation: car_top 1s ease-out forwards;
    top: -50px;
    opacity: 0.0;
}
.company {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.price {
    background-color: rgba(255, 255, 0, 0.377);
    font-weight: bolder;
    margin-right: 50px;
    margin-left: 50px;
}
@keyframes car_top {
    0% {
        opacity: 0.0;
        top: -50px;
    }
    100% {
        opacity: 1.0;
        top: 0px;
    }
}