@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap');
* {
	box-sizing: border-box;
	font-family: Assistant, Times;
}

html {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    overflow-x: hidden;
}

html, body, div, span, applet, object, iframe, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%
}

hr {
    border-width: 0 0 1px 0;
    border-style: solid;
    color: #1d456f;
    border-color: #72a3c2;
    margin: 0 0 10px;
    width: 100%;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

h2 {
    font-size: 26px
}

h3 {
    font-size: 18px
}

h4, h5, h6 {
    font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    font-size: 12pt;
    color: #606060;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    line-height: 1.3;
    width: 100%;
    margin-bottom: 5px;
}

ul {
    list-style: square;
}

li {
    margin-left: 20px;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

div::after,
div:after,
table::after {
    content: "";
    clear: both;
    display: table;
}

input, textarea, select {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: .5em .6em;
    display: inline-block;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(72,180,97,.5);
    border-color: #3cbf00;
}

input[type="radio"], input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin: 0;
    box-shadow: none;
    border-color: transparent;
}

/* table */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    position: relative;
    background-color: #fff;
}

thead tr {
    background-image: linear-gradient(to bottom,#F8F8F8 0,#ECECEC 100%);
}

th, td {
    font-size: 10pt;
    padding: 6px;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    border-bottom-width: 2px;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

tfoot {
    font-weight: bolder;
}

/* button */
button {
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 12pt;
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

button:hover {
    background-image: linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
    cursor: pointer;
}

.btn-success {
    border: 1px solid #34a400;
    background-color: #34a400;
    color: white;
}

.btn-warning {
    border: 1px solid #ffc107;
    background-color: #ffc107;
    color: rgba(15, 15, 15, 0.88);
}

.btn-danger {
    border: 1px solid #dc3545;
    background-color: #dc3545;
    color: white;
}

.btn-outline-white {
    color: #fff;
    border: 1px solid #f8f9fa;
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #34a400;
}

.btn-outline-green {
    border: 1px solid #34a400;
    background-color: #fff;
    color: #34a400;
    width: 95%;
}

.btn-outline-green.active,
.btn-outline-green:hover {
    border: 1px solid #34a400;
    background-color: #34a400;
    color: #fff;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 10px;
    font-size: 10pt;
}

/* text align */
.tal {
    text-align: left;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.taj {
    text-align: justify;
}

/* margin */
.m5 {
    margin: 5px;
}

.m10 {
    margin: 10px;
}

.mx2 {
    margin: 0 2px;
}

.mx5 {
    margin: 0 5px;
}

.mx10 {
    margin: 0 10px;
}

.my5 {
    margin: 5px 0;
}

.my10 {
    margin: 10px 0;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.m0a {
	margin: 0 auto;
}

/* padding */
.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.px5 {
    padding: 0 5px;
}

.px10 {
    padding: 0 10px;
}

.py5 {
    padding: 5px 0;
}

.py10 {
    padding: 10px 0;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

/* float */
.fr {
    float: right;
}

.fl {
    float: left;
}

/* width */
.wa {

width: auto;
}

.w5 {
    width: 5%;
}

.w10 {
    width: 10%;
}

.w15 {
    width: 15%;
}

.w20 {
    width: 20%;
}

.w25 {
    width: 25% !important;
}

.w30{
    width: 30%;
}

.w33 {
    width: calc(100%/3);
}

.w40 {
    width: 40%;
}

.w50 {
    width: 50%;
}

.w60 {
    width: 60%;
}

.w66 {
    width: calc(100%*2/3);
}

.w70 {
    width: 70%;
}

.w75 {
    width: 75%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

.w100 {
    width: 100%;
}

.ml5 {
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.w50:nth-child(odd){
    padding-right: 3px;
}

.w50:nth-child(even){
    padding-left: 3px;
}

.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    box-shadow: 0 1px 6px 0 rgba(49,53,59,0.12);
}

.card:hover {
    box-shadow: 0px 3px 6px 0px rgb(77 77 77 / 20%);
}

.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
    border-radius: 0.25rem;
}

.input-grup {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: .25em 0;
}

.input-grup .prep {
    margin-right: -1px;
    display: flex;
    width: auto;
}

.input-grup .prep .prep-no {
    display: flex;
    align-items: center;
    padding: .5em .8em;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid rgba(0,0,0,.125);
    box-shadow: 0 1px 6px 0 rgba(49,53,59,0.12);
    font-size: 11pt;
    border-radius: 5px 0 0 5px;
    letter-spacing: normal;
    opacity: 0.6;
}

.input-grup input {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    border-radius: 0 5px 5px 0 !important;
    margin: 0px !important;
}

.view-pass {
    position: absolute;
    top: 10px;
    right: 14px;
    opacity: 0.38;
}

.view-pass:hover {
    cursor: pointer;
    opacity: 0.48;
}

.fs15 {
    font-size: 15pt;
    position: absolute;
    margin: -11px -25px;
    color: white;
    cursor: pointer;
}

.cari-kode-domba {
    /* display: none; */
    opacity: 0;
    width: 30px;
    transition: width 1s;
}

@media (max-width: 767px) {
    .fs15 {
        margin: -11px -35px;
    }

    .w50 {
        width: 100%;
    }

    .w50:nth-child(odd) {
        padding-right: 0px;
    }
    
    .w50:nth-child(even){
        padding-left: 0px;
    }
    
    input, textarea, select {
        padding: 6px 8px;
    }
}