.soft-container{
    padding-top: 60px;
    min-height: calc(100vh - 210px);
}
.soft-header{
    background-color: #fff !important;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 6rem;
    box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
    h1{
        margin-top: 3%;
        margin-left: -10%;
        font-size: 2.8rem;
        letter-spacing: .5rem;
        text-shadow: 1px 1px 0px white,3px 3px 0px black;
    }
}
.soft-menu{
    position: fixed;
    top: 6rem;
    bottom: 0;
    width: 240px;
    z-index: 777;
    min-height: 0;
    border-top: none;
    overflow: hidden;
    background-color: #fff
}
.soft-menu-show{
    display: block;
    left: 0 !important;
}


.soft-content{
    position: relative;
    margin: 0 0 0 240px;
    line-height: 1.8;
    box-sizing: border-box;
    padding: 32px;
    min-height: calc(100vh - 210px);
}
.soft-content-item{
    padding: 20px;
    font-size: 18px;
    font-family: fantasy;
    display: none;
    img{
        width: 100%;
        height: 50%;
    }
}
.loader {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.truckWrapper {
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    overflow-x: hidden;
}
/* truck upper body */
.truckBody {
    width: 130px;
    height: fit-content;
    margin-bottom: 6px;
    animation: motion 1s linear infinite;
}
/* truck suspension animation*/
@keyframes motion {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* truck's tires */
.truckTires {
    width: 130px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px 0px 15px;
    position: absolute;
    bottom: 0;
}
.truckTires svg {
    width: 24px;
}

.road {
    width: 100%;
    height: 1.5px;
    background-color: #282828;
    position: relative;
    bottom: 0;
    align-self: flex-end;
    border-radius: 3px;
}
.road::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    background-color: #282828;
    right: -50%;
    border-radius: 3px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 10px solid white;
}
.road::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #282828;
    right: -65%;
    border-radius: 3px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 4px solid white;
}

.lampPost {
    position: absolute;
    bottom: 0;
    right: -90%;
    height: 90px;
    animation: roadAnimation 1.4s linear infinite;
}

@keyframes roadAnimation {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-350px);
    }
}
h2{
    font-size: 21px;
    margin: 16px 0;
}
.tvbox-course{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    fieldset{
        border-color: #16b777;
        border-top-width: 5px;
        border-left-width: 0;
        border-right-width: 0;
        border-bottom-width: 0;
    }

}
.soft-content-item{

}
@media screen and (max-width: 991.98px) {
    .header-decorate{
        display: none;
    }
    .soft-header{
        h1{
            font-size: 1.8rem;
        }
    }
    .soft-container{
        width:auto!important;
        overflow: hidden;
    }
    .soft-content {
        padding: 16px 0;
        margin: 0;
    }
    .soft-menu {
        top: 0;
        left: -240px;
        transition: all .3s;
        z-index: 1003;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .soft-menu-bar {
        display: block !important;
        position: fixed;
        z-index: 999;
        top: 50%;
        left: 0;
        width: 52px;
        height: 52px;
        line-height: 52px;
        margin-top: -26px;
        border-radius: 3px;
        text-align: center;
        color: #fff;
        cursor: pointer;
        box-shadow: 1px 1px 16px rgba(0, 0, 0, .16);
    }
    .soft-shade {
        display: block;
        left: 0;
    }
    .soft-shade-show{
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,.7);
        z-index: 1001
    }
}
@media screen and (max-width: 767.98px) {
    .soft-content {
        padding: 16px 0;
        margin: 0;
    }
    .soft-content-item {
        padding: 16px 0;
    }
}
