:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

.footer-last {
    color: #ccc;
    font-size: 12px;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
}

.light {
    color: white;
}

.dark {
    color: black;
}

.trip-list {
    /* width:90%; */
    cursor: pointer;
    /* margin-top:15px; */
    border: solid 1px #a6a6a6;
    margin-top: -1px;
    background: white;
    padding: 20px;
    /* border-radius: 10px 10px 0 0; */
}

.trip-list:hover {
    opacity: 0.7;
}

.trip-mini {
    /* color: #aaa; */
    color: black;
    font-size: 12px
}

.trip-selected {
    background: #0B6DBF;
    color: white;
}

.trip-disabled {
    opacity: 0.5
}

.trip-disabled:hover {
    opacity: 0.5 !important;
    cursor: not-allowed;
}

.menu {
    color: #333;
    cursor: pointer;
}

.menu:hover {
    color: #0e47a1;
    /* border-bottom:solid 1px #0e47a1 */
}

.page-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px
}


/* GLOBAL START */

.loader {
    background: white;
    width: 100vw;
    height: 100vh;
    position: fixed;
    text-align: center;
    z-index: 9999999999999;
    padding-top: 30vh;
    opacity: 0.99
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

.grow {
    transition: all .2s ease-in-out;
    color: grey !important
}

.grow:hover {
    transform: scale(1.2);
}

body {
    font-family: "Quicksand", Arial, sans-serif;
    -moz-appearance: none !important;
    -webkit-appearance: none;
    background: #F2F5FB;
}

a:hover {
    text-decoration: none !important;
}

.butang {
    text-align: center;
    cursor: pointer;
    background: #0A429B;
    color: white;
    padding: 15px 60px;
}

.butang:hover {
    background: #0B6DBF;
    text-decoration: none;
}


/* GLOBAL END */

.date-input {
    font-weight: bold;
    background: none;
    /* font-size: 22px; */
    width: 100%;
    display: inline-block;
    cursor: pointer;
    border: solid 1px #a6a6a6;
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%
}

select+i.fa {
    float: right;
    margin-top: -34px;
    margin-right: 10px;
    pointer-events: none;
    background-color: transparent;
    color: grey;
    padding-right: 5px;
}

.jetty-picker {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

.jetty-picker:hover,
.jetty-picker:active {
    background: #0B6DBF;
    color: white;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

.pulse {
    -webkit-animation: pulse 1s infinite;
    -moz-animation: pulse 1s infinite;
    -o-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
}