:root
{
	--white: #fff;
	--black: #000;

	--ash: #eaeef6;
	--charcoal: #a0a0a0;
	--void: #141b22;

	--fair-pink: #FFEDEC;
	--apricot: #FBC8BE;
	--coffee: #754D42;
	--del-rio: #917072;

	--java: #1FCAC5;

	--titan-white: #f1eeff;
	--cold-purple: #a69fd6;
	--indigo: #6558d3;
	--governor: #4133B7;
}
* {
    outline: 0;
    font-family: "Montserrat";
  }
  span.msg,
  span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
  }
  .container {
    width: 500px;
    margin: 50px auto 0;
    text-align: center
  }
  
  /*Styling Selectbox*/
  .dropdown {
    width: 300px;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid var(--charcoal);
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    height: 35px;
    text-align: center
  }
  .dropdown .select {
      cursor: pointer;
      display: block;
      padding: 10px
  }
  .dropdown .select > i {
      font-size: 13px;
      color: #888;
      cursor: pointer;
      transition: all .3s ease-in-out;
      float: right;
      line-height: 20px
  }
  .dropdown.active .select > i {
      transform: rotate(-90deg)
  }
  .dropdown .dropdown-menu {
      position: absolute;
      background-color: #fff;
      width: 100%;
      left: 0;
      margin-top: 1px;
      box-shadow: 0 1px 2px var(--charcoal);
      border-radius: 0 1px 2px 2px;
      overflow: hidden;
      display: none;
      max-height: 165px;
      overflow-y: scroll;
      z-index: 9
  }
    .dropdown .dropdown-menu::-webkit-scrollbar
    {
        display: none;
    }

    .dropdown .dropdown-menu
    {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
  .dropdown .dropdown-menu li {
      padding: 10px;
      transition: all .2s ease-in-out;
      cursor: pointer
  } 
  .dropdown .dropdown-menu {
      padding: 0;
      list-style: none
  }
  .dropdown .dropdown-menu li:hover {
      background-color: #f2f2f2
  }
  .dropdown .dropdown-menu li:active {
      background-color: #e2e2e2
  }