.leaflet-div-icon {
    background: none;
    border: none;
}
.car-flex-container {
    background: #5e72e4;
    padding: 10px;
    color: #fff;
    font-weight: 700;
    position: sticky;
    z-index: 1001;
}
.map-icon {
    font-size: 24px;

}

    .custom-icon {
        border: 1px solid #ffffff;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        top: -48px; /* Đặt lớp trên để che phủ tam giác */
    }

    .leaflet-popup {
        /*margin-bottom: -25px;*/
    }

    .card {
        position: relative;
        font-size: 11px;
    }

    .user-picture {
        border-radius: 50%;
        border: 2px solid white;
        padding: 1px;
        background-color: white;
        width: 40px;
        height: 40px;
        object-fit: cover;
    }

    /*.description {
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.05);
        text-align: justify;
        font-size: 13px;
        line-height: 2rem;
        font-weight: 400;
        padding: 10px;
        margin: 10px;
    }*/

    .box {
        display: flex;
        align-items: center;
        margin-right: 5px;
    }

    .box-vinhdanh {
        display: flex;
        align-items: center;
        justify-content: space-around;
        text-align: center;
        position: absolute;
        top: 10px;
        margin: 0px;
        width: 98%;
        font-size: 12px;
    }

    .box-cmt {
        display: flex;
        margin-right: 5px;
    }

    .box-item {
        margin-right: 5px;
    }

    .box-item-menu {
        order: 2;
        margin-left: auto;
    }

    .box-cmtext p {
        margin: 0px !important;
        font-size: 1.3rem;
    }

    .card-body {
        padding-top: 40px !important;
    }

    /* Hide radio buttons */
    .tab-container input[type="radio"] {
        display: none;
    }

    /* Style labels to look like tabs */
    .tab-container label {
        display: inline-block;
        padding: 5px;
        background-color: #f0f0f0;
        cursor: pointer;
        color: #000;
    }

    /* Style label when selected */
    .tab-container input[type="radio"]:checked + label {
        background-color: #fff;
        border-bottom: 1px solid #fff; /* Hide the bottom border */
    }

    /* Hide tab content by default */
    .tab-container .tab-content > div {
        display: none;
    }

    /* Show tab content when radio button is checked */
    #tab1:checked ~ .tab-content #content1,
    #tab2:checked ~ .tab-content #content2,
    #tab3:checked ~ .tab-content #content3 {
        display: block;
    }

    /* Định dạng CSS cho popup */


    #popup-container {
        display: none;
        position: fixed;
        z-index: 998;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .popup-content {
        display: flex;
        justify-content: space-between;
    }

    .treasure-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .treasure-icon {
        font-size: 40px;
    }

    .shining {
        color: gold;
    }
.flex-container {
    display: flex;
    position: fixed;
    top: 0;
    /* left: 0; */
    right: 5px;
    padding-top: 70px;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	z-index: 1000
}

.flex-item {
    text-align: center;
    margin: 0 auto;
}

.flex-item img {
    width: 40px;
    height: 40px;
    border-radius: 100%; /* Đổi border-radius thành 100% */
    background-color: #ffffff; /* Màu nền trắng */
    padding: 5px; /* Khoảng cách từ ảnh đến viền */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Đổ bóng nhẹ */
}

.flex-item p {
    margin-top: 5px; /* Khoảng cách từ ảnh đến văn bản */
	font-weight: bold;
	color: #fff
}

@media (max-width: 768px) {
    .flex-item {
        margin-bottom: 10px; /* khoảng cách giữa các phần tử khi xếp dọc trên màn hình nhỏ hơn */
    }
	.flex-item img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}
    @media (max-width: 768px) {
		#popup-container {
			bottom: 0;
			width: 100vw;
			height: 75vh;
			transform: translateY(100%);
			transition: transform 0.3s;
			border-radius: 10px 10px 0px 0px;
			z-index: 1002;
			overflow-y: auto; /* Thêm thanh cuộn khi nội dung vượt quá chiều cao */
			margin-bottom: 50px;
		}

        #popup-container.show {
            transform: translateY(0);
        }
    }

    @media (min-width: 769px) {
        #popup-container {
            position: fixed;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 500px;
			height: 85vh;
			background-color: white;
			z-index: 1004;
			overflow-y: auto;
			border-radius: 10px 10px 0 0;
			padding: 20px 20px 60px;
        }
    }
    #sidebar {
        overflow-x: hidden;
    }
@media (min-width: 768px) {
    .modal-dialog {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
		margin: 0 auto
    }
}

