/* ------------------------ Fort.solid(); ------------------------ */
    .fort-top-one {
    /* background: #009dff; */
    background: linear-gradient(to right, #009dff 0, #00c8ff 100%);
    position: fixed;
    /*z-index: 1031;*/
    z-index: 9999;
    top: 0;
    left: 0;
    height: 4px;
    transition: all 1s;
    width: 0;
    /* overflow: hidden; */
    overflow: visible;
}

.colors {
    width: 100%;
    height: 4px;
}

.fort-text {
    position: absolute;
    z-index: 9999;
    top: 5px;
    right: 0;
    /* background: #fff; */
    white-space: pre;
}





/* ------------------------ Fort.car(); ------------------------ */
.fort-road {
    /*background: #009dff;*/
    background-color: transparent;
    /*background: linear-gradient(to right, #009dff 0, #00c8ff 100%);*/
    position: fixed;
    z-index: 1031;
    bottom: 0;
    left: 0;
    /*height: 4px;*/
    height: 40px;
    transition: all 1s;
    width: 0;
    /*overflow: hidden;*/
    overflow: visible;
}
.fort-car {
    /*width: 100px;*/
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    animation: idling .1s  infinite;
}
.checker_flag {
    height: 180px;
    position: fixed;
    /*bottom: 0;*/
    bottom: -103px;
    right: 0%;
    z-index: 1032;
}

.fort-text {
    position: absolute;
    right: 0;
}


/* balloon-4 bottom-left */
.fort-balloon {
    position: absolute;
    display: inline-block;
    padding: 6px 11px;
    width: auto;
    letter-spacing: 1px;
    /* text-align: center; */
    /*top: 0;*/
    top: -41px;
    /*right: 0;*/
    /* right: 10px; */
    min-width: 1em;
    /* height: 25px; */
    color: #F6F6F6;
    line-height: 1.2;
    text-align: center;
    background: #1c2f48;
    border-radius: 5px;
    white-space: pre;
}
.fort-balloon:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 7px;
    margin-left: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: #19283C;
    border-radius: 0 30px 0 30px;
    z-index: -1;
}
/* .fort-balloon:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 17px;
    margin-left: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: #FFF;
    border-radius: 0 30px 0 30px;
    z-index: -1;
    -webkit-transform: rotate(30deg);
       -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
         -o-transform: rotate(30deg);
            transform: rotate(30deg);
} */


@keyframes idling {
    0% {transform: translate(0px, 0px) }
    /*25% {transform: translate(1px, 1px) }*/
    50% {transform: translate(0px, 1px) }
    /*75% {transform: translate(1px, 0px) }*/
    100% {transform: translate(0px, 0px) }
}

.waving {
    -webkit-animation: spin 1.5s linear;
    -moz-animation: spin 1.5s linear;
    -ms-animation: spin 1.5s linear;
    -o-animation: spin 1.5s linear;
    animation: spin 1.5s linear;
}

@-webkit-keyframes spin {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(270deg);}
}
@-moz-keyframes spin {
    0% {-moz-transform: rotate(0deg);}
    100% {-moz-transform: rotate(270deg);}
}
@-ms-keyframes spin {
    0% {-ms-transform: rotate(0deg);}
    100% {-ms-transform: rotate(270deg);}
}
@-o-keyframes spin {
    0% {-o-transform: rotate(0deg);}
    100% {-o-transform: rotate(270deg);}
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(270deg);}
}

