/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 14 Oct, 2019, 12:27:09 PM
    Author     : Uday
*/
.entitydropbtn {
  
   color: #FFFFFF;
   text-align: center;
  font-size: 16px;
  border: none;
  width: 80%; 
  margin-left: 10%;
  height: 31px; 
 background: linear-gradient(to right, #007FC0, #007FC0) !important;
  -webkit-border-radius: 10; 
  -moz-border-radius: 10; 
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 3px #666666; -moz-box-shadow: 0px 1px 3px #666666; 
  box-shadow: 0px 1px 3px #77A40B; color: white; font-weight: bold;
  transition: all 0.4s;
  opacity:0.9;
}

 .entitydropbtn span:after {
   content: '\00bb';
   position: absolute;
   opacity: 0;
  
   transition: 0.5s;
 }
 
  .entitydropbtn:hover span:after {
   opacity: 1;
   right: 0;
 }
 .entitydropbtn:hover span {
   padding-right: 25px;
 }

 .entitydropbtn span {
   cursor: pointer;
   display: inline-block;
   position: relative;
   transition: 0.4s;
 }
 
.entitydropdown {
  position: relative;
 // display: inline-block;
  border: none;
}

.entitydropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  
  z-index: 1;
  border: 1px solid black;
  
}

.entitydropdown-content a {
  color: #007FC0;
  padding: 5px 8px;
  text-decoration: none;
  display: block;
 text-align: left;
  animation: linear
  
}

.entitydropdown-content a:hover {background-color: #007FC0 ; }

.entitydropdown:hover .entitydropdown-content {  border-radius: 15px; background:  linear-gradient(to right, white, #d2d3d4);
    display: block;margin-left: 75%;margin-top: -100%; }

.entitydropdown:hover .entitydropbtn {background-color: #3e8e41;}
.entitiesDiv {
    margin-top: 5px;
    width: 100%;
}

.selectDropDown:hover {
color: white !important;
font-family: cursive;
border-radius: 100px;
border-color: #494949 !important;
transition: all 0.3s ease 0s;
}

.entitydropdown-divider {
  height: 0;
  
  overflow: hidden;
  border-top: 1px solid #007FC0;
}