.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link.active {
    color: #ffca00;
    font-weight: 500;
}
.detail_lot {
    font-size: 16px;
}
.data-container .btn {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    background: white;
    font-size: 12px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 1s;
    width: 100%;
    text-align: left;
    border: 1px solid #e8e8e8;
    margin-top: 1em;
}
.data-container .btn:after, .data-container .btn:before {
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    border: 0px solid #fff;
    transition: all 1s;
}
.data-container .btn:after {
    top: -1px;
    left: -1px;
    border-top: 5px solid black;
    border-left: 5px solid black;
}
.data-container .btn:before {
    bottom: -1px;
    right: -1px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
}
.data-container .btn:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.data-container .btn:hover:before, .data-container .btn:hover:after {
    width: 100%;
    height: 100%;
}
.data-container {
    display: flex;
    justify-content: center;
    align-items: center;
}