			ul{
				width: 90%;
				list-style-type: none;
				margin: 0;
				padding:8;
				overflow: hidden;
				border: 1px solid #1ea1e8;
			}
			a:link{
				text-decoration: none;
			}
			.dropbtn{
				border: none;
				padding: 6px 15px; 
			}
			.active{
				border:2px;
			}
			li{
				float: left;
				border-right: 5px solid #FFFFFF;
				font-family: arial;
				font-size: 9.5pt;
				
			}
			li:last-child{
				border-right: none;
			}
			li a:{
				display: block;
				color: #0000;
				text-align: center;
				padding: 14px 16px;
				text-decoration: none;
			}
			li a:hover{
				background-color: #1ea1e8;
				padding: 2;
			}
			.dropdown-content {
			    display: none;
			    position: center;
			    background-color: white;
			    font-size: 16px;
			    min-width: 415px;
			    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 25px 0 rgba(0, 0, 0, 0.19);
			    z-index: 1;
			    border-radius: 5px;
			}
			.dropdown-content :hover {
			  	border: 2px solid #f34848;
			  	border-radius: 5px;
			}
			.dropdown:hover .dropdown-content {
    			display: block;
			}
			.dropdown:hover .dropbtn {
			    background-color: #1ea1e8;
			}
			// SELECT STYLE

			
		/* The container must be positioned relative: */
.custom-select
{
  position: relative;
  display: block;
  max-width: 400px;
  min-width: 180px;
  margin: 0 auto;
  border: 1px solid #3C1C78;
  background-color: #16013E;
  }
  select{
    border: solid #1ea1e8 1px;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    margin: 0;
    display: block;
    width: 80%;
    padding: 12px 55px 15px 15px;
    font-size: 20px;
    color: #1ea1e8 ;
    }
  
  &:after{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    line-height: 38px;
    content: '\2228';
    text-align: center;
    color: #714BB9;
    font-size: 24px;
    border-left: 1px solid #3C1C78;
}
