@import url('https://fonts.googleapis.com/css?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --ijo-satpol: #0e3311;
    --ijo-satpol-brighter: #225526;
    --ijo-satpol-darker: #031104;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: var(--ijo-satpol-brighter);
}

::selection {
    color: white;
    background: var(--ijo-satpol-brighter);
}

/* statistik */
.counter {
    text-align: center;
}

.counter-count {
    font-size: 50px;
    font-weight: bold;
    position: relative;
    color: #000000;
    text-align: center;
    display: inline-block;
}

/* endstatistik */

.box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* padding-left: 50%; */
}

.dropdown-item.active {
    background-color: var(--ijo-satpol);
}

.dropdown-item.active:hover {
    background-color: var(--ijo-satpol);
    color: white;
}

.card {
    position: relative;
    /* justify-content: center; */
    width: 80%;
    min-height: 400px;
    background: rgb(255, 255, 255);
    box-shadow: 15px 15px 60px rgba(0, 0, 0, 0.01);
    padding: 20px;
    transform: translate3d(40vw);
}

.card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .top .userDetails {
    display: flex;
    align-items: center;
}

.card .top .userDetails .profile_img {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .top .userDetails h3 {
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 500;
    line-height: 1em;
}

.card .top .userDetails h3 span {
    font-size: 0.7em;
}

.imgBox {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 10px 0 15px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 230px;
}

.buttons img {
    max-width: 24px;
    max-height: 24px;
    cursor: pointer;
}

.buttons .left img {
    margin-right: 8px;
    ;
}

.likes {
    font-weight: 500;
    margin-top: 5px;
    font-size: 16px;
    color: #4d4d4d;
}

.message {
    font-weight: 500;
    margin-top: 10px;
    font-size: 16px;
    color: #4d4d4d;
}

.message b {
    color: #262626;
}

.settings:after {
    content: '\2807';
    font-size: 25px;
    color: #4d4d4d;
    cursor: pointer;
}

.icon:hover {
    opacity: 0.7;
}

/* ENDCARD */


/* HOVER ON */
/* Change color of dropdown links on hover */
.dropdown-menu {
    z-index: 1100;
}

.dropdown-menu li a {
    position: relative;
    display: block;
    text-decoration: none;
    transition: 0.5s;
}

.dropdown-menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    top: 100%;
    left: 0;
    background: green;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
}

.dropdown-menu li a:hover {
    background-color: white;
}

.dropdown-menu li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* END HOVER ON */

/* SWIPER */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: fill;
}

/* ENDSWIPER */

/* SOCIAL BUTTON */

a>.btn-social {
    float: left;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.btn-social span {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 60px;
    margin-left: 10px;
}

a .btn-social:hover {
    width: 200px;
}

a:nth-child(1):hover .icon {
    background: #00680e;
}

a:nth-child(2):hover .icon {
    background: #e1306c;
}

a:nth-child(3):hover .icon {
    background: #1da1f2;
}

a:nth-child(4):hover .icon {
    background: #0e76a8;
}

a:nth-child(5):hover .icon {
    background: #4267b2;
    /* background: #ff0000; */
}

a:nth-child(6):hover .icon {
    background: #219dd6;
    /* background: #333; */
}

a:nth-child(1) span {
    color: #00680e;
}

a:nth-child(2) span {
    color: #e1306c;
}

a:nth-child(3) span {
    color: #1da1f2;
}

a:nth-child(4) span {
    color: #1da1f2;
}

a:nth-child(5) span {
    color: #4267b2;
}

a:nth-child(6) span {
    color: #219dd6;
}

.btn-social .icon {
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-social .icon i {
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-in-out;
}

.btn-social:hover i {
    color: #fff;
}

/* END SOCIAL button */

/* galeri */
.kontainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
}

.kontainer .kard {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 15px;
    overflow: hidden;
}

/* watch out for this one  */
.kontainer .kard .imgBx,
.kontainer .kard .contentBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kontainer .kard .imgBx img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kontainer .kard .contentBx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    transform-origin: right;
    transition-delay: 0.5s;
}

.kontainer .kard:hover .contentBx::before {
    transform: scaleX(1);
    transition: transform 0.5s ease-in-out;
    transform-origin: left;
    transition-delay: 0s;
}

