/* Accessibility CSS*/
.tam-icon {
    cursor: pointer;
    width: 25px; /* Set the width and height to match your image */
    height: 25px;
    background-image: url('/wp-content/uploads/2024/09/person-arms-spread-1-1.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0; 
    position: relative; /* Ensure the menu is positioned relative to the icon */
}

.tam-mobile {
	cursor: pointer;
    width: 25px; /* Set the width and height to match your image */
    height: 25px;
    background-image: url('/wp-content/uploads/2024/09/person-arms-spread-1-1.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0; 
    position: relative;
}

.tam-menu {
    display: none;
    background-color: #1B2431;
    position: absolute;
    width: 150px;
    top: 25px; /* Position below the icon */
    right: 0; /* Align with the icon */
}

.tam-menu.active {
	display: block !important;
}

html[lang="ar"] #tam-menu {
	left: 0;
	right: auto;
}
		
#tam-menu ul {
    list-style-type: none;
    padding: 0;
}

#tam-menu ul li {
    margin: 10px 0;
}

#tam-menu ul li a {
    text-decoration: none;
    color: #9AA3B7;
}

/* end of Accessibility CSS */