/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
  min-width: 392px;
}

#navLex {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

#navLex img {
  max-width: 100px;
  width: 100%;
}

@media (max-width: 530px) {
  #navLex a.btn.btn-warning.btn-access {
    font-size: 1rem;
    padding: 8px 30px;
  }

  #navLex img {
    max-width: 80px;
  }
}
@media (max-width: 400px) {
  #navLex a.btn.btn-warning.btn-access {
    /* font-size: 1rem; */
    padding: 7px 25px;
  }

  #navLex img {
    max-width: 60px;
  }
}

.lex-container {
  width: 100%;
  max-width: 1500px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* event */
.lex-event-webinar {
  background: #000000;
}

.lex-event-webinar a {
  font-weight: 700;
  color: #ffbd04;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .lex-event-webinar a {
    font-size: 18px;
  }
}

/* swiper */

.lex-swiper.swiper {
  width: 100%;
  height: 100%;
  height: 750px;
}

.swiper-slide {
  /* display: flex;
  justify-content: center;
  align-items: end; */
}

.lex-swiper {
  position: relative;
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center; */
}
.lex-swiper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 70px;
  background-image: url(../assets/images/home/fondos/fondo-principal.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}

.lex-swiper .swiper-slide .image {
  width: 100%;
  position: absolute;
  right: 0;
}

.lex-swiper .swiper-slide .image.image-1 {
  max-width: 600px;
}
.lex-swiper .swiper-slide .image.image-2 {
  max-width: 850px;
}
.lex-swiper .swiper-slide .image.image-3 {
  max-width: 550px;
}

.lex-swiper span.title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #000;
  line-height: 3.5rem;
}

.lex-swiper div.description {
  font-size: 1.5rem;
  max-width: 90%;
  line-height: 2rem;
}

.lex-swiper .swiper-wrapper {
  margin-top: 202px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #cecece;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #646464;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 8px;
}

.btn-start {
  background: #ffbd04;
  font-size: 1.3rem;
  padding: 10px 50px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.btn-access {
  background: #ffbd04;
  font-size: 1.1rem;
  padding: 9px 45px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media (max-width: 1354px) {
  .lex-swiper span.title {
    font-size: 2.3rem;
    line-height: 2.8rem;
  }
  .lex-swiper div.description {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 1000px) {
  .lex-swiper span.title {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .lex-swiper div.description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 767px) {
  .lex-swiper span.title {
    text-align: center;
  }
  .lex-swiper div.description {
    text-align: center;
    max-width: 100%;
  }
  .lex-swiper .swiper-slide .image {
    display: none;
  }
  .btn-start {
    font-size: 1.1rem;
    padding: 8px 40px;
  }
  .link {
    text-align: center;
  }
  .link .btn-start {
    margin-top: 2rem !important;
  }
  .lex-swiper.swiper {
    height: 608px;
  }
}

#hamburger button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 60px;
}

#hamburger button:focus,
#hamburger button:active {
  box-shadow: none;
  outline: none;
}

#hamburger button span {
  border-radius: 5px;
  background: #000;
  display: block;
  width: 60%;
  margin: 5px auto;
  height: 2px;
}

#hamburger button .top-line {
  animation-name: top-line-animation-close;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

#hamburger button .middle-line {
  animation-name: middle-line-animation-close;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

#hamburger button .bottom-line {
  animation-name: bottom-line-animation-close;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

#hamburger button.open .middle-line {
  animation-name: middle-line-animation;
}

#hamburger button.open .bottom-line {
  animation-name: bottom-line-animation;
}

#hamburger button.open .top-line {
  animation-name: top-line-animation;
}

@keyframes middle-line-animation {
  0% {
    /*position: absolute;*/
  }
  20%,
  100% {
    margin: 0 auto;
    width: 0;
    opacity: 0;
  }
}

@keyframes bottom-line-animation {
  50%,
  100% {
    margin: 0 auto;
    transform: translateY(-2px) rotate(45deg);
  }
}

@keyframes top-line-animation {
  50%,
  100% {
    margin: 0 auto;
    transform: translateY(2px) rotate(-45deg);
  }
}

@keyframes middle-line-animation-close {
  0% {
    margin: 0 auto;
    width: 0;
    opacity: 0;
  }
  20%,
  100% {
    margin: 0px auto;
    width: 60%;
    opacity: 1;
  }
}

