@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap');

:root{
    /*--accent-color:#FF6100;*/
    --accent-color: rgba(247, 101, 163, 0.76);
}
*,
*:after,
*::before {
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}

body{
    background: #fff;
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color:#000;
}
h1,h2,h3,h4,h5,h6,.font-weight-bold{
    font-weight: bold;
    font-family: 'Overpass', sans-serif;
    color: #0B1354;
}
/*.container{
    width:85%!important;
    max-width:100%!important;
}*/
/* LOADING */
.kotak-loading{
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background: #fff;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}
body.loading .kotak-loading{
    visibility: visible;
    opacity: 1;
}
.footer-img{
        width: 100%;
    max-width: 250px;
}
.kotak-loading .box{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    text-align: center;
}
.kotak-loading .box img{
    height: 30px;
    width: auto;
}
.kotak-loading .box .loader{
    width: 150px;
    height: 4px;
    background: #eee;
    margin:30px auto 0;
    position: relative;
    overflow:hidden;
    border-radius: 50px;
}
.kotak-loading .box .loader:before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    width:50px;
    background: var(--accent-color);
    border-radius: 50px;
    animation:kotakLoading 1s linear infinite;
}
@keyframes kotakLoading{
    from{
        transform: translateX(-50px);
    }
    to{
        transform: translateX(200px);
    }
}

/* GENERAL */
.alamat-tryme{
    background: #fff;
    padding: 50px 35px;
    margin-top: 50px;
}
.alamat-tryme2{
    background: #fff;
    padding: 50px 35px;
    margin-top: 50px;
}
.bg-none{
    background:none;
}
.bg-orange{
    background-color: #FF5722;
    color: #fff;
}
.bg-accent{
    background-color:var(--accent-color);
}
.bg-pink{
    background-color:#F765A3;
}
.bg-white{
    background-color:#fff;
}
.bg-pending{
    background-color:#FFA4B6;
}
.bg-approved{
    background-color:#165BAA;
}
.aktif{
    background-color:#F765A3 !important;
    color: #fff !important;
}
.text-accent{
    color:#f765a3;
}
.text-gray{
    color:#ddd;
}
.bg-dark-20{
    background:rgba(0,0,0,0.2)
}
.bg-outline-accent{
    border:1px solid var(--accent-color);
}
.display-1{
    font-size: 6rem;
    font-weight: 500;
    color: #0b1352;
   font-family: 'Overpass', sans-serif;
}
.ml-15{
    margin-left: 15px;
}
a{
    color:#222
}
a:hover{
    text-decoration: none;
}
.object-fit-cover{
    object-fit: cover;
}
.object-fit-contain{
    object-fit: contain;
}
.border-dashed{
    border: 1px dashed #ddd!important;
}
.article{
    line-height: 2;
}
.article ul,
.article ol{
    margin-left:30px;
    line-height:2;
}
img.grayscale{
    filter:grayscale(1)
}
.radius-0{
    border-radius: 0;
}
.radius-5{
    border-radius: 5px;
}
.radius-10{
    border-radius: 10px;
}
.radius-50{
    border-radius:50px;
}
.radius-circle{
    border-radius:50%;
}
.border-bottom-light{
    border-bottom:1px solid #eee;
}

.font-weight-regular{
    font-weight:normal;
}
.font-weight-medium{
    /*font-weight:500;*/
    font-weight: bold;
}
.font-small{
    font-size:0.9rem;
}
.btn-circle{
    width:40px;
    height:40px;
    line-height: 40px;
    text-align: center;
    padding:0;
    border-radius:50%;
    font-size:20px;
}
.shadow-light{
    box-shadow:0px 5px 10px rgba(0,0,0,0.06)!important;
}
.form-control.border-bottom{
    border-bottom:1px solid #ddd!important;
    outline:none!important;
    box-shadow:none!important;
}
.form-control.border-bottom:focus{
    border-bottom:1px solid var(--accent-color)!important;
}
/* NAVBAR */
#navbar{
    background: #fff;
    position:sticky;
    position:-webkit-sticky;
    top:0;
    z-index:999;
    margin:0;
    padding:0;
    box-shadow:0px 10px 30px #0001;
    border:none;
}
.navbar-brand{
    font-weight:bold;
    padding:0!important;
}
.navbar-brand img{
    height: 75px;
    object-fit: contain;
    /*margin:0 15px 0 0;*/
}
.navbar-brand2{
    font-weight:bold;
    padding:0!important;
}
#navbar .navbar-nav > li{
    position: relative;
}
#navbar .navbar-nav > li > a{
    transition: .3s ease;
    padding: 20px 60px 20px 0px;
    color:#0B1354;
    font-weight:bold;
    text-transform: uppercase;
    font-size:14px;
    font-family: 'Overpass', sans-serif;
}
#navbar-top{
    padding:0;
    border:none;
}
#navbar-top .container-fluid{
    padding-right:0;
}
#navbar-top .nav-right a{
    padding:0 30px;
    height:70px;
    line-height:70px;
    border-radius:0;
    margin-top:-1px;
}
#navbar-top #searchform{
    padding:15px 0;
}
#navbar-top #searchform .form-control{
    background:#E5E5E5;
    border:none;
}
#navbar-top #searchform .btn{
    background:#E5E5E5;
    border:none;
}
#navbar-menu{
    box-shadow:0px -5px 10px rgba(0,0,0,0.025);
}


