/* ------------------------------------------------- */
/*                   Variables start                 */
/* ------------------------------------------------- */
:root {
    --dark-blue: #023047;
    --dark-blue-hover: #001c33;
    --blue: #064bb5;
    --blue-hover: #0037a1;
    --green: #b1ee63;
    --red: #f46a6a;
    --red-hover: #e05656;
    --green-hover: #9dda4f;
    --grey: #888794;
    --grey-hover: #566173;
    --white: #fff;
    --white-hover: #f5f5f5;
    --bg-light: #f5f5f5;
    --border-light: #e5e5e5;
    --border-radius-big: 2rem;
    --border-radius-normal: 1rem;
    --border-radius-light: 0.5rem;
    --bs: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
}
/* ------------------------------------------------- */
/*                   Variables end                   */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                 Initializing start                */
/* ------------------------------------------------- */
* {
    font-family: "Work Sans", sans-serif;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}
p {
    margin: 0;
}
.fs14 {
    font-size: 14px;
}
.lds-dual-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid var(--blue);
    border-color: var(--blue) transparent var(--blue) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.invalid-feedback {
    font-size: 16px;
}
/* ------------------------------------------------- */
/*                  Initializing end                 */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                   Button start                    */
/* ------------------------------------------------- */
.mybtn {
    height: 44px;
    padding: 0.5rem 1rem;
    border: 1px solid;
    border-radius: var(--border-radius-light);
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.mybtn.grey {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}
.mybtn.grey:hover {
    background-color: #586169;
}
.mybtn.darkblue {
    background-color: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}
.mybtn.darkblue:hover {
    background-color: var(--dark-blue-hover);
}
.mybtn.blue {
    background-color: var(--blue);
    color: white;
    border-color: var(--blue);
}
.mybtn.blue:hover {
    background-color: var(--blue-hover);
}
.mybtn.white {
    border-color: var(--grey);
    background-color: white;
    color: var(--blue);
}
.mybtn.white:hover {
    background-color: var(--white-hover);
}
.mybtn.green {
    border-color: var(--green);
    background-color: var(--green);
    color: black;
}
.mybtn.green:hover {
    background-color: var(--green-hover);
}
.mybtn.red {
    background-color: var(--red);
    color: white;
    border-color: rgb(255, 107, 131, 0.4);
}
.mybtn.red:hover {
    background-color: var(--red-hover);
}
/* ------------------------------------------------- */
/*                    Button end                     */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*            Background & color start               */
/* ------------------------------------------------- */
.bggreen {
    background-color: var(--green);
}
.bgdarkblue {
    background-color: var(--dark-blue);
}
.grey {
    color: var(--grey);
}
.black {
    color: var(--black);
}
/* ------------------------------------------------- */
/*             Background & color end                */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                  Navbar start                     */
/* ------------------------------------------------- */
nav.nav {
    min-height: unset;
}
nav .navbar__default {
    display: none;
}
.navbar .active {
    color: black;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-collapse a {
    font-size: 18px;
}
nav a {
    color: rgba(0, 0, 0, 0.55);
    text-decoration: none;
}
.nav__beranda span,
.nav__product span {
    display: none;
}
.nav__product input {
    height: 52px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-light);
    padding: 0.5rem 1.5rem;
}
.nav__product input:focus {
    border-color: var(--dark-blue);
    outline: none;
}
.nav__product input ~ i,
.nav__product input ~ svg {
    top: 50%;
    color: var(--text-grey);
    transform: translateY(-50%);
    right: 10%;
}
/* ------------------------------------------------- */
/*                   Navbar end                      */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                   Tabel start                     */
/* ------------------------------------------------- */
.table__wrapper {
    box-shadow: var(--bs);
    border: 1px solid var(--border-light);
}
#mytable {
    width: 100% !important;
}
#mytable thead th {
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    background-color: var(--bg-light);
    padding: 1rem;
    border: none;
}
#mytable thead th:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
#mytable thead th:nth-child(2) {
    min-width: 200px;
}
#mytable thead th:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
#mytable tbody tr td {
    color: var(--black);
    font-weight: 400;
    padding: 1rem;
}
#mytable tfoot th {
    border-top: none !important;
}
#mytable .no {
    width: 16px !important;
    text-align: center;
}
#mytable ul {
    padding: 0;
}
#mytable tbody tr:hover {
    background-color: #fff !important;
}
#mytable_filter input {
    height: 42px;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: var(--border-radius-light);
}
#mytable_filter input:focus {
    border-color: var(--blue);
}
#mytable_info {
    padding-top: 0;
}
#mytable_length label {
    margin-bottom: 0;
}

/* Tabel paginate start */
#mytable_paginate .page-item {
    margin: 0 0.25rem;
    width: 36px;
    text-align: center;
}
#mytable_paginate .page-item a {
    color: var(--black-light);
    border-radius: 50%;
}
#mytable_paginate .page-item.active a {
    border-radius: 50%;
    background-color: var(--blue);
    color: white;
}
#mytable_paginate .page-link:hover {
    border-radius: 50%;
}
#mytable_paginate .page-item.next a,
#mytable_paginate .page-item.previous a {
    background-color: unset;
}
#mytable_paginate li span i {
    color: var(--black-light);
    font-weight: 600;
}
#mytable_paginate li a {
    border: none;
    outline: none;
    box-shadow: none;
}
#mytable_paginate li a:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
#mytable_paginate .previous {
    margin-right: 1rem;
}
#mytable_paginate .next {
    margin-left: 1rem;
}
/* Tabel paginate end */
/* ------------------------------------------------- */
/*                    Tabel end                      */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                    Form start                     */
/* ------------------------------------------------- */
input,
select {
    height: 44px !important;
}
input:focus,
select:focus {
    box-shadow: none !important;
    border-color: var(--blue);
    height: 44px !important;
}
/* ------------------------------------------------- */
/*                     Form end                      */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                 Footer start                      */
/* ------------------------------------------------- */
footer {
    background-color: var(--dark-blue);
    position: sticky;
    top: 100%;
}
footer .brand h4,
footer h4 a {
    color: var(--border-light);
    font-size: 16px;
}
footer .link:first-child,
footer .link ~ a,
footer .copyright {
    font-size: 16px;
}
footer .link a:not(:first-child) {
    color: var(--border-light);
    font-size: 16px;
}
footer .line {
    width: 100%;
    height: 1px;
    background-color: white;
}
footer .sosmed .icon {
    width: 2.5rem;
    height: 2.5rem;
}
/* ------------------------------------------------- */
/*                   Footer end                      */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                Responsive start                   */
/* ------------------------------------------------- */
/* Mobile */
@media only screen and (min-width: 576px) {
    .nav__beranda span,
    .nav__product span {
        display: inline;
    }
    .nav__beranda img {
        display: none;
    }
}

/* Tablet */
@media only screen and (min-width: 768px) {
    footer .link:first-child,
    footer .link a:not(:first-child),
    footer .link ~ a,
    footer .copyright,
    footer .brand h4 {
        font-size: 18px;
    }
    .navbar-brand img {
        max-width: 250px !important;
    }
}

/* Large */
@media only screen and (min-width: 992px) {
    nav.nav {
        min-height: 86px;
    }
}
/* ------------------------------------------------- */
/*                 Responsive end                    */
/* ------------------------------------------------- */
