:root {
    --var-color-green: #9aae00;
}


/* 
*  **************************
   Header-Account modules
   *************************
*/

.dropdown.dropdown-user-dashboard .dropdown-menu li a {
    color: var(--var-color-green) !important;
    font-weight: 400;
}

.modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    width: 1em;
    height: 1em;
    border: none;
    opacity: 1;
    font-size: 24px;
}

.header__right .items .dropdown.dropdown-user-dashboard .dropdown-toggle {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    color: var(--var-color-green) !important;
    border: 1px solid #DEDEDE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 500;
    gap: 6px;
}

.dropdown.dropdown-user-dashboard .stt-icon-user1:before {
    color: var(--var-color-green);
}

.dropdown.dropdown-user-dashboard.ud2 .dropdown-menu {
    min-width: 300px !important;
}

.header__right .items .dropdown.dropdown-user-dashboard .dropdown-menu {
    min-width: 300px !important;
}

@media(max-width: 576px) {
    .header__right .items .dropdown.dropdown-user-dashboard .dropdown-toggle {
        width: 44px;
        height: 44px;
        background: #FFFFFF;
        border: 1px solid #DEDEDE;
        box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    }

    .header__right .items .dropdown.dropdown-user-dashboard .dropdown-toggle .stt-text {
        display: none;
    }
}


/* 
**************************
Auto opening announcement PopUp
*******************************
*/


.pum-container {
    border: none !important;
}

.popup-class {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.popup-class>div:first-child {
    flex: 1 1 50%;
    text-align: center;
    background-color: #f5f5f5;
}

.popup-class img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.popup-class>div:last-child {
    flex: 1 1 50%;
    padding: 30px;
    box-sizing: border-box;
}

.popup-class span:first-child {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.popup-class span:last-child {
    display: block;
}

/* Optional: style inner form elements if needed */
.popup-class form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-class input[type="text"],
.popup-class input[type="email"],
.popup-class input[type="password"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.popup-class form p {
    margin-bottom: 0px;
}

.popup-class input[type="submit"] {
    background-color: #2c5501;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    padding: 10px 30px;
    width: 100%;
}

.popup-class input[type="submit"]:hover {
    filter: brightness(115%);
}

.popup-class button.extra-button {
    margin-top: 15px;
    background-color: #2c5501;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    padding: 10px 30px;
    width: 100%;
}

.popup-class input[type="checkbox"] {
    accent-color: #2c5501;
    /* This works in modern browsers */
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.popup-class label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #252c30;
    font-weight: 500;
}

















/* 
*****************************
Responsive 
*****************************
*/
@media (max-width: 576px) {
	.pum-content + .pum-close, .pum-theme-lightbox .pum-content + .pum-close {
		top: -8px;
		right: -4px;
	}
}
@media (max-width: 768px) {
    .popup-class {
        flex-direction: column;
    }

    .popup-class > div {
        flex: 1 1 100%;
    }

    .popup-class img {
        max-height: none;
    }
	
	.popup-class > div:last-child {
		width: 100%;
	}
}


