/* template */

/* Shimmer skeleton */
.skeleton-box {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    background-color: #DDDBDD;
}

.skeleton-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    -webkit-animation: shimmer 2s infinite;
            animation: shimmer 2s infinite;
    content: "";
}
@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Shimmer skeleton */


/* --button-- */
.btn-warning {
    color: #ffffff !important;
    background-color: #F07818 !important;
    border-color: #F07818 !important;
}

.btn-warning:hover {
    color: #ffffff !important;
    background-color: #d16913 !important;
    border-color: #d16913 !important;
}
/* --button-- */

/* /template */




/* Header sticky */
/* Content */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* Arrow */
.downArrow {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.rightArrow {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

/* Table */
table.absolute{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

/* button login & register */
.loginButton{
    float: left;
    padding-bottom: 8px;
    padding-top: 8px;
    background: white;
    color: #0079C2;
    font-size: 13px;
    text-align: center;
    border: 1px solid #0079C2;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 5px;
}

.registerButton{
    float: left;
    padding-bottom: 8px;
    padding-top: 8px;
    background: #0079C2;
    color: white;
    font-size: 13px;
    text-align: center;
    border: 1px solid #b2c2bf;
    cursor: pointer;
    border-radius: 5px;
}

/* header */
div.absolute{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.header-top {
    background: #1b3c7f;
}


/* sticky menu */
.sticky-offset {
    top: 150px !important;
    z-index: 98 !important;
}

.header-top .send-info {
}

.header-top .customer-service-info {
}

.header-bottom{
    top: 0px;
    left: 0px;
    right: 0px;
    background: #FFFFFF;
    box-shadow: 0px 1px #D3D3D3;
    position: relative;
}

/* link */
a{
    font-family: Rubik;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
}

.header img {
    padding-top: 5px;
}

img.kliklogo {
    margin-left: 60px;
    margin-right: 10px;
    padding-bottom: 10px;
}

h1{
    color: blue;
}

/* DropDown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* padding: 12px 16px; */
    z-index: 2;
}

.dropdown:hover .dropdown-content {
    display: block;
    width: 100%;
}

.dropdown_head_profile_list:hover{
    font-weight: bold;
    color: #1b3c7f;
}


/* Search Box */
form.searchBox input[type=text] {
    padding: 8px;
    /* font-size: 13px; */
    /* border: 1px solid #b2c2bf; */
    float: left;
    background: #F8F8F8;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

form.searchBox button {
float: left;
padding: 8px;
/* background: #D9534F; */
/* color: white; */
/* font-size: 13px; */
/* border: 1px solid #b2c2bf; */
border-left: none;
cursor: pointer;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}

form.searchBox button:hover {
    background: #c82333;
    color: #fff;
}

form.searchBox::after {
content: "";
clear: both;
display: table;
}

#branch_desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    /* padding-top: 100px; Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

  /* Modal Content */
  .modal-content,.modal2-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

  /* The Close Button */
  .close,.close2 {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

  .close:hover,
  .close:focus,
  .close2:hover,
  .close2:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #1b3c7f !important;
    border-color: #1b3c7f !important;
}

.btn-primary:hover {
    background-color: #081f53 !important;
    border-color: #081f53 !important;
}

.btn-outline-primary {
    color: #1b3c7f !important;
    border-color: #1b3c7f !important;
}

.btn-outline-primary:hover {
    color: #ffffff !important;

    background-color: #081f53 !important;
    border-color: #081f53 !important;
}


/* Default */
[class*="col-"] {
    width: 100%;
}
@media (min-width: 1200px) {
    /* .container{
        max-width: 1208px !important;
    } */
}

@media only screen and (min-width: 100px) {
    /* For tablets: */
    .col-mobile-a-left {
        margin-left: 1px;
        text-align: center;
    }

    .col-mobile-tableheader-right{
        position: absolute;
        /* visibility: hidden; */
        display: none;
    }
    .col-mobile-tableheader-right-reverse{
        position: relative;
        /* visibility: visible; */
        display: inline;
    }
    .col-mobile-kliklogo{
        margin-left: 1px;
    }
    .col-mobile-aright{
        margin-right: 1px;
    }
    .col-mobile-profile{
        width: 20%;
    }
    .col-mobile-search{
        width: 70%;
    }
    .col-mobile-daftarButton{
        display: none;
    }
    .header_kanan-mobile{
        display: none;
    }

}

@media only screen and (min-width: 992px) {
    /* For desktop: */
    .col-desktop-a-left {
        /* tambahan */
        margin-left: 60px;
        text-align: left;
    }

    .col-desktop-a-headright-60px{
        margin-right: 60px;
    }

    .col-desktop-tableheader-right{
        position: relative;
        /* visibility: visible; */
        display:inline;
    }
    .col-desktop-tableheader-right-reverse{
        position: absolute;
        /* visibility: hidden; */
        display:none;
    }
    .col-desktop-kliklogo{
        margin-left: 120px;
        margin-bottom: 5px;
    }
    .col-desktop-aright{
        /* margin-right: 30px; */
    }
    .col-desktop-profile{
        width: 30%;
    }
    .col-desktop-search{
        width: 60%;
    }
    .col-desktop-daftarButton{
        display: inline;
    }
    .header_kanan-desktop{
        display:contents;
    }

}

@media (max-width: 779px) {
    .swal2-container {
        width: 100%;
    }
}