:root {
    --blue-primary: #1369b0;
}


.text-float-right {
    float: right !important;
}

.sec-center {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index: 200;
}



.dropdown-menu-list-label{
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  transition: all 200ms linear;
  /* border-radius: 4px; */
  width: -webkit-fill-available;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  /* display: inline-flex; */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  /* justify-content: space-between; */

  display: flex;
  justify-content: space-between;

  border: none;
  background-color: var(--blue-primary);
  cursor: pointer;
  color: #fff;
  box-shadow: 0 12px 35px 0 rgba(255,235,167,.15);
  padding-left: 1rem;
  padding-right: 1rem;
  
}

/* .label */

/* .dropdown-menu-list.rotate90 + label .uil { */
.rotate-dropdown-menu{
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
/* .dropdown-menu-list.rotate149 + label .uil { */
.rotate-dropdown-menu.rotate149{
  transform: rotate(149deg);
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
  -webkit-transform: rotate(149deg);
  -moz-transform: rotate(149deg);
  -ms-transform: rotate(149deg);
  -o-transform: rotate(149deg);
}
.section-dropdown-menu-list {
  position: absolute;
  /* padding: 5px; */
  background-color: #fff;
  /* top: 70px; */
  left: 0;
  width: 100%;
  /* border-radius: 4px; */
  display: block;
  /* box-shadow: 0 14px 35px 0 rgba(9,9,12,0.4); */
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}

.dropdown-menu-list ~ .section-dropdown-menu-list .show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-dropdown-menu-list.show  {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-dropdown-menu-list:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}


.dropdown-menu-list-detail {
  position: relative;
  color: #333333;
  transition: all 200ms linear;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  text-align: left;
  text-decoration: none !important;
  border-bottom: 1px solid #ddd;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
    -ms-flex-pack: distribute;

}

.dropdown-menu-list-detail:hover,.dropdown-menu-list-detail.active {
  color: #fff !important;
  background-color: var(--blue-primary);
}

.dropdown-menu-list-detail .uil {
  font-size: 22px;
}


