button{
  cursor: pointer !important;
}
textarea:focus, input:focus{
    outline: none !important;
    border: none !important;
}

#menu_action_nav .btn-burger {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  cursor: pointer;
  padding: 10px;
}

#menu_action_nav .btn-burger span {
  display: block;
  width: 100%;
  /*box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);*/
  border-radius: 3px;
  height: 2px;
  background: #323c47;
  transition: all .3s;
  position: relative;
}

#menu_action_nav .btn-burger span + span {
  margin-top: 7px;
}

#menu_action_nav.open .btn-burger span + span {
  margin-top: 20px;
}

#menu_action_nav.open span:nth-child(1) {
  animation: ease .7s top forwards;
}

#menu_action_nav span:nth-child(1) {
  animation: ease .7s top-2 forwards;
}

#menu_action_nav.open span:nth-child(2) {
  animation: ease .7s scaled forwards;
}

#menu_action_nav span:nth-child(2) {
  animation: ease .7s scaled-2 forwards;
}

#menu_action_nav.open span:nth-child(3) {
  animation: ease .7s bottom forwards;
}

#menu_action_nav span:nth-child(3) {
  animation: ease .7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 22px;
    transform: rotate(0);
  }
  100% {
    top: 22px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 22px;
    transform: rotate(45deg);
  }
  50% {
    top: 22px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 22px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.sep-mt{
  width: 100%;
  height: 2px;
  background-color: #6C7C8D;
}

.sep-mt-1{
  width: 100%;
  height: 1px;
  background-color: #6C7C8D;
}

.modal-content-br-10{
  border-radius: 10px;
}

.modal-content{
  border: 0 !important;
}

.modal-backdrop.fade.show{
  background-color: #6C7C8D !important;
  opacity: 0.6 !important;
}



.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all
{
  height: 5px;
  border: none;
  background: rgb(180,189,199);
}

.ui-slider-range.ui-widget-header.ui-corner-all{
  background-color: #6C7C8D;
}

.ui-slider-handle.ui-state-default.ui-corner-all{
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #6C7C8D;
  width: 25px;
  height: 25px;
  top: -8px;
}

/*texts*/

.text-primary{
  color: rgb(43,145,255) !important;
}


/*buttons*/
.btn-outline-primary{
  border: 2px solid rgb(43,145,255) !important;
  color: rgb(43,145,255) !important;
}
.btn-outline-primary:hover{
  border: 2px solid transparent;
}
.btn-outline-primary:hover:before, .btn-outline-primary:focus:before, .btn-outline-primary:active:before {
    width: 100%;
    background-color: rgb(43,145,255); 
}

/*unputs admin*/
.input-cus-1{
  border: 0;
  outline: 0;
  background-color: #f4f7f9;
  width: 100%;
  padding: 0.3rem 0.7rem;
}

.input-group input ~ .max-type-append {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f9;
    padding: 0 0.75rem;
    color: #46495c;
}



/*select*/
.custom-select-mt{
  background-color: #f4f7f9;
  width: 100%;
  border:none;
  border-radius: 0px;
  color: #6C7C8D;
  padding: 7px 0px 2px 10px;
 }

 .custom-select-mt::after{
  border-top: 0.8em solid;
  border-right: .5rem solid transparent;
  border-left: .5rem solid transparent;
  position: absolute;
  right: 15px;
  top: 35%;
 }

 .custom-select-mt ~ .dropdown-menu .dropdown-item:hover,
 .custom-select-mt ~ .dropdown-menu .dropdown-item.active{
  background-color: #6C7C8D;
  color: #fff;
  cursor: pointer;
 }

 .img-incluye{
  position: absolute;
  display: flex;
  justify-content: end;
  z-index: -1;
  top: -1rem;
  margin-right: -15px;
 }

 .rebote-5{
  position: relative;
  -webkit-animation-name: rebote-5; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
  -webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */
  -webkit-animation-direction: reverse; /* Chrome, Safari, Opera */
  animation-name: rebote-5;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-timing-function: ease-out;
}
/* Standard syntax */
@keyframes rebote-5 {
  0%   {left:0px; top:-5px;}
  25%  {left:0px; top:0px;}
  50%  {left:0px; top:-5px;}
  75%  {left:0px; top:0px;}
  100% {left:0px; top:-5px;}
}