#map {
	height:100vh;
}
.r24k-ci-custom-marker {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.r24k-ci-custom-marker:hover {
    transform: scale(1.2);
}
#r24k-ci-marker-form {
	height:calc(100vh - 100px);
	overflow-y: auto;
	padding:10px;
}
#r24k-ci-modal-title-holder {
	background: #f4f8fa;
	padding: 10px;
	position:sticky;
		top:-20px;
}
#r24k-ci-modal-description {
	height:126px;
}
#r24k-ci-modal-title {
	display: inline-block;
	margin-right: 15px;
	max-width:calc(100% - 360px);
}
#r24k-ci-create-new-marker-modal .uk-modal-title {
	background: #305e94;
	color: #fff;
	margin: -20px -20px 10px;
	padding: 5px;
	text-align: center;
}
#r24k-ci-create-new-marker-modal .uk-close {
	color:#fff;
	top:16px;
}
.r24k-ci-custom-marker i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#r24k-ci-create-new-marker-modal .uk-modal-dialog {
	height:100vh;
	overflow: hidden;
	padding:20px 10px;

}
.r24k-ci-marker {
	align-items: center;
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	display: flex;
    height: 50px;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -100%);
	width: 40px;
}

.r24k-ci-marker-icon {
    width: 24px; /* Adjust icon size */
    height: 24px;
    filter: brightness(0) invert(1); /* Ensure icon stays white */
}
#map .mapboxgl-popup {
	max-width:320px !important;
}
#map .mapboxgl-popup-content {
	padding:10px;
}
#r24k-ci-modal-city,
#r24k-ci-modal-country {
	margin-left: 10px;
	max-width:calc(100% - 90px);
}
#r24k-ci-toggle-visibility {
	margin-left: 10px;
}
.r24k-ci-modal-color-btn {
	border: none!important;
    border-radius: 18px;
	height: 32px;
	margin: 10px !important;
	width: 32px !important;
}
.r24k-ci-modal-icon-btn {
	background-color: #333; /* Default dark grey */
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	height: 40px;
	margin: 10px 5px 0 10px !important;
	width: 40px !important;
}
#r24k-ci-modal-preview-icon {
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	background-size: 80%;
	display: inline-block;
	height: 40px;
	margin-right:15px;
	width: 40px;
}
.r24k-ci-html-marker {
	align-items: center;
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	border: 3px solid white;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	cursor:pointer;
	display: flex;
	height: 32px;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -100%);
	width: 32px;
}
.mapboxgl-ctrl-geocoder.mapboxgl-ctrl {
	border-radius:5px;
	box-shadow:0 0 0 2px rgba(0,0,0,.1);

}
.mapboxgl-popup-content .mapboxgl-popup-close-button {
	color:#fff;
}
.r24k-ci-delete-marker {
	float:right;
}
#map .mapboxgl-ctrl-geocoder--input {
    padding-left: 36px;
	width: 360px;
}
.r24k-ci-popup .uk-button-small {
    padding: 0 18px;
    line-height: 22px;
    font-size: 14px;
    border-radius: 5px;
    border: 0;
    box-shadow: unset;
}
.r24k-ci-popup h3 {
    background: #a77;
	border-radius: 5px 5px 0 0 !important;
    color: #fff;
	font-size: 14px;
	line-height: 22px;
	margin: -10px -10px 10px;
	min-height:22px;
    padding: 5px;
}
.r24k-ci-popup {
	border-radius: 5px;
	min-width: 200px;
}

/* Cluster styling */
.mapboxgl-cluster {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 127, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

@keyframes r24k-ci-click-effect {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Apply Click Effect on Color & Icon Buttons */
.r24k-ci-modal-icon-btn:active,
.r24k-ci-modal-color-btn:active {
    animation: r24k-ci-click-effect 0.2s ease-in-out;
}
.uk-notification {
	display: none;
}

#r24k-ci-alert-box{
	background:#fff;
	border:1px solid transparent;
	border-radius:5px;
	box-shadow:0 0 0 2px rgba(0,0,0,.1);
	display:none;
	font-size:15px;
    margin:auto;
    min-height:44px;
	min-width:54px;
	padding:5px;
    position:fixed;
		right:48px;
		top:60px;
	text-align:center;
    z-index:1020;
}
#r24k-ci-alert-box.success{
	background-color:#fff;
    color:#3c763d;
    left:unset;
    min-width:60px;
}
#r24k-ci-alert-box.success p {
	background:#efe;
	border:1px solid #3c763d!important;
	height:32px;
}
#r24k-ci-alert-box.error{
    color:#c70d0a;
}

#r24k-ci-alert-box.error p{
	background:#fee;
	border:1px solid #c70d0a!important;
}
#r24k-ci-alert-box.warning{
    color:#705A30;
    background-color:#F8F4E3;
	border:1px solid #D6C7A1;
}
#r24k-ci-alert-box p{
	border-radius:3px;
	line-height:36px;
	margin-bottom:0;
	padding:5px 10px;
}
#r24k-ci-alert-box p .fa-thumbs-up{
	font-size:20px;
	margin-right:5px;
	position:relative;
	top:0;
}
