/*
@import url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');
*/
select{
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);	
  border: 2px solid #F8F8F8;
  width: 212px;  /* 135  */
  height: 23px;
  border-radius: 4px; 
  font-family: Calibri;
  font-size: 16px;
  background: #F8F8F8;
  color: #3344FF;
  margin-left: 121px;   
}

select:hover{
    background: #F8F8F8;
}

select:focus{
  outline:none;
}

.button {  	
  background-color: #FFFFFF; 
  font-family: Calibri; 
  width: 70px;
  font-size: 15px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid grey;
  color: black;
  text-align: center; 
  margin-left: 931px;                /*931 1027px */ 
}

.top {
  text-decoration: none;
  padding: 10px;
  font-family: Calibri; 
  color: #000;
  background: #ffffff;
  border-radius: 10px; 
  border: 1px solid grey;
}

button:hoverr {
  background-color: silver;
  border: 1px solid yellow; 
  color: white; 
}

a {
  color: black;
  text-decoration: none;
}/*
a:visited {
  color: #636;
}
a:hover, a:active, a:focus {
  color:#2c87f0;
}*/

.icons{
    display: flex;
    padding: 10px 0;  
    margin-left: 10px;  
    color: #C850C0;
    margin-left: 990px;      /* 880  */
}

.icons li{
    display: block;
    padding: 0px;    /* 5  */
    margin: -40px;      /* 5  */
}

.icons li i{
    font-size: 18px;
    opacity: 0.8;
}

.icons li i:hover{
    color: #C850C0;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
/*    border-bottom: 1px dotted black; */
}
.tooltip .tooltiptext {
   	visibility: hidden;
   	font-size: 11px;
 	font-family: 'Montserrat', sans-serif; 
    width: 112px;
    background-color: white;
  	color: #C850C0;
    text-align: left; 
    border-radius: 6px;
    padding: 0px 0;
    position: absolute;
    z-index: 1;
    top: -27px;
	left: -290%; 
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}
 

footer {
  background-color: white;
  padding: 7px;
  text-align: left;
  color: black;
  height: 1px; 
  font-size: 8px;  
  font-family: 'Montserrat', sans-serif; 
}

.fa {
  padding: 0px;
  font-size: 32px;
/*  width: 70px; */
  text-align: center;
  text-decoration: none;
  margin: 0px 0px;
/*  border-radius: 10%; */
  border: none;
}

.fa:hover {
 opacity: 0.5;
}
  
.fa-home{
/* 	 background: #bb0000;
 	 background: silver;
 	 color: white;  */
 	 background: black;
 	 color: red;
	}
	
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #282612;
  margin-left: 0px;
  margin-right: 0px;
  border-collapse: collapse;
  line-height: 10px;
  text-align: left;
 /* display: inline-block; */
}

.flex>div {
  flex: 1 0 10%;
}
 
.flex>div:first-child {
  flex: 0 1 8%;
} 	 
.arrow {
  border: solid #3344FF;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

/* Style The Dropdown Button */
.dropbtn {
  background-color: #282612;
  color: white;
/*padding: 16px;  
  font-size: 27px;    */                  /*  For 3 lines menu adjustment from top & bottom   */
  border: none;
  cursor: pointer; 
  height: 10px;
  padding-top: 2px;						/*  For 3 lines menu adjustment from top & bottom   */
/*pointer-events: none; */              /*  For avoiding hover effect  */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  padding-top: 5px;	
  padding-left: 300px;	
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none; 
  position: absolute;
  background-color: #f9f9f9;
  min-width: 285px;                                         / * increased by 20 */
  box-shadow: 0px 8px px 16px rgba(0,0,0,0.2);
  z-index: 1;  
  margin-top: 2px;	                                       /* adustment between 3 lines and it's contents  */
  border-radius: 0px;  /* For Round Edges */   
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 10px 14px;                 /*  For option li height  */ 
  text-decoration: none; 
  display: block;
  float: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1;}


/* Enable to display all options or drop down when page loads 
    .dropdown-content {      
      display: block;
}
*/
/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content { 
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {  
  background-color: #282612;
}
