:root {
    --side-width: 240px;
    --side-margin: 10px;
    --primary-yellow: #ffcc00;
    --primary-green: #006633;
}

body, main {
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100vh;
}

.socialbar {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 100;
    padding: 10px 20px;
    border-radius: 12px;
    color: white;
}
.social-media {
    display: flex;
    justify-content: space-between;
}
.social-media i {
    font-size: 2em;
    color: #00bd5f;
}

aside {
    position: absolute;
    top: var(--side-margin);
    bottom: var(--side-margin);
    left: var(--side-margin);
    width: var(--side-width);
    background: rgb(255, 255, 255);
    z-index: 100;
    border-radius: 10px;
    box-shadow: 4px 4px 16px rgba(0,0,0,0.15);
    transition: 1s;
}


#btnToggle {
    position: absolute;
    right: -18px;
    top: calc(50% - 40px);
    background: #ffffff;
    height: 80px;
    width: 18px;
    border-radius: 0 6px 6px 0;
    padding-top: 28px;
    padding-left: 4px;
}

#btnToggle .fas{
    color: #000000;
}

#btnToggle:hover {
    cursor: pointer;
    background: #ffcc00;
}

.list-header {
    background: #ffcc00;
    border-radius: 10px 10px 0 0;
}

.header-title {
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    margin-bottom: 16px;
}
.header-title .title {
    width: 100%;
}
.header-title h4 {
    line-height: 32px;
    text-align: center;
    width: 100%;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 900;
}

.header-title h4:hover {
    cursor: pointer;
}

.header-title .title-btn {
    margin: 0;
    height: 100%;
    width: 36px;
    background: var(--primary-yellow);
    border-radius: 0 10px 0 10px;
    text-align: center;
    line-height: 32px;
}

.list-body {
    position: relative;
    height: calc(100% - 72px);
}

.list-tabs {
    height: 32px;
    border-bottom: 1px solid rgb(210, 210, 210);
}
.list-tabs a {
    display: block;
    font-size: 1.2em;
    text-align: center;
    width: 100%;
    height: 32px;
    color: var(--primary-green);
}
.tab-name {
    position: absolute;
    font-size: 0.6em;
    text-align: center;
    top: -16px;
    opacity: 0;
    width: 33%;
}
.btn-tab:hover > .tab-name {
    opacity: 1;
}
ul {
    padding: 0;
    margin: 0;
}
.list-tabs li {
    width: 33%;
    float: left;
    list-style: none;
}
.list {
    height: calc(100% - 32px);
    background: rgb(255, 255, 255);
    padding-top: 1px;
    overflow-y: auto;
}
.ppl-card {
    display: flex;
    margin: 10px 10px 10px 10px;
    padding: 8px;
    border: 1px solid #d5d5d5;
    background: white;
    border-radius: 6px;
}
.ppl-card-header {
}
.ppl-card-cover {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 1px solid #006633;
}
.ppl-card-title {
    margin-left: 10px;
    width: 146px;
}
.ppl-card-title .ppl-name{
    font-weight: 700;
    margin-bottom: 4px;
}

.ppl-card-title a{
    font-size: 0.7em;
    padding: 2px 8px;
    height: 22px;
    background: #fff3c1;
    color: #cb9100;
    border-radius: 4px;
}
.ppl-card-title .title-link{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ppl-card-title .ppl-title {
    font-size: 0.7em;
    color: #888;
}
.ppl-name:hover {
    cursor: pointer;
    color: #ffcc00;
}
.ppl-card-active {
    border: 1px solid #006633;
}





#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#RH_marker {
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFCC00;
    cursor: pointer;
    z-index: 0;
    transform: translateY(2px)
}
#RH_marker:after {
    content: '';
	position: absolute;
	bottom: 3px;
	left: 50%;
	width: 0;
	height: 0;
	border: 12px solid transparent;
	border-top-color: #FFCC00;
	border-bottom: 0;
	margin-left: -10px;
    margin-bottom: -12px;
}

.mapboxgl-popup-content {
    width: 400px;
    border-radius: 10px;
    background: #ffcc00;
    padding-bottom: 10px;
}
.mapboxgl-popup-tip {
    border-bottom-color: #ffcc00 !important;
}
.mapboxgl-popup-content .mapboxgl-popup-close-button{
    z-index: 100;
    font-size: 2em;
    padding: 8px;
}


.splide {
    visibility: visible;
}
.splide__slide {
    padding-bottom: 20px;
}
.splide__pagination {
}
.splide__slide h4 {
    font-size: 1.5em;
    font-weight: bold;
}

.slide-header{
    display: flex;
    padding: 0 20px 8px 0;
}
.slide-header-title {
    padding-left: 16px;
    padding-top: 16px;
}
.slide-header-title a {
    color: black;
}
.slide-header-title p {
    margin-bottom: 0;
}
.cover {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 10px;
}
.slide-body {
    background: white;
    padding: 0;
    border-radius: 8px;
    height: 190px;
    overflow-y: auto;
}

.slide-body img {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slide-body p {
    padding: 16px;
}

.sodaa-video {
    height: 200px;
}

.user-photo {
    width: 100%;
}



.active {
    border-bottom: 4px solid #006633;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    margin-top: 8px;
}

/* Track */
::-webkit-scrollbar-track {
visibility: hidden;;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: rgba(0,0,0,0.15); 
border-radius: 10px;
}

 