/* SECTION */
.bgr{
    /*position: absolute;*/
    top:0;
    left:0;
    /*width:100%;*/
    height:200px;
    object-fit: cover;
    z-index:1;
}
.min-hb{
    min-height: 340px;
}
.btn-peace{
    background: #165baa;
}
.btn-p-muda{
    background: #A155B9;
}
.section-bg{
    position: relative;
}
.section-bg .bg{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    /*height:100%;*/
    object-fit: cover;
    z-index:1;
}
.section-bg .bgt{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index:1;
}
.section-bg .bg.bg-left{
    right:auto;
    width:50%;
}
.section-bg .bg.bg-right{
    left:auto;
    right:0;
    width:50%;
}
.section-bg-overlay:before{
    content:"";
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:#000;
    opacity: 0.5;
    z-index:2;
}
.section-bg .container{
    position: relative;
    z-index: 3;
}
.section_large{
    padding:100px 0;
}
.slick-dots{
    text-align:center;
    list-style: none;
    margin-top:20px;
}
.slick-dots li{
    display:inline-block;
}
.slick-dots li button{
    width:8px;
    height:8px;
    border:none;
    background:#ddd;
    border-radius:50%;
    outline:none;
    overflow:hidden;
    text-indent:-9999px;
    margin:0 5px 5px;
    transition: .3s ease;
}
.slick-dots li.slick-active button{
    background: var(--accent-color);
}

footer{
    padding: 70px 0px 0px 0px;
    border-top:1px solid #ddd;
    background: #f4f4f4f0;
    font-family: 'Lato', sans-serif;
}
.text-footer{
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}
.menu-footer{
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
}
.card-review-slider .slick-dots{
    position: absolute;
    bottom:0;
    left:0;
    right:0;
}
.card-zoom{
    overflow: hidden;
}
.card-zoom img{
    transition: .3s ease;
}
.card-zoom:hover img{
    transform: scale(1.2);
}
.section-login{
    min-height:calc(100vh - 78px);
}
.section-login:before{
    background:var(--accent-color);
    opacity:0.75;
}
.section-step{
    text-align: center;
    padding:50px 0;
}
.section-step .row{
    overflow:hidden;
    margin:0;
}
.section-step .col{
    position: relative;
    height:100%;
    padding:0;
}
.section-step .col:before{
    content: "";
    border-bottom:5px solid #C4C4C4;
    position: absolute;
    top:50%;
    left:0;
    right:0;
    transform: translateY(-50%);
}
.section-step .step-circle{
    display: inline-block;
    width:60px;
    height:60px;
    line-height: 60px;
    text-align: center;
    background:url(../images/background/step-inactive.png) no-repeat center;
    background-size:60px 60px;
    position: relative;
    z-index:10;
    color:#C4C4C4;
    font-weight: bold;
}
.section-step .col.active{
    z-index:11;
}
.section-step .col.active:before{
    border-color:var(--accent-color);
    width:calc((100% + 50%) - 30px);
}
.section-step .col.active .step-circle{
    background:url(../images/background/step.png) no-repeat center;
    color:var(--accent-color);
}
.rate{
    margin-top:-8px;
    font-size: 24px;
}
.rate-base-layer{
    color: #fe6100;
}
.rate-select-layer span{
    color: #f765a3;
}
.bg-black{
    background: #1111112e;
}
.bg-pink{
    background-color: #f765a3;
}
.b-radius{
    border-radius: 50%;
}
.content-type{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    padding-bottom: 15px;
    margin-left: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #fe6100;
    list-style: none;
}
.content-type-item{
    padding-right: 100px;
    font-weight: 700;
}
.content-type .content-type-item .active{
    color: #fe6100;
}

