/*border*/
/*border*/
/** DROPDOWN LIGHT **/
.dropdown__light {
  position: absolute;
  visibility: hidden;
  margin: -3px -3px 0 0;
  font-weight: 400;
  text-align: left;
  max-width: 250px;
  min-width: 200px;
  top: 100%;
  left: 50%;
  transform: translate(-88%, 0);
  background: #fff;
  z-index: 4;
  border: 1px solid #efefef;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  filter: alpha(opacity=0);
  -o-transition: opacity 100ms linear, top 100ms linear, bottom 100ms linear, visibility 100ms linear;
  transition: opacity 100ms linear, top 100ms linear, bottom 100ms linear, visibility 100ms linear;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }

.dropdown__light.size_small {
  min-width: 150px;
  margin-left: 5px; }

.dropdown__light.show {
  visibility: visible;
  opacity: 1;
  -webkit-filter: none;
  filter: none;
  display: block !important;
  top: 85%;
  pointer-events: auto; }

@media (max-width: 767px) {
  .dropdown__light.show {
    top: 130%; } }

.dropdown__light:before, .dropdown__light:after {
  position: absolute;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  bottom: 100%;
  right: 23px; }

.dropdown__light:before {
  border-width: 6px;
  margin: 0 -6px;
  border-bottom-color: #c5d0db; }

.dropdown__light:after {
  border-width: 5px;
  margin: 0 -5px;
  border-bottom-color: #fff; }

.dropdown__light > .dropdown__light__inner {
  padding: 4px 0; }

.dropdown__light__item {
  padding-left: 35px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  position: relative;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  color: #2d373a;
  outline: none;
  cursor: pointer; }

.dropdown__light__item:hover, .dropdown__light__item:focus, .dropdown__light__item:active, .dropdown__light__item.active {
  background-color: #e4eaf0;
  text-decoration: none;
  color: #2d373a; }

[data-toggle="dropdown-light"] {
  cursor: pointer; }
/** END DROPDOWN LIGHT **/