@media (max-width: 767px) {
    .modal-dialog {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 75vh;
        margin: 0;
        transform: none;
		margin-bottom: 50px !important;
    }
    .modal-content {
        height: 100%;
        display: flex;
        flex-direction: column;
		border: none !important;
		border-radius: 10px 10px 0 0;
    }
    .modal-body {
        flex: 1;
        overflow-y: auto;
    }
    .bottom-left-map {
        bottom: 20px !important;
    }
}
	.hidden {
		display: none
	}
	.text-center {
		text-align: center
	}

	  .slide-in {
    animation: slideIn 0.5s forwards;
  }

  .slide-out {
    animation: slideOut 0.5s forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  @keyframes slideOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }

  @media (max-width: 767px) {
    #sidebar {
      display: block;
    }
    #mainbar {
    }
  }
  
.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000;
    color: white;
    z-index: 9999;
}

.menu-item {
    text-align: center;
    flex: 1;
    position: relative; /* Needed for the popup */
}

.menu-item img {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.menu-item p {
    font-size: 10px;
    margin: 5px 0 0 0;
}
.menu-item a {
	text-decoration: none;
	color: #fff
}

.tab-container a {
    text-decoration: none;
	color: #000
}
.popup-menu {
    display: none;
    position: absolute;
    bottom: 50px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    text-align: left;
	width: 300px;
    right: 0;
    font-weight: 600;
}

.mobile-popup {
    width: 100vw !important;
    left: 0 !important;
    bottom: 50px !important;
    border-radius: 10px 10px 0 0 !important;
    z-index: -1;
}

.popup-menu p {
    margin: 5px 0;
    padding: 5px 0;
    font-size: 16px;
    border-bottom: 0.5px solid #ddd;
    line-height: 40px
}

.popup-menu p:last-child {
    /*border-bottom: none;*/
}

.popup-menu a {
    text-decoration: none;
    color: #000;
}

.popup-menu a:hover {
    color: #ffa700;
}

.popup-menu i{
    color: #5e72e4;
	width: 20px;
	text-align: center;
}
.notification-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .popup-menu {
        position: fixed !important;
        width: 100vw;
        left: 0;
        bottom: 0;
        border-radius: 10px 10px 0 0;
        /*nimation: slide-up 0.5s ease-in-out;*/
    }
}
.notification-icon {
            position: relative;
            display: inline-block;
        }

        .notification-count {
            position: absolute;
            top: -9px;
            right: -10px;
            background-color: red;
            color: white;
            border-radius: 50%;
            padding: 1px 6px;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .notification-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #ccc;
        }

        .notification-item img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
			border: 1px solid #fff;
        }

        .notification-item a {
            flex: 1;
            text-decoration: none;
            color: #ffa700 !important;
        }

        .notification-time, .notification-user {
            display: block;
            color: #fff !important;
            font-size: 12px;
        }
.dropdown-content p {
        margin: 0;
    }

    .dropdown-content {
        display: none;
        padding-left: 30px;
    }

    .dropdown-toggle.active + .dropdown-content {
        display: block;
    }
.pt-1 {
	padding-top: 10px
}
.pt-2 {
	padding-top: 20px;
}
.pt-3 {
	padding-top: 30px;
}
.pt-4 {
	padding-top: 40px;
}
.pt-5 {
	padding-top: 50px;
}
.pt-6 {
	padding-top: 60px;
}
.pt-7 {
	padding-top: 70px;
}
.pt-8 {
	padding-top: 80px;
}
.pt-9 {
	padding-top: 90px;
}
.pt-10 {
	padding-top: 100px;
}
.pb-1 {
	padding-bottom: 10px
}
.pb-2 {
	padding-bottom: 20px;
}
.pb-3 {
	padding-bottom: 30px;
}
.pb-4 {
	padding-bottom: 40px;
}
.pb-5 {
	padding-bottom: 50px;
}
.pb-6 {
	padding-bottom: 60px;
}
.pb-7 {
	padding-bottom: 70px;
}
.pb-8 {
	padding-bottom: 80px;
}
.pb-9 {
	padding-bottom: 90px;
}
.pb-10 {
	padding-bottom: 100px;
}
.no-scroll {
    overflow: hidden;
}

.overlay_active {
    pointer-events: none;
}
#treasure-button, #openPopupButton, #list-bds-button {
	height:30px;
	width: 30px;
	background: #fff;
	border-radius: 2px;
	display: flex;
	flex-direction: center;
	align-items: center;
	justify-content: space-around;
}
.menu_left {
	padding-top: 15px;
	line-height: 25px;
}
.menu_left i{
	width:30px;
	color: #5e72e4;
}
.horizontal-line {
    border-top: 1px solid #ccc;
    margin: 10px 0; /* Khoảng cách trên và dưới */
}
.menu_left a {
	color: #000;
	text-decoration: none;
}
.footer {
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #000;
    font-size: 14px;
	display: flex;
	flex-direction: center;
	align-items: center;
}
.footer a {
	color: #000
}
.bottom-left-map {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    transition: bottom 0.3s ease-in-out;
}
a:hover {
	text-decoration: none;
}
