.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.avatar {
    vertical-align: middle;
    width: 43px;
    height: 43px;
    border-radius: 50%;
}

div.detail {
    border: solid;
    border-color: gainsboro;
    border-radius: 5px;
    border-width: 1px;
    box-shadow: 0 0 5px 0 #e7e7e7;
    margin-bottom: 15px;
    margin-top: 20px;
    padding: 10px;
    width: auto !important;
    max-width: none;
}

div.detail-item {
    margin-top: -10px;
    margin-bottom: 20px;
    padding: 10px;
}

div.detail-right {
    margin-right: 10px;
}

div.detail-center {
    vertical-align: middle;
    height: auto;
    display: flex;
    align-items: center;
}

/* Card Styles */

.card-image img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 8px;
}

/*Untuk Divider*/
hr.rounded {
    border-top: 5px solid #EAEAEA;
    border-radius: 5px;
}

.Top {
    margin-top: 10px;
}

.right {
    position: absolute;
    right: 10px;
    vertical-align: top;
}

.text-number-align {
    text-align: center;
}

.center {
    text-align: center;
}

/*CheckBox*/
.detail-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .detail-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.detail-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.detail-checkbox input:checked ~ .checkmark {
    background-color: #07b516;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.detail-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.detail-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

