#suggestions {
	border: 1px solid #ccc;
	max-height: 150px;
	overflow-y: auto;
	position: absolute;
	/* Position it below the input */
	z-index: 1000;
	background: white;
	/* Make sure it stands out */
	color: #000;
}

.suggestion-item {
	padding: 8px;
	cursor: pointer;
	text-align: left;
}

.suggestion-item:hover {
	background-color: #f0f0f0;
	/* Highlight on hover */
}

/* Create custom checkbox & Radio Button inside */
.custom-checkbox {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 18px;
	user-select: none;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.custom-checkbox label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 20px;
	width: 20px;
	border: 2px solid var(--purple);
	border-radius: 4px;
	background-color: #fff;
}

.custom-checkbox input:checked+label::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid var(--purple);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: opacity 0.25s ease;
}

.custom-checkbox input.invalid+label::before,
.fields.has-error .nice-select {
	border-color: red;
}

.custom-checkbox label {
	font-size: 12px;
}

.custom-checkbox input:checked+label::after {
	display: block;
}

/* checkbox*/

/* Radio button starts */
.custom-radio {
	display: inline-block;
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	font-size: 16px;
	user-select: none;
	position: relative;
	margin-left: 1rem !important;
}

.custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	left: 0;
	z-index: 2;
}



.custom-radio label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	height: 16px;
	width: 16px;
	border: solid 2px #e8e8e8;
	border-radius: 50%;
	background-color: #fff;
}

.custom-radio input:checked+label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	height: 16px;
	width: 16px;
	border: solid 2px var(--purple);
	border-radius: 50%;
	z-index: 2;
}

.custom-radio input:checked+label::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: var(--purple);
	z-index: 2;
}

.custom-radio input.invalid+label::before,
.fields.has-error .nice-select {
	border-color: red;
}

.custom-checkbox label {
	font-size: 12px;
}

.custom-radio input:checked+label::after {
	display: block;
}

.custom-checkbox label.invalid::before {
	border-color: red;
}
/* Radio button ends*/
/*custom checkbox*/
.custom-checkbox {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 18px;
	user-select: none;
}

/* Nice select  */
.search-box {
	padding: 0;
	border-bottom: 1px solid #ddd;
}

.search-box input {
	width: 100%;
	padding: 0 20px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	height: 38px;
	border-radius: 5px 5px 0 0;
	border: none;
}

.search-box input:focus {
	outline: 0;
}
.about-layouts h1 {
	color: var(--white);
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex; /* Flex to center spinner */
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.sm-list {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

.sm-item {
    margin-bottom: 10px;
}

.sm-link {
    display: flex;
    align-items: center;
    background: var(--sm-background);
    border-radius: 30px 0 0 30px;
    padding: 6px;
    width: 48px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: -4px 4px 12px rgba(0,0,0,0.25);
    transition: width 0.35s ease;
}

.sm-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sm-icon img { 
    width: 48px; height: 48px; 
}
.padding-left8{
	padding-left: 0.8rem !important;
	height: 54px;
}
.whatsapp-icon{
	font-weight: 500; font-size: 22px; padding-left:0.5rem;
}

.sm-link:hover {
    width: var(--sm-extra-text-width);
}

.sm-link:hover .sm-label {
    opacity: 1;
}
.side-menu:not(.sm-connected).has-shadow .sm-list .sm-item .sm-link {
    box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}
/* Mobile safe */
@media (max-width: 768px) {
    .sm-link {
        width: 44px;
    }
    .sm-label {
        display: none;
    }
}
