/* SelectedStyleCSS */
.selectLanguageStyle{
     padding-right: 15px;
     display: flex;
     justify-content: flex-end;
}
.selectLanguageStyle>i{
    color:#fff; 
    font-size: 20px;
    padding-right: 7px; 
    align-items: center;
    display: flex;
}


    
  .selectLanguageStyle > .dropdown {
    margin: 0 20px;
    vertical-align: top;
  }
  
  .dropdownSelect {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 28px;
    width: 60px;
    background: #f2f2f2;
    border: 1px solid;
    border-color: white #f7f7f7 whitesmoke;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    
  }
  
  .dropdownSelect:before, .dropdownSelect:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 10px;
    width: 0;
    height: 0;
    border: 4px dashed;
    border-color: #888888 transparent;
    pointer-events: none;
  }
  
  .dropdownSelect:before {
    border-bottom-style: solid;
    border-top: none;
  }
  
  .dropdownSelect:after {
    margin-top: 7px;
    border-top-style: solid;
    border-bottom: none;
  }
  
  .dropdown-selectSelect {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 6px 8px 6px 10px;
    height: 28px;
    line-height: 14px;
    font-size: 11px;
    color: #62717a;
    text-shadow: 0 1px white;
    background: #f2f2f2; /* Fallback for IE 8 */
    background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;   
    -moz-appearance: none;
    appearance: none;
    -o-appearance: none;
    outline: none !important;
    cursor: pointer !important;
  }

  .dropdown-selectSelect::-ms-expand {
    display: none;
}
  
  .dropdown-selectSelect:focus {
    z-index: 3;
    width: 100%;
    color: #394349;
    outline: 2px solid #49aff2;
    outline: 2px solid -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  
  .dropdown-selectSelect > option {
    margin: 3px;
    padding: 6px 8px;
    text-shadow: none;
    background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
  }
  
  /* Fix for IE 8 putting the arrows behind the select element. */
  
  .lt-ie9 .dropdownSelectSelect {
    z-index: 1;
  }
  
  .lt-ie9 .dropdown-selectSelect {
    z-index: -1;
  }
  
  .lt-ie9 .dropdown-selectSelect:focus {
    z-index: 3;
  }
  
  /* Dirty fix for Firefox adding padding where it shouldn't. */
  
  @-moz-document url-prefix() {
    .dropdown-selectSelect {
      padding-left: 6px;
    }
  }
  
  .dropdown-darkSelect {
    background: #444;
    border-color: #111111 #0a0a0a black;
    background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
    border: none;
    
  }
  
  .dropdown-darkSelect:before {
    border-bottom-color: #aaa;
  }
  
  .dropdown-darkSelect:after {
    border-top-color: #aaa;
  }
  
  .dropdown-darkSelect .dropdown-selectSelect {
    color: #aaa;
    text-shadow: 0 1px black;
    background: #444;
    bottom: 4px;  /* Fallback for IE 8 */
  }
  
  .dropdown-darkSelect .dropdown-selectSelect:focus {
    color: #ccc;
  }
  
  .dropdown-darkSelect .dropdown-selectSelect > option {
    background: #444;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
  }



  @media (max-width: 991.98px) {
      .centerselectLanguageStyle{
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }


