.spectacledcoder-search-bar {
	position: relative;
    width: 100%;
    height: 61px;
    display: block;
    top: -45px;
    left: -20px;
}
.spectacledcoder-search-bar .spectacledcoder-search-bar-input {
    position: absolute;
    top: 40px;
    margin: auto;
    width: 100%;
    height: 46px;
    border-radius: 23px;
    outline: none;
    border: none;
    padding: 0px 45px 0px 45px;
    font-size: 14px;
    background-color: #27292a;
    color: #ffffff;
    font-weight: 500;
    margin-top: -33px;
    margin-left: -25px;
}
        .spectacledcoder-search-bar .spectacledcoder-search-bar-input::placeholder
        {
            opacity: 70%;
            font-family: "Poppins", sans-serif;
            font-size: 14px; 
            font-weight: 400;
            color: #ffffff;
        }
.spectacledcoder-search-bar .spectacledcoder-dropdown {
	position: absolute;
    top: 52px;
    left: -25px;
    width: calc(100% + 90px);
    max-height: 0px;
    display: flex;
    flex-direction: column;
    background-color: #27292a;
    border-radius: 0px 0px 5px 5px;
    z-index: 100;
    transition: all 1s;	
}
        .spectacledcoder-search-bar .spectacledcoder-dropdown::-webkit-scrollbar
        {
            display: none;
            scroll-behavior: smooth;
        }
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul
        {
            margin: auto;
            list-style-type: none;
            width: 100%;
            height: 100%;
            display: none;
            flex-direction: column;
            margin: 0;
            padding: 0;
            
        }
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul a
        {
            text-decoration: none;
            color: white;
            font-size: 12px;
        }
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul a li
        {
            width: 100%;
            height: 45px;
            margin: auto;
            padding: 0px 0px 0px 0px;
            cursor: pointer;
            display: flex;
           
           
        }
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul a li p
        {
            margin: auto;
            margin-left: 15px;
        }
       
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul a li:hover
        {
            background-color: #363738;
        }
        .spectacledcoder-search-bar .spectacledcoder-dropdown ul a li:hover p
        {
            transform: scale(1.02);
            transition: transform 0.3s;
        }
      
        @keyframes height 
        {
            0%
            {
                height: fit-content;
                max-height: 0px;
            } 
            100%
            {
                height: fit-content;
                max-height: 200px;
            }  
        }
        @keyframes revheight 
        {
            0%
            {
                height: fit-content;
                max-height: 200px;
            } 
            100%
            {
                height: fit-content;
                max-height: 0px;
            }  
        }

        .disclaimer
        {
            font-family: 'Belanosima', sans-serif;
            position: absolute;
            bottom: 0px; 
            left: 0; 
            margin-left: auto; 
            right: 0; 
            margin-right: auto; 
            width: fit-content;
            color: rgb(255, 255, 255);
            text-align: center;
        }
        .disclaimer a
        {
            text-decoration: none;
            color: #ffffff;
            font-family: "Kaushan Script", cursive;
            font-weight: 900;
        }
        .disclaimer a:hover
        {
            text-decoration: overline;
        }
.spectacledcoder-search-bar input{
	background: #222;	
	background: linear-gradient(#333, #222);	
	border: 1px solid #444;
	border-radius: 5px 0 0 5px;
	box-shadow: 0 2px 0 #000;
	color: #888;
	display: block;
	float: left;
	font-family: 'Cabin', helvetica, arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	height: 40px;
	margin: 0;
	padding: 0 10px;
	text-shadow: 0 -1px 0 #000;
	width: 200px;
}

.spectacledcoder-search-bar input:focus {
	animation: glow 800ms ease-out infinite alternate;
	background: #222922;
	background: linear-gradient(#333933, #222922);
	border-color: #393;
	box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
	color: #efe;
	outline: none;
}
@keyframes glow {
    0% {
		border-color: #393;
		box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
    }	
    100% {
		border-color: #6f6;
		box-shadow: 0 0 20px rgba(0,255,0,.6), inset 0 0 10px rgba(0,255,0,.4), 0 2px 0 #000;
    }
}
