/* Style the dropdown button */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    width: max-content;
	/* height: 100px; */
	color: white;
	/*background-color: /*#151728*/ /*black;*/
	border-radius: 12px;
	position: absolute; 
	z-index: 10001;
	right: 0%;
	top: auto;
	bottom: unset;
	transform: translate(0px, 0px);
	border: 1px solid #dadada;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 15px, rgba(255, 255, 255, 0.15) 0px 0px 3px 1px;
    
    /*height: calc(100% + 5%);
    /*min-height: calc(250px);*/
    /*max-height: max-content;*/
    overflow: auto;
}

/* Style the dropdown links */
.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
}

.dropdown-content li {
    /* text-align: center; */
    padding: 12px 16px;
    color: rgb(231, 233, 234);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    border-radius: 10px;
}

.dropdown-content .follow-btn-dropdown {
    display: inline-block;
    height: 42px;
    text-align: center;
    vertical-align: middle;
    padding: 0.375rem 1.2rem;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 28px 28px 28px 28px;
    -moz-border-radius: 28px 28px 28px 28px;
    -webkit-border-radius: 28px 28px 28px 28px;
    border: 1px solid #1DA1F2;
    cursor: pointer;
    margin-right: 30px;
    margin-top: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.dropdown-content .option-text {
    /* text-align: right; */
    /* margin-left: 30px; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    /*width: 80%;*/
    text-align: left;
    font-size: 15px;
    font-weight: 700;
}

.dropdown-content .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* margin-left: 30px; */
    /*width: 20%;*/
    /*float: left; */
    /* transform: translate(8px, 2px);
    font-weight: bold; */
    flex-basis: 25px;
    margin-right: 12px;
    width: 25px;
}

/* Change color on hover */
.dropdown-content li:hover {
    background-color: #0d0d0d;
    transition: ease 0.5s;
}

/* Show the dropdown menu when the icon is clicked */
.dropdown-content.show {
    display: inline-block;
}