.kontainer .kard .contentBx {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kontainer .kard .contentBx .content {
    position: relative;
    padding: 30px;
    z-index: 1;
    transition: 0.5s;
    transform: translateX(-300px);
    transition-delay: 0s;
}

.kontainer .kard:hover .contentBx .content {
    transform: translateX(0px);
    transition-delay: 0.5s;
}

.kontainer .kard .contentBx .content h3 {
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kontainer .kard .contentBx .content p {
    font-size: 1em;
    line-height: 1.4em;
    font-weight: 300;
}

/* endgaleri */

/* dropdown animate */
@media (min-width: 200px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/* end dropdown animate */

/* Struktur Organisasi */
.dtree-wrapper * {
    box-sizing: border-box
}

.dtree-wrapper {
    position: relative;
    text-align: center;
    overflow: auto;
    padding: 10px;
    transition: 0.3s all ease;
}

.dtree-node-cell {
    position: relative;
    text-align: center;
    z-index: 8;
    display: inline-block;
    white-space: nowrap;
    vertical-align: top;
    transition: 0.3s all ease;
}

.dtree-node {
    text-align: center;
    display: inline-block;
    padding: 10px 10px 20px 10px;
    box-shadow: 0px 0px 8px -2px #888;
}

.dtree-node-main {
    width: 100%;
    position: relative;
    padding-top: 1px;
}

.dtree-node .dtree-img img {
    max-width: 100%;
    max-width: 90px;
    border-radius: 50px;
    font-size: 0;
}

.dtree-node .dtree-branch {
    position: absolute;
    height: 1px;
    z-index: -1;
}

.dtree-node .dtree-branch.linex {
    width: 50%;
    right: 0;
    bottom: calc(100% - 1px);
    border-top: 1px solid #777;

}

.dtree-node .dtree-branch.liney {
    top: 0;
    height: 100%;
    left: 50%;
    width: 1px;
    border-left: 1px solid #777;
}

.dtree-child-container {
    position: relative;
    overflow: hidden;
    transition: 0.3s all ease;
    height: 100%;
}

.node-collapse {
    position: absolute;
    bottom: 0;
    background: white;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 25px;
    cursor: pointer;
}

.node-collapse:after {
    content: "-";
}

.dtree-collapsed .node-collapse:after {
    content: "+";
}

.dtree-collapsed.dtree-node .dtree-branch.liney {
    height: 50% !important;
}

.dtree-target-collapsed {
    opacity: 0;
    width: 0;
    height: 0;
    transform: scale(0) translateY(-100%)
}

.dtree-x .dtree-target-collapsed {
    transform: scale(0) translateX(-100%)
}

.dtree-x .dtree-node-cell {
    text-align: left;
    display: block;
}

.dtree-x .dtree-child-container,
.dtree-x .dtree-node-main {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

.dtree-x .dtree-branch.linex {
    position: absolute;
    height: 1px;
    z-index: -1;
    right: auto;
    top: auto;
    left: 0;
    border: none;
    border-left: 1px solid #777;
}

.dtree-x .dtree-node .dtree-branch.liney {
    width: 100%;
    top: 50%;
    left: 0;
    border: none;
    border-top: 1px solid #777;
}

.dtree-x .node-collapse {
    bottom: auto;
    left: auto;
    right: 10px;
    top: calc(50% - 15px);
}

.dtree-x .dtree-collapsed.dtree-node .dtree-branch.liney {
    height: auto !important;
    width: 50% !important;
}

.dtree-searchbox {
    max-width: 200px;
    text-align: left;
    position: relative;
    z-index: 11;
    background-color: white;
}

.dtree-search-icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #eee;
    width: 25px;
    height: 25px;
    border: 1px solid #ccc;
}

.dtree-search-icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border: 1px solid black;
    border-radius: 50%;
}

.dtree-search-icon:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 15px;
    width: 1px;
    height: 10px;
    border-left: 2px solid black;
    border-radius: 50%;
    transform: rotate(-45deg);
}

input.dtree-search-control {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 3px 5px;
    width: calc(100% - 25px);
}

.dtree-search-list {
    padding: 0;
    margin: 0;
    display: block;
    position: absolute;
    overflow: auto;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: white
}

.dtree-search-list li {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-top: none;
}

.dtree-search-list li:hover {
    background-color: #eee;

}

/* basic template*/
.dtree-img,
.dtree-name {
    display: inline-block;
    vertical-align: middle;
}

.dtree-node {
    background: white;
    border: 1px solid #ccc;
    border-top: 2px solid #2196f3;
    box-shadow: 0px 1px 10px -4px #999;
}

.dtree-name {
    font-size: 16px;
    font-weight: 600;
    width: calc(100% - 90px);
    padding: 10px;
    text-transform: capitalize;
    text-align: left
}

.dtree-name .sub {
    display: block;
    font-weight: 400;
    color: #555;
    font-size: 13px;
}

.img-cover {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}