/* here you can put your own css to customize and override the theme */

/***
	Rounded Portlets
***/
/*
	.portlet {
	border-radius: 4px !important;
	}
	
	.portlet .portlet-title {
	border-radius: 4px 4px 0px 0px !important;
	}
	
	.portlet .portlet-body,
	.portlet .portlet-body .form-actions  {
	border-radius: 0px 0px 4px 4px !important;
	}
*/

/* Float Shadow */

.shake-once {
    animation: shaker 0.5s;
    animation-iteration-count: 2;
    animation-delay: 2s;
}

.shake:hover {
    animation: shake 0.5s;
    animation-iteration-count: once;
}

@keyframes shaker {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.btn:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}

.btn:hover, .btn:focus, .btn:active {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    /* move the element up by 5px */
}

.btn:hover:before, .btn:focus:before, .btn:active:before {
    opacity: 1;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* 	td 
	{
	text-align:center; 
	vertical-align:middle;
} */

.modal-body {
    padding: 30px;
}

.btn, .page-bar, .portlet {
    box-shadow: 1px 1px 5px 1px rgb(205, 205, 205);
}

.scroll-pane {
    overflow: auto;
    overflow-x;
    hidden;
    -webkit-overflow-scrolling: touch;
}

/* dengan background transparent agar scroll bar tidak terlihat */
.scroll-pane::-webkit-scrollbar {
    width: 8px
    height: 8px
}

.scroll-pane::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 2px
}

.scroll-pane::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: transparent;
    transition: all 400ms ease-in-out
}

/* div di-hover dan scroll bar diberi background solid agar terlihat */
.scroll-pane:hover::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 2px
}

.scroll-pane:hover::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(0, 0, 0, .4);
    transition: all 400ms ease-in-out
}

.scroll-pane:hover::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, .6)
}

.vertical-center {
    position: relative;
    left: calc(50% - 50px);
    top: 50%;
}