/* login */
.body-login {
    //background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background: linear-gradient(-45deg, #4C7DB7, #70BCE6, #F8F7F3);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
}

body {
    //background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    //background: linear-gradient(-45deg, #24428B, #4C7DB7, #70BCE6, #FFFFFF);
    background: linear-gradient(-45deg, #4C7DB7, #70BCE6, #F8F7F3);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.box-login .col-lg-4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: -1;
}

/* p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
} */


.navbar-brand {
    /* position: absolute;
    left: 50%;
    margin-left: -50px !important;
    margin-bottom: 20px;
    display: block; */
    transform: translateX(-50%);
    top: -6%;
    left: 50%;
    position: absolute;
}

/* .navbar-brand2 {
    position: absolute;
    left: 10%;
    margin-left: -10px !important;
    margin-bottom: 20px;
    display: block;
} */

.navbar {
    padding: 15px 10px;
    /* background: #fff; */
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    /* margin-bottom: 50px; */
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: rgb(0, 0, 0);
    color: black;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

.sidebar-header h3 {
    margin-top: 30px;
    font-weight: 600;
    text-align: center;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    /* -webkit-transition: all 0.3s;
    -o-transition: all 0.3s; */
    transition: all 0.3s;
}

#dismiss:hover {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

p .user {
    color: black;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #ffffff;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid black;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 8px;
    font-size: 1vm;
    /* display: block; */
    display: block;
    text-decoration: none;
    color: white;
}

#sidebar ul li a:hover {
    color: black;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: black;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: white;
}

ul.CTAs {
    padding: 20px;
    position: absolute;
    top: 500px;

}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

.fill {
    color: black;
    /* font-size: 16px; */
    padding: 20px;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    border-radius: 10px;
    /* margin-bottom: auto; */
}

.fill-admin {
    color: white;
    /* font-size: 16px; */
    padding: 20px;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    border-radius: 10px;
    /* margin-bottom: auto; */
}


/* .fill h1 {
    color: white;
    letter-spacing: 5px;
    font-size: 1vw;
    font-weight: bolder;
    text-shadow: 2px 3px #eb3131;
    margin-bottom: 30px;
    text-align: center;
} */

.title h1 {
    color: rgb(247, 242, 242);
    letter-spacing: 5px;
    font-size: 3.5vw;
    font-weight: bolder;
    text-shadow: 2px 3px blue;
    margin-bottom: 1vw;
    text-align: center;
}

.codebook input[type=text] {
    color: black;
    text-align: center;
    letter-spacing: 1vw;
    font-size: 2vw;
    font-weight: 700;
    border: blue;
    margin-bottom: 1vw;
}

.tombol button {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 1vw;
}

.table-penumpang tr {
    text-align: center;
    font-size: 1vw;
    font-weight: 600;
}

.table-penumpang thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-darurat tr {
    text-align: center;
    font-size: 1vw;
    font-weight: 600;
}

.table-darurat thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

/* .table-admin tr {
    text-align: center;
    font-size: 14px;

} */

td input[type=checkbox] {
    transform: scale(3);
    /* padding: 10px; */
}

.table-responsive {
    max-height: 35vw;
    margin-bottom: 1vw;
}

.container-fluid div {
    word-break: break-all;
}

.bawah-table .btn {
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    color: black;
    /* width: 5vw; */
    /* height: 60px; */
    margin-right: 1vw;
    margin-left: 1vw;
}

.bawah-table-darurat .btn {
    text-align: center;
    font-size: 1.5vw;
    font-weight: bold;
    color: black;
    /* width: 5vw; */
    /* height: 60px; */
    margin-right: 1vw;
    margin-left: 1vw;
}

#keyboard {

    padding: 1% 1%;
    border-radius: 10px;
    background-color: #87cdf9;
    text-align: center;
    /* box-shadow:4px 4px 4px #999; */
    /* margin-right: 5%;
	margin-left: 5%; */
    /* margin-top: 2%; */
    /* opacity: 0.9; */
}

#keyboard div {
    margin: 1.5% -8%;
}

#angkahuruf {
    font-weight: bolder;
    border-radius: 5px;
    width: 8%;
    font-size: 2.5vw;
}

#back {
    font-weight: bolder;
    color: white;
    background-color: blue;
    border-radius: 5px;
    width: 8%;
    font-size: 2.5vw;
}

#clear {
    font-weight: bolder;
    color: white;
    background-color: blue;
    border-radius: 5px;
    width: 25%;
    font-size: 2.5vw;
}

#keyboard label {
    margin-top: 10px;
    font-family: serif;
    text-decoration: underline;
}

#keyboard input {
    box-shadow: 2px 2px 2px #666;
}

#keyboard input[type="text"] {
    margin-top: 20px;
    border: 1px solid #666;
    border-radius: 4px;
    box-shadow: none;
}

#keyboard #back {
    font-weight: bolder;
}