.content-type .content-type-item .active:before{
    display: inline-block;
    content: '';
    -webkit-border-radius: 0.375rem;
    border-radius: 0.375rem;
    height: 0.75rem;
    width: 0.75rem;
    margin-right: 0.5rem;
    background-color: #fe6100;
    color: #fe6100;
}
.button-link {
    -webkit-box-shadow: 0 0 24px hsla(0,0%,63.1%,.22);
    box-shadow: 0 0 24px hsla(0,0%,63.1%,.22);
    top: 8px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all .3s ease,overflow .3s ease;
    transition: all .3s ease,overflow .3s ease;
    position: absolute;
    z-index: 1001;
    background: #fff;
    top: 50px;
    width: 200px;
    /*border-radius: 4px;*/
    /*padding: 0 11px;*/
    right: 8.5%;
}
.button-active {
    max-height: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px){
    #navbar{
        padding:15px;
        box-shadow:0px 1px 3px #0001;
    }
    #navbar-top .nav-right{
        padding:15px;
    }   
    #navbar-top .nav-right a{
        padding:15px;
        height:auto;
        line-height:1;
    }
    #navbar-menu{
        padding:0;
        box-shadow:none;
    }
    .navbar-toggler{
        border:none;
        outline:none!important;
    }
    .navbar-toggler span{
        display: block;
        width: 30px;
        height: 2px;
        border-radius: 3px;
        background-color: #333;
        margin: 7px 0;
        transition: all 0.4s;
    }
    .navbar-toggler[aria-expanded="true"] span { 
        display: none; 
    }
    .navbar-toggler[aria-expanded="true"] span:first-child {
        display: block; 
        transform: rotate(45deg) translate(9px, 7px);
    }
    .navbar-toggler[aria-expanded="true"] span:last-child { 
        display: block; 
        transform: rotate(-45deg) translate(-1px, 2px); 
    }
    #navigation{
        overflow:auto;
        max-height:calc(100vh - 60px);
        margin-top:30px;
    }
    #navigation .navbar-nav li a{
        height:auto;
        line-height:1;
        padding:15px;
    }
    .section_large{
        padding:30px 0;
    }
    .section-bg .bg.bg-left,
    .section-bg .bg.bg-right{
        position: relative;
        top:auto;
        left:auto;
        bottom:auto;
        right:auto;
        width:100%;
        height:auto;
    }
    footer{
        padding:30px 0;
    }
    
}
@media (max-width: 480px){
    
    
}
.pagination{
    width: 100%;
    text-align: center;
}
.pagination li{
    display: inline-block;
    float: none;
    margin:0 5px 10px 0;
}
.pagination li a{
    border-radius: 0!important;
    -webkit-border-radius: 0!important;
    color:#333;
    border:1px solid #eee;
    padding: 8px 12px 8px 12px;
}
.pagination li.active a{
    background:#048ED9;
    color:#fff;
    border-color:#048ED9;
    padding: 8px 12px 8px 12px;
}
.page_new{
    padding: 10px 15px 10px 15px;
    background: #eee;
}
.page_active{
    padding: 10px 15px 10px 15px;
    background: #ff8671 !important;
}
/* project animation */
.element-item{
    padding: 5px;
}
.element-item{
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
.table td, .table th {
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}
.table thead th {
    vertical-align: middle;
    border-bottom: 2px solid #dee2e6;
}

 .rate-base-layer
{
    color: #aaa;
}
.rate-hover-layer
{
    color: orange;
}
.rate2
{
    font-size: 35px;
}
.rate2 .rate-hover-layer
{
    color: pink;
}
.text-pink
{
    color: #F765A3 !important;
}
.rate2 .rate-select-layer
{
    color: red;
}
.btn-pink{
    background: #F765A3;
    color:#fff!important;
}
.btn-orange{
    background: #fe5722;
    color:#fff!important;
}
.btn-biru{
    background: #0B1354 !important;
    color:#fff!important;
}
.btn-menu{
    background: #F765A3;
    color:#fff!important;
    border-radius: 0px;
    padding: 20px 30px;
}
.btn-search{
    background: #0B1354;
    color:#fff!important;
    border-radius: 10px;
}
.btn-putih{
    background: #fff;
    color:#fff!important;
    border-radius: 0px;
}
.btn.btn-outline.btn-pink{
    color:#ff6100!important;
    border:1px solid #ff6100;
    background: #fff; 
}
.btn.btn-outline.btn-pink:hover{
    color:#fff!important;
    background: #ff6100;
}
.title-section {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 30px;
}
.title-section h1 {
    /*color: #222222;*/
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    margin-bottom: -1px;
}
.title-section h1 span {
    display: inline-block;
    padding-bottom: 16px;
    padding-right: 5px;
    border-bottom: 1px solid #f44336;
}
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #fdddc9;
    border-radius: .25rem;
}

/*.............*/
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    /*border-color: #ddd;*/
}
.panel-group .panel-heading {
    border-bottom: solid 0.5px #F9D1D1;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel-group .panel-footer {
    border-top: 0;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
}
.panel-default {
    /*border-color: #ddd;*/
}

/*.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}*/