@keyframes bottom-line-animation-close {
  0% {
    margin: 0 auto;
    transform: translateY(-2px) rotate(45deg);
  }
  50%,
  100% {
    margin: 5px auto;
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes top-line-animation-close {
  0% {
    margin: 0 auto;
    transform: translateY(2px) rotate(-45deg);
  }
  50%,
  100% {
    margin: 5px auto;
    transform: translateY(0px) rotate(0deg);
  }
}

/* benefits */
.lex-benefits h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-benefits h1.title span {
  color: #ffbd04;
}

.lex-benefits .item {
  background-color: #eeeeee !important;
  border: 0;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.lex-benefits .item:hover {
  cursor: default;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.lex-benefits .item .image-container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lex-benefits .item .title {
  font-size: 1.7rem;
  line-height: 1.9rem;
  font-weight: 800;
}

.lex-benefits .item .description {
  font-size: 0.75rem;
  line-height: 1.1rem;
  min-height: 125px;
}

@media (max-width: 767px) {
  .lex-benefits h1.title {
    font-size: 1.6rem;
  }
  .lex-benefits .item {
    margin: 0 35px;
  }
  .lex-benefits .item .title {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
  .lex-benefits .item .description {
    font-size: 0.9rem;
    line-height: 1.4rem;
    min-height: 100px;
  }
  .lex-benefits .item:hover {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.lex-video {
  position: relative;
}

.lex-video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-image: url(../assets/images/home/fondos/fondo-secundario.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}

.lex-video h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-video h1.title span,
.lex-video h1.subtitle span {
  color: #ffbd04;
}

.lex-video h1.subtitle {
  font-size: 2rem;
  font-weight: 800;
}

.lex-video .resume {
  font-size: 1.5rem;
  font-weight: 500;
  color: #808080;
}

.video-js .vjs-big-play-button {
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: 0;
  background: #000 !important;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.video-js .vjs-big-play-button:hover {
  background: #ffbd04 !important;
}

.vjs-poster {
  filter: brightness(0.5);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
}

@media (max-width: 767px) {
  .video-js {
    height: 250px;
  }
  .lex-video h1.title {
    font-size: 1.6rem;
  }
  .lex-video h1.subtitle {
    font-size: 1.2rem;
  }
  .lex-video .resume {
    font-size: 1rem;
  }
}

.lex-clients h1.title {
  font-size: 2rem;
  font-weight: 800;
}

.lex-clients .image-slider img {
  margin: 0 20px;
  height: auto;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}

@media (max-width: 767px) {
  .lex-clients h1.title {
    font-size: 1.2rem;
  }
  .lex-clients .image-slider img {
    margin: 0 100px;
    height: auto;
  }
}

.lex-plans h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-plans h1.title span {
  color: #ffbd04;
}

.lex-plans h1.subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #808080;
}

.lex-plans .item {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 20px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  min-height: 313px;
  /* height: 100%; */
}

.lex-plans .item .image {
  top: -80px;
}

.lex-plans .item:hover {
  background: #ffbd04;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.lex-plans .item .title {
  font-size: 1.3rem;
  font-weight: 700;
}

.lex-plans .item .title.other {
  font-size: 1.6rem;
}

.lex-plans .item .period {
  padding: 2px 15px;
  border-radius: 20px;
  border: 1px solid #000;
  font-size: 1rem;
  background-color: #333333;
  color: #fff;
}

.lex-plans .item .amount {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.lex-plans .item .btn-link {
  background-color: #333333;
  color: #fff;
  text-decoration: none;
}
.lex-plans .item .btn-more {
  text-decoration: underline;
  padding: 0;
}
.lex-plans .item .btn-more:focus,
.lex-plans .item .btn-more:active {
  box-shadow: none;
  outline: none;
}

.lex-plans .item ul {
  list-style-type: none;
  padding: 0;
}
.lex-plans .item ul li {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .lex-plans h1.title {
    font-size: 1.6rem;
  }
  .lex-plans h1.subtitle {
    font-size: 1.2rem;
  }
  .lex-plans .item {
    margin: 0 35px;
    min-height: 250px;
  }
  .lex-plans .item.item-02 {
    margin-top: 45px !important;
  }
}

.lex-appointment h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-appointment h1.title span {
  color: #ffbd04;
}

.lex-appointment .item {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 20px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.lex-appointment .item:hover {
  background: #ffbd04;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.lex-appointment .item:hover .btn.btn-link {
  background-color: #333333;
  color: #fff;
}

.lex-appointment .item .card-body {
  padding: 3.5rem;
  padding-bottom: 2.5rem;
}

.lex-appointment .item .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.lex-appointment .item .description {
  font-size: 0.9rem;
}

.lex-appointment .item .btn.btn-link {
  font-size: 1.1rem;
  color: #333333;
  font-weight: 700;
  background-color: #ffbd04;
  padding: 8px 40px;
  text-decoration: none;

  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.lex-appointment .item .btn.btn-link:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.lex-appointment .item.item-01 {
  margin-top: 135px;
}

.lex-appointment .item.item-01 .image {
  top: -135px;
}

@media (max-width: 767px) {
  .lex-appointment h1.title {
    font-size: 1.6rem;
  }
  .lex-appointment .item {
    margin: 0 35px;
  }
}

.lex-news {
  background-color: #eeeeee;
}

.lex-news h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-news h1.title span {
  color: #ffbd04;
}

.lex-news h1.subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #808080;
}

.lex-news .lex-swiper-news .swiper-button-next,
.lex-news .lex-swiper-news .swiper-button-prev {
  height: 0;
  color: #000;
}

.lex-news .lex-swiper-news .swiper-button-next:after,
.lex-news .lex-swiper-news .swiper-button-prev:after {
  font-weight: 600;
}

.lex-news .lex-swiper-news .date {
  font-size: 0.8rem;
  color: #969696;
  font-weight: 700;
}

.lex-news .lex-swiper-news .title {
  font-size: 1.3rem;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  margin: 0;
}

.lex-news .lex-swiper-news .description {
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
}

.lex-news .lex-swiper-news .btn-more {
  background-color: #ffbd04;
  padding: 5px 15px;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .lex-news h1.title {
    font-size: 1.6rem;
  }

  .lex-news h1.subtitle {
    font-size: 1.2rem;
  }
  .lex-news .lex-swiper-news .btn-more {
    margin-bottom: 15px;
  }
  .lex-news .lex-swiper-news .image-news .image {
    height: 150px !important;
  }
  .lex-news .lex-swiper-news .swiper-button-next:after,
  .lex-news .lex-swiper-news .swiper-button-prev:after {
    font-size: 25px;
  }
}

.lex-questions h1.title {
  font-size: 3.2rem;
  font-weight: 800;
}

.lex-questions h1.title span {
  color: #ffbd04;
}

.lex-questions .accordion .item {
  border-bottom: 1.5px solid #333333;
}

.lex-questions .accordion button {
  cursor: pointer;
  border: 0;
  background: transparent;
}
.lex-questions .accordion button:focus,
.lex-questions .accordion button:active {
  box-shadow: none;
  outline: none;
}

.lex-questions .accordion button.collapsed .svg-icon {
  background-image: url("../assets/images/home/iconos/Plus.svg");
}

.lex-questions .accordion button .svg-icon {
  width: 40px;
  height: 40px;
  background-image: url("../assets/images/home/iconos/Minus.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.lex-questions .accordion .title {
  font-size: 1.4rem;
}

.lex-questions .accordion .description {
  color: #808080;
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .lex-questions h1.title {
    font-size: 1.6rem;
  }
  .lex-questions .accordion .title {
    font-size: 1.2rem;
  }
  .lex-questions .accordion .description {
    font-size: 1rem;
  }
}

.lex-contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.lex-contact .banner .title {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 800;
}
.lex-contact .banner .title span {
  color: #ffbd04;
}

.lex-contact .card {
  background: #ffbd04;
  border-radius: 20px;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.lex-contact .card .form .title {
  font-size: 3rem;
  font-weight: 800;
}

.lex-contact .card .form .subtitle {
  font-size: 1.3rem;
  font-weight: 500;
}

.lex-contact .card .form .form-control {
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
  font-size: 1.2rem;
  color: #000;
  background: #ffbd04 !important;
}

.lex-contact .card .form .form-control:focus {
  background-color: transparent !important;
}

.lex-contact .card .form .form-control:-webkit-autofill,
.lex-contact .card .form .form-control:-webkit-autofill:hover,
.lex-contact .card .form .form-control:-webkit-autofill:focus,
.lex-contact .card .form .form-control:-webkit-autofill:active {
  background-color: transparent !important;
}

.lex-contact .card .form .form-control::placeholder {
  color: #595447;
}

.lex-contact .card .form .btn.btn-dark {
  background-color: #000;
  font-size: 1.2rem;
  padding: 0.6rem 5rem;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.lex-contact .card .form .btn.btn-dark:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .lex-contact .banner {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .lex-contact .banner .title {
    text-align: center;
    font-size: 1.7rem;
  }
  .lex-contact .card .form .title {
    font-size: 1.6em;
  }
  .lex-contact .card .form .subtitle {
    font-size: 1rem;
  }
  .lex-contact .card .form .form-control {
    font-size: 1rem;
  }
}

footer.footer {
  background: #ffbd04 !important;
  color: #000 !important;
}

footer.footer .icon-add {
  font-size: 1rem;
}

footer.footer .icons {
  display: flex;
  gap: 1.2rem;
}

footer.footer .links-title {
  font-size: 1rem;
  font-weight: 500;
}

footer.footer .icons i,
footer.footer .icons svg {
  width: 20px;
  height: 22px;
  font-size: 26px;
  color: #000;
}

#toast-container {
  /* top: auto; */
  bottom: 12px !important;
}

#toast-container > div {
  opacity: 1 !important;
}

.support-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1035;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.support-btn {
  animation: breathe 2s ease-in-out infinite;
}

.support-btn svg {
  animation: beat 2s ease-in-out infinite;
  text-decoration: none !important;
}

.support-btn .contact {
  position: absolute;
  top: 14px;
  right: 76px;
  max-width: calc(100vw - 105px);
  height: 32px;
  padding: 0 14px;
  border: none;
  border-radius: 16px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  line-height: 31px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.1s ease-out 0.2s;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  transform: translateZ(0);
  pointer-events: none;
}

.support-btn .contact::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: -6px;
  border: 8px solid transparent;
  border-width: 6px 0 6px 8px;
  border-left-color: #fff;
}

.support-btn:hover .contact {
  opacity: 1;
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 104, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(86, 211, 37, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.menu-lex {
  position: fixed;
  z-index: 1000;
  width: 340px;
  background-color: #ffffff;
  top: 178px;
  border: 1px solid #d5d5d5;
  border-left: 0;
  display: none;
}

/* .menu-lex.close {
  left: -340px;
} */

.menu-lex ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-lex ul li {
  width: 100%;
  border-bottom: 1px solid #d5d5d5;
}
.menu-lex ul li:last-child {
  border: 0;
}

.menu-lex ul li a {
  color: #000;
  display: block;
  padding: 20px 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
}
.menu-lex ul li a:hover {
  background-color: #000;
  color: #ffbd04;
}

@media (max-width: 1000px) {
  .menu-lex {
    top: 164px;
  }
}
@media (max-width: 530px) {
  .menu-lex {
    top: 188px;
  }
}

.modal-lex.modal .modal-content {
  border-radius: 0.5rem;
  border-width: 1px;
  padding: 1.5rem 1.5rem;
}

.modal-lex.modal .modal-content .modal-header,
.modal-lex.modal .modal-content .modal-footer {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}

.modal-lex.modal .modal-content .modal-footer {
  justify-content: flex-end;
}

.modal-lex.modal .modal-content .btn.btn-warning {
  background: #ffbc00;
  color: #000;
  border: 0;
  font-size: 14px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

.modal-lex.modal .modal-content .btn.btn-warning:hover {
  background: #ffc420;
}

.modal-lex.modal .modal-content .btn.btn-secondary {
  background: #333333;
  color: #fff;
  border: 0;
  font-size: 14px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

.modal-lex.modal .modal-content .btn.btn-secondary:hover {
  background: #4d4d4d;
}

.modal-lex.modal .modal-content .btn.btn-danger {
  color: #fff;
  border: 0;
  font-size: 14px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
}

.modal-lex.modal .modal-content .modal-header .modal-title {
  color: #333333;
  font-weight: 700;
}

.modal-lex.modal .modal-content .modal-body .form-control {
  border: 0;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
}

.modal-plan.modal-lex.modal .modal-content .modal-body .form-control {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  font-size: 1rem;
  font-weight: 500 !important;
  /* padding: 20px; */
  background: #fff;
}
.modal-plan.modal-lex.modal .modal-content .btn.btn-secondary {
  background-color: #959595;
}

.modal-plan.modal-lex.modal .modal-content .btn.btn-secondary,
.modal-plan.modal-lex.modal .modal-content .btn.btn-warning {
  padding: 0.7rem 1.8rem;
}

.modal-backdrop {
  width: 100%;
  height: 100%;
}

.modal-plan.modal-lex.modal .modal-content .modal-body select.form-control {
  background-color: #333333 !important;
  color: #fff;
}
.modal-plan.modal-lex.modal
  .modal-content
  .modal-body
  select.form-control
  option {
  background-color: #fff;
  color: #000;
}

.modal-plan.modal-lex.modal .modal-content .modal-body .btn-group {
  width: 100%;
}
.modal-plan.modal-lex.modal .modal-content .modal-body .btn-group .multiselect {
  text-align: left !important;
  background-color: #333333 !important;
  color: #fff;
  border: 0;
  border-radius: 0;
  position: relative;
}

.modal-plan.modal-lex.modal
  .modal-content
  .modal-body
  .btn-group
  .multiselect.custom-select {
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
}

.modal-plan.modal-lex.modal
  .modal-content
  .modal-body
  .btn-group
  .dropdown-menu.show {
  width: 100%;
}
.modal-plan.modal-lex.modal .modal-content .modal-body .btn-query {
  border: 1px solid #333333;
  border-radius: 0;
  padding: 0.375rem 3rem;
  font-size: 1rem;
}

.modal-plan.modal-lex.modal .modal-content .modal-body .btn-query.active {
  background-color: #333333;
  color: #fff;
}

.modal-plan.modal-lex.modal .modal-content .modal-body .btn-query:hover {
  background-color: #333333;
  color: #fff;
}
