.border-secondary-kemenpar {
    border-color: #e7be70 !important;
}

.border-primary-kemenpar {
    border-color: #1d293b !important;
}

.bg-primary-kemenpar {
    background-color: #1d293b !important;
}

.bg-secondary-kemenpar {
    background-color: #e7be70 !important;
}

* {
    font-family: 'Inter', 'Quicksand', sans-serif;
}

.hovered:hover {
    background-color: #daae5c !important;
}

.rounded-custom {
    border-radius: 20px !important;
}

.rounded-custom-top {
    border-radius: 20px 20px 0 0 !important;
}

.rounded-custom-bottom {
    border-radius: 0 0 20px 20px !important;
}

.form-control-custom {
    -webkit-border-radius: 40px;
    border-radius: 40px;
}

.bg-kemenpar-nh {
    background-color: #1d293b !important;
    color: #e7be70 !important;
    border: none !important;
}

.bg-kemenpar {
    background-color: #1d293b !important;
    color: #e7be70 !important;
    border: none !important;
}

.bg-kemenpar:hover {
    background-color: #e7be70 !important;
    color: #1d293b !important;
    border: none !important;
}

.bg-kemenpar-reverse-nh {
    background-color: #e7be70 !important;
    color: #1d293b !important;
    border: none !important;
}

.bg-kemenpar-reverse {
    background-color: #e7be70 !important;
    color: #1d293b !important;
    border: none !important;
}

.bg-kemenpar-reverse:hover {
    background-color: #1d293b !important;
    color: #e7be70 !important;
    border: none !important;
}

.my-file-h5 {
    display: -webkit-box;
    overflow: hidden !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.my-file-p {
    display: -webkit-box;
    overflow: hidden !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hr-custom {
    position: relative;
}

.hr-custom span {
    position: absolute;
    top: -7px;
    left: 43%;
    background: #fff;
    padding: 0 20px;
    font-weight: bold;
    font-size: 10px;
}

.max-height-120 {
    max-height: 125px !important;
}

.mt-n15-rem {
    margin-top: -15rem !important;
}

.form-check-input:checked {
    background-color: #1d293b;
    border-color: #1d293b;
}

.rs-selected {
    background-color: #1d293b !important;
    border-color: #1d293b !important;
}

.rs-tooltip {
    border-color: #1d293b !important;
    display: none !important;
}

.cm-e-menu {
    position: relative;
    z-index: 1000;
    color: #1d293b;
    font-weight: 200;
}

.cm-e-menu ul {
    margin: 0;
    padding: 0;
}

.cm-e-menu li {
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;

    -webkit-transition: background-color ease-in 300ms;
    -moz-transition: background-color ease-in 300ms;
    -ms-transition: background-color ease-in 300ms;
    -o-transition: background-color ease-in 300ms;
    transition: background-color ease-in 300ms;
}

.cm-e-menu li:hover {
    background-color: #e7be70;
}

.topmenu li:hover {
    background-color: #1d293b;
    color: #fff;
}

.cm-e-menu ul li.topmenu {
    display: inline-table;
    padding: .3em 1em;
}

.cm-e-menu .topmenu ul {
    display: none;
    position: absolute;
    background-color: #e7be70;
}

.cm-e-menu li:hover>ul {
    display: table;
}

.cm-e-menu ul.submenu {
    top: 100%;
    left: 0;
    /* padding-top: .5em;
    padding-bottom: .5em; */
}

.cm-e-menu ul.submenu .submenu {
    top: -.5em;
    left: 100%;
    font-size: 1em;
    overflow: auto;
    z-index: 9999;
}

.cm-e-menu ul.submenu li {
    padding: .2em 1.5em;
    font-size: .9rem;
}

.cm-e-menu li.divider {
    padding: 0;
    border-top: 1px solid #e7be70;
    margin: .5rem auto .3rem;
    cursor: default;
}

.cm-e-menu li.divider:hover {
    background-color: transparent;
}


.transparent-navbar {
    background-color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
    box-shadow: 1px -6px 60px 42px rgba(255, 255, 255, .9);
    background-image: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .8));
}

.transparent-navbar .nav-link {
    color: #1d293b !important;
    font-weight: bold;
}


/* MEGAMENU */

.navbar {
    transition: ease-in 0.2s;
}


.navbar.shrink {
    padding-top: 2px;
    padding-bottom: 2px;

}

.navbar .navbar-brand img,
.navbar .navbar-brand {

    transition: ease-in 0.2s;
}

.navbar.shrink .navbar-brand img {
    max-height: 65px;
}

.navbar .megamenu {
    padding: 1rem;
    transition: ease-in 0.2s;
    border-radius: 0;
    background: #1d293b;
}


.navbar .megamenu a {
    color: #e7be70;
}


.navbar .megamenu h6 {
    font-weight: bold;
    color: rgb(153 158 167);
    /* color: #1d293b; */
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }

}

/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }
}

/* ============ mobile view .end// ============ */


.col-megamenu {
    border-right: 2px solid #e7be70;
    padding: 0 30px;
}

.col-megamenu:last-child {
    border-right: none;
}

/* END MEGAMENU */

/* Frame Section */
.frame-rounded,
.frame-rounded .carousel-inner {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.frame-rounded-bottom,
.frame-rounded-bottom .carousel-inner {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}


/* End Frame Section */

.overflow-hidden {
    overflow: hidden !important;
}

.card-img-left {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

@media screen and (max-width: 576px) {

    .card-img-left {
        border-top-right-radius: 20px !important;
    }

    .h-200px-xs {
        height: 200px;
    }
}



.span-login-register-head {
    color: #1d293b;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
}

.span-login-register-head:hover {
    background-color: #e7be70;
}

.bg-warning-custom {
    background-color: #e7be70;
}

.h-100vh {
    height: 100vh;
}

.w-100vw {
    width: 100vw;
}

.btn-outline-primary {
    border: 3px solid #1d293b;
    color: #1d293b;
    font-weight: bold;
    border-radius: 20px;
}

.btn-outline-primary:hover {
    color: #1d293b;
    background-color: #fff;
    border: 3px solid #fff;
}

.sidebar-profile {
    box-shadow: 0 4px 10px 1px #1d293b5e;
}

.btn-rounded {
    border-radius: 25px;
}

.text-custom-primary {
    transition: ease-in 0.2s;
    color: #1d293b;
}

.text-custom-primary:hover {

    color: #e7be70;
}


/* Media query for screens smaller than 766px */
/* @media (max-width: 766px) {
    .image-popup{
        max-width:100%;
    }
} */
.carousel-videos .carousel-control-next,
.carousel-videos .carousel-control-prev {
    top: 30%;
    bottom: 30%;
}

.carousel-videos .carousel-indicators {
    margin-right: 40%;
    margin-bottom: 4%;
    margin-left: 40%;
}

sup.notification-count {
    background-color: red;
    color: white;
    margin-left: -10px;
    border-radius: 10px;
    padding: 10px 4px;
    height: 13px;
    min-width: 18px;
    font-weight: 800;
    text-align: center;
}

.btn-primary-kemenpar {
    color: #fff;
    background-color: #1f365d;
    border-color: #182f58;
}

.btn-primary-kemenpar:hover {
    color: #fff;
    background-color: #182f58;
    border-color: #132b55;
}

.video-js {
    background-color: #ffffff !important;
}
