@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
/* --------------------------------- General -------------------------------- */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  background: #F4F5F7;
  font-family: "Poppins", sans-serif;
  color: #222F3E;
}

p {
  margin: 0;
}

a,
input {
  outline: none;
  font-size: 14px !important;
}

a {
  text-decoration: none;
}

.breadcrumb {
  font-size: 16px;
  color: #4A545E;
  margin-bottom: 34px;
}
.breadcrumb__back {
  margin-right: 15px;
}
.breadcrumb a {
  color: #4A545E;
}
.breadcrumb__divider {
  margin: 0 15px;
}

.main-dropdown {
  width: 100%;
  position: relative;
}
.main-dropdown__title {
  height: 42px;
  border: 1px solid var(--unnamed-color-c8d6e5);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #C8D6E5;
  border-radius: 10px;
  opacity: 1;
  position: relative;
}
.main-dropdown__title.active {
  border: 1px solid var(--unnamed-color-3345d7);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #3345D7;
}
.main-dropdown__title span {
  font-size: 14px;
  line-height: 42px;
  padding: 0 20px;
  color: #8395A7;
}
.main-dropdown .item-val {
  display: none;
}
.main-dropdown__arrow {
  position: absolute;
  right: 0;
  top: 0;
  background: url("../img/select-arrow.svg") center center no-repeat;
  width: 40px;
  height: 40px;
  transition: all 0.2s ease-in-out;
}
.main-dropdown__arrow.active {
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
.main-dropdown__list {
  position: absolute;
  top: 43px;
  left: 0;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 10px #00000029;
  border-radius: 10px;
  opacity: 1;
  width: auto !important;
  min-width: 100%;
  padding: 10px 0;
  display: none;
  z-index: 9999;
}
.main-dropdown__item {
  padding: 6px 20px 10px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.main-dropdown__item:hover {
  background-color: #F5F5F5;
  transition: all 0.4s ease-in-out;
}
.main-dropdown__item p {
  font-size: 10px;
}
.main-dropdown__item h3 {
  font-size: 14px;
  font-weight: normal;
}
.main-dropdown__show-list {
  display: block;
}

.dropdown--img {
  margin-bottom: 30px;
}
.dropdown--img .main-dropdown__title {
  height: 50px !important;
  padding-left: 10px;
  display: flex;
  padding-right: 20px;
}
.dropdown--img .main-dropdown__title span {
  line-height: 50px;
  padding-left: 5px;
}
.dropdown--img .main-dropdown__title .flag-selected {
  width: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown--img .main-dropdown__title .flag-selected img {
  width: 100%;
}
.dropdown--img .main-dropdown__arrow {
  height: 50px;
}
.dropdown--img .main-dropdown__list {
  top: 52px;
  width: 100%;
  max-height: 230px;
  overflow: scroll;
  overflow-x: none;
}
.dropdown--img .main-dropdown__list .main-dropdown__item {
  display: flex;
}
.dropdown--img .main-dropdown__list .facturacion__flag {
  margin-right: 10px;
}

.perfil {
  font-size: 12px !important;
  font-weight: 600;
}

.campo_requerido {
  color: #EE5253;
  position: absolute;
  bottom: -30px;
  left: 20px;
  visibility: visible;
  opacity: 1;
  font-size: 10px;
  display: none;
}

.main-title {
  font-weight: 700;
  font-size: 48px !important;
  color: #222F3E;
  margin-bottom: 80px;
}

.section-title {
  font-weight: 600;
  font-size: 28px !important;
  color: #222F3E;
  margin-bottom: 20px;
}

/* ------------------------------- Formulario ------------------------------- */
.general-form .general-form__input {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}
.general-form input[type=text],
.general-form [type=email],
.general-form [type=password],
.general-form [type=tel] {
  border: 1px solid #C8D6E5 !important;
  border-radius: 10px;
}
.general-form input[type=text].focus,
.general-form [type=email].focus,
.general-form [type=password].focus,
.general-form [type=tel].focus {
  border: 1px solid #3345D7;
}
.general-form input[type=text].error,
.general-form [type=email].error,
.general-form [type=password].error,
.general-form [type=tel].error {
  border: 1px solid #EE5253 !important;
}
.general-form label {
  padding: 2px 5px;
  font-size: 14px;
  color: #8395A7;
  position: absolute;
  top: 12px;
  left: 18px;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.general-form label.active {
  font-size: 12px;
  background: #fff;
  color: #3345D7;
  top: -12px;
  transition: all 0.2s ease-in-out;
}

.input-eye {
  position: absolute;
  right: 20px;
  top: 11px;
  width: 30px;
  height: 30px;
}
.input-eye::after {
  content: "";
  color: #8395A7;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}
.input-eye--active::after {
  content: "";
}

.general-popup {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 20px;
  height: 20px;
  background: url("../img/info.svg") no-repeat;
  background-size: 100%;
  z-index: 9999;
}
.general-popup:hover .general-popup__content {
  display: block;
}
.general-popup .general-popup__content {
  display: none;
  position: fixed;
  margin-top: -70px;
  width: 260px;
  padding: 10px;
  margin-left: -120px;
  box-shadow: 0 10px 20px #0000001A;
  background-color: #fff;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
}
.general-popup .general-popup__content:before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  box-shadow: 0 0 20px #0000001A;
  transform: rotate(135deg);
  -webkit-clip-path: polygon(-20px -20px, calc(100% + 20px) -20px, calc(100% + 20px) calc(100% + 20px));
          clip-path: polygon(-20px -20px, calc(100% + 20px) -20px, calc(100% + 20px) calc(100% + 20px));
}

.general-form__alert {
  font-size: 10px;
  color: #EE5253;
  margin: 10px 0 0 20px;
  display: none;
}

.btn-general {
  background-color: #3345D7;
  color: #fff;
  line-height: 50px;
  padding: 0 50px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  display: block;
  border: none;
}

.btn--red {
  background-color: #EE5253 !important;
}

.menu {
  position: absolute;
  background-color: #222F3E;
  width: 100%;
  height: 80px;
  max-height: 80px;
  padding: 29px 35px;
  display: flex;
  align-items: center;
  z-index: 3;
}
.menu p {
  margin-bottom: 0;
}
.menu__logo {
  margin-right: 58px;
}
.menu__logo .a {
  fill: #fff;
  stroke: none;
}
.menu__logo .b {
  fill: #ffc352;
}
.menu__title {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
.menu__lista {
  margin-left: auto;
  display: flex;
  align-items: center;
  list-style: none;
  color: #fff;
  margin-bottom: 0;
}
.menu__item {
  margin-right: 30px;
  cursor: pointer;
  position: relative;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__item span {
  font-size: 23px;
  color: #fff;
}
.menu__item--user {
  display: flex;
  align-items: center;
  padding-right: 35px;
}
.menu__item--user::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 7px;
  width: 7px;
  right: 10px;
  margin: auto 0;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
}
.menu__item--userActive::after {
  transform: rotate(-135deg);
}
.menu__foto {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.menu__nombre {
  font-weight: 600;
  font-size: 14px;
}

.btn-corner {
  margin-left: 20px;
  outline: none;
  border: none;
  border-radius: 10px;
  background-color: #3345D7;
  padding: 10px 21px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.btn-outline-small {
  border: 1px solid #3345D7;
  border-radius: 6px;
  font-weight: 600;
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  padding: 0 20px;
  color: #3345D7;
}
.btn-outline-small:hover {
  color: #fff !important;
  background: #3345D7;
}
.btn-outline-small__running {
  border: 1px solid transparent;
  padding: 0;
}
.btn-outline-small__running:hover {
  color: #3345D7 !important;
  background: none;
}
.btn-outline-small__apagar {
  color: #EE5253 !important;
  border: 1px solid #EE5253;
}
.btn-outline-small__apagar:hover {
  background: #EE5253 !important;
}
.btn-outline-small__shutdown {
  color: #F9925A !important;
  border: 1px solid #F9925A;
}
.btn-outline-small__shutdown:hover {
  background: #F9925A !important;
}
.btn-outline-small__reset {
  color: #05BFCB !important;
  border: 1px solid #05BFCB;
}
.btn-outline-small__reset:hover {
  background: #05BFCB !important;
}

.input-error {
  color: #EE5253;
  font-size: 12px;
  margin-left: 22px;
  margin-top: 10px;
  display: none;
}
.input-error.show-error {
  display: block;
}

.activar-proteccion {
  color: #3345D7 !important;
}

.form__input {
  border: 1px solid #C8D6E5;
  border-radius: 10px !important;
}
.form__input:focus, .form__input:active, .form__input:valid {
  border: 1px solid #3345D7;
}

.panel__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 125px;
  height: 20px;
  background: url("../multimedia/logo.svg") no-repeat !important;
  background-size: cover;
}

.modal-content {
  border-radius: 20px !important;
}

input[type=text], [type=mail], [type=number] {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5 !important;
  border-radius: 5px;
  transition: 0.3s linear;
}

.hide {
  display: none;
}

.olvidaste {
  padding-bottom: 30px !important;
  display: block;
}

/* ---------------------------------- Login --------------------------------- */
.panelogin {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1024px) {
  .panelogin {
    grid-template-columns: 54% auto;
  }
}

.slider {
  width: 100%;
  height: 600px;
  position: relative;
  color: white;
  margin-bottom: 30px;
}
@media screen and (min-width: 1280px) {
  .slider {
    height: 100%;
  }
}
.slider__logo {
  position: absolute;
  width: 200px;
  height: 40px;
  top: 40px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.slider__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.slider__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 2.5s;
  transition-delay: 2.5s;
}
.slider__img--back1 {
  background-image: url("../multimedia/img/slider1.png");
}
.slider__img--back2 {
  background-image: url("../multimedia/img/slider2.png");
}
.slider__img--back3 {
  background-image: url("../multimedia/img/slider3.png");
}
.slider__img--back4 {
  background-image: url("../multimedia/img/slider4.png");
}

.slider__hide{
  transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  opacity: 0;
}
.slider__show{
  transition: oallpacity 1s ease-in;
  -moz-transition: all 1s ease-in;
  -webkit-transition: all 1s ease-in;
  opacity:1;
}
.slider__text {
  position: absolute;
  width: 80%;
  bottom: 104px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 3;
}
.slider__title {
  width: 90%;
  margin: 0 auto 20px auto;
  font-weight: 600;
  font-size: 32px;
}
.slider__parrafo {
  font-weight: 400;
  font-size: 16px;
}
.slider__pagination {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  min-width: 86px;
  width: 86px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}
.slider__selecter {
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.login__info {
  min-width: 70%;
  max-width: 70%;
  color: #222F3E;
  overflow: hidden;
}
.login__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
.login__subtitle {
  text-align: start;
  font-weight: 400;
  font-size: 16px;
  color: #8395A7;
}
.login__lastmsg {
  text-align: center;
}
.login__register {
  color: #3345D7;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}

.card-social {
  margin: 40px 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-social__item {
  width: 30%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card-social__item--face {
  background-color: #3A559F;
}
.card-social__item--google {
  border: 1px solid #8395A7;
}
.card-social__item--linkedin {
  background-color: #0084B1;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.form__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form__input:focus, .form__input:valid {
  border: 2px solid #7062D4;
}
.form__input:focus + span, .form__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form__input:active {
  border: 1px solid #7062D4;
}
.form__cont-input--error {
  margin-bottom: 45px;
}
.form__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form__cont-input--error .form__input:focus, .form__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form__cont-input--error .form__input:focus .form__text-help, .form__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.form__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.form__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
}
.form__text-help.active {
  padding: 2px 5px;
  top: -22px;
  left: 12px;
  font-size: 13px;
  background-color: unset;
}
.form__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  font-size: 12px;
}
.form__input-eye::after {
  content: "";
  color: #8395A7;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}
.form__input-eye--active::after {
  content: "";
}
.form__forget {
  margin: 0 0 20px auto;
  cursor: pointer;
  color: #3345D7;
  font-weight: 400;
  text-decoration: none;
}
.form__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  margin: 0 auto 40px auto;
  padding: 18px 90px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.form-login {
  display: grid !important;
  grid-template-columns: 1fr !important;
}
.form-login .form__cont-input {
  width: 100%;
}

.input-eye::after {
  content: "";
  color: #8395A7;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}

.input-eye--active::after {
  content: "";
}

/* --------------------------------- Welcome -------------------------------- */
.content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content__logo {
  width: 125px;
  height: 20px;
  background: url("../multimedia/logo.svg") no-repeat;
  background-size: 100%;
}
.content__imagen {
  width: 184px;
  height: 184px;
  margin: 40px 0;
  border-radius: 50%;
  background-image: url("../multimedia/Foto.png");
}
.content__title {
  font-size: 32px;
  margin-bottom: 16px;
}
.content__title span {
  color: #2E40B4;
}

/* -------------------------------- Dashboard ------------------------------- */
.dropdown {
  position: absolute;
  max-height: 480px;
  right: 0;
  box-shadow: 0px 2px 10px #0000001A;
  border-radius: 0px 0px 10px 10px;
  background-color: #fff;
  transition: 0.5s;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
}
.dropdown__help {
  list-style: none;
  top: 24px;
  padding: 30px;
  width: 230px;
}
.dropdown__notificaciones {
  width: 440px;
  top: 24px;
}
.dropdown__notificaciones::-webkit-scrollbar {
  width: 10px;
  background: #E9EFF5;
}
.dropdown__notificaciones::-webkit-scrollbar-thumb {
  background: #0000001A;
  border-radius: 8px;
}
.dropdown__user {
  top: 44px;
  width: 200px;
}
.dropdown__item {
  color: #8395A7;
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}
.dropdown__item:last-child {
  margin-bottom: 0;
}
.dropdown__item span::before {
  max-width: 30px;
  font-size: 27px;
  color: #222F3E;
  margin-right: 10px;
}
.dropdown__rol {
  color: #8395A7;
  display: grid;
  grid-template-columns: 20% auto;
  padding: 15px 20px;
  align-items: center;
}
.dropdown__rol:last-child {
  padding: 20px 22px;
  border-top: 1px solid #0000001A;
}
.dropdown__rol span::before {
  max-width: 30px;
  font-size: 20px;
  color: #8395A7;
  margin-right: 10px;
}
.dropdown__title {
  color: #3345D7;
  padding: 26px 26px 10px 26px;
  font-size: 16px;
  font-weight: 600;
}
.dropdown__cover {
  border-top: 1px solid #C8D6E5;
  padding: 20px 33px;
  display: grid;
  grid-template-columns: 7% auto;
  align-items: center;
}
.dropdown__cover--first .dropdown__info .dropdown__date {
  color: #3345D7;
  font-size: 12px;
  font-weight: 500;
}
.dropdown__cover--first .dropdown__info .dropdown__parrafo {
  color: #222F3E;
  font-size: 14px;
  font-weight: 700;
}
.dropdown__cover span {
  font-size: 25px;
  margin-left: auto;
  font-weight: normal;
}
.dropdown__info {
  margin-left: 25px;
}
.dropdown__date {
  font-size: 12px;
  font-weight: 500;
  color: #576574;
}
.dropdown__parrafo {
  font-size: 14px;
  font-weight: 500;
  color: #222F3E;
}
.dropdown--active {
  top: 54px;
  visibility: visible;
  opacity: 1;
}
.dropdown--on {
  top: 60px;
  visibility: visible;
  opacity: 1;
}
.dropdown__iconUser .a {
  fill: none;
}

.tab {
  position: absolute;
  top: 0;
  padding: 167px 100px 0 100px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.tab__navegacion {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
.tab__navegacion > li:first-child {
  margin-right: 60px;
}
.tab__navegacion::before {
  transition: 0.5s ease-in;
}
.tab__navegacion--first::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 5px;
  background-color: #3345D7;
}
.tab__navegacion--second::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 170px;
  height: 5px;
  background-color: #3345D7;
}
.tab__item {
  font-weight: 700;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 10px;
}
.tab__more {
  margin-left: auto;
  display: none;
}
.tab__more div, .tab__more > ul {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #C8D6E5;
}
.tab__more div:first-child {
  margin-right: 20px;
}
.tab__more--active {
  display: flex;
}
.tab__add {
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.tab__add .a {
  fill: white;
}
.tab__contain {
  margin: 60px 0;
  display: none;
  position: relative;
}
.tab__apps {
  width: 100%;
  height: 290px;
  display: flex;
}
.tab__title {
  margin: 60px 0 37px 0;
}
.tab__alert {
  position: absolute;
  height: 75px;
  top: 170px;
  left: 350px;
  font-weight: 500;
  font-size: 22px;
  display: inline-flex;
}
.tab__arrow {
  margin-top: auto;
}
.tab__filter {
  min-width: 190px;
  position: relative;
  z-index: 200;
}
.tab__filter .current {
  font-weight: 600;
  font-size: 14px;
  color: #8395A7;
}

.filter {
  padding: 10px 14px;
  list-style: none;
  position: relative;
  width: 190px;
}
.filter__on {
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  height: 20px;
  color: #8395A7;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
}

.app {
  width: 270px;
  height: 100%;
  padding: 40px 30px;
  border-radius: 20px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  text-align: center;
}
.app__img {
  width: 70px;
  height: 74px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.app__img--crm {
  width: 70px;
  background-image: url("../../multimedia/img/3D_CRM.png");
}
.app__img--lxp {
  width: 120px;
  background-image: url("../../multimedia/img/3D_LXP.png");
}
.app__img--cms {
  width: 120px;
  background-image: url("../../multimedia/img/3D_CMS.png");
}
.app__img--mam {
  width: 70px;
  background-image: url("../../multimedia/img/3D_MAM.png");
  background-size: 200% 200%;
}
.app__title {
  font-size: 16px;
  font-weight: 600;
}
.app__boton--primario {
  padding: 10px 30px;
  border: 1px solid #3345D7;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #3345D7;
}
.app__boton--secundario {
  font-size: 12px;
  font-weight: 700;
  color: #3345D7;
}

.proyecto {
  width: 270px;
  height: 320px;
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 60px;
  background-color: #fff;
  display: flex;
}
.proyecto--add {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.proyecto--add span {
  font-size: 80px;
}
.proyecto--card {
  position: relative;
  display: grid;
  grid-template-rows: 60% auto;
  grid-template-columns: 100%;
  padding: 0;
}
.proyecto__crear {
  font-size: 14px;
  font-weight: 600;
  margin-top: 70px;
  color: #222F3E;
}
.proyecto__img {
  border-radius: 20px 20px 0 0;
  background-color: #2E40B4;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.proyecto__img img {
  object-fit: cover;
  width: 100%;
}
.proyecto__img--inactive {
  opacity: 0.5;
}
.proyecto__deploy {
  position: absolute;
  padding: 0 20px 0 10px;
  top: 20px;
  left: 0;
  z-index: 10;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  background-color: #fff;
  cursor: pointer;
}
.proyecto__deploy--inactive {
  opacity: 0.5;
}
.proyecto__public {
  margin-left: 10px;
  font-weight: 600;
  font-size: 12px;
  color: #222F3E;
}
.proyecto__img {
  cursor: pointer;
}
.proyecto__info {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}
.proyecto__title {
  font-weight: 600;
  font-size: 14px;
  color: #222F3E;
  display: flex;
  flex-direction: column;
}
.proyecto__title--inactive {
  opacity: 0.5;
}
.proyecto__moreInfo {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}
.proyecto__colaboradores {
  margin: auto 0;
  display: flex;
  width: 320px;
  z-index: 0;
}
.proyecto__colaboradores--inactive {
  opacity: 0.5;
}
.proyecto__container-colaboradores {
  width: 80%;
  display: table;
  overflow: scroll !important;
}
.proyecto__all {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -6px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.proyecto__all--first {
  margin-left: 0;
  z-index: 5;
  background-color: #fff;
}
.proyecto__all--add {
  font-size: 27px;
}
.proyecto__opciones {
  font-size: 32px;
  cursor: pointer;
  line-height: 23px;
}
.proyecto__dropup {
  position: absolute;
  width: 180px;
  height: auto;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 10px #0000001A;
  right: -90px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.proyecto__dropup--on {
  opacity: 1;
  visibility: visible;
}
.proyecto__dropup--inactive {
  height: 100px;
}
.proyecto__only {
  padding: 11px 20px;
  font-weight: 500;
  font-size: 12px!important;
  color: #222F3E;
  cursor: pointer;
}

.form-register {
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-register__cont-input {
  position: relative;
  margin: 25px 0;
  width: 100%;
  transition: 0.3s ease;
}
.form-register__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  border: 1px solid;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form-register__input:focus, .form-register__input:valid {
  border: 1px solid #7062D4;
}
.form-register__input:focus + span, .form-register__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form-register__input:active {
  border: 1px solid #7062D4;
}
.form-register__cont-input--error {
  margin-bottom: 45px;
}
.form-register__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form-register__cont-input--error .form__input:focus, .form-register__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form-register__cont-input--error .form__input:focus .form__text-help, .form-register__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.form-register__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.form-register__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  color: #8395A7;
}
.form-register__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form-register__descripcion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-register__title {
  font-weight: 500;
  font-size: 14px;
  color: #3345D7;
}
.form-register__caracteres {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.form-register__textarea {
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  height: 100px;
  resize: none;
  outline: none;
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
}
.form-register__textarea:focus, .form-register__textarea:active {
  border: 1px solid #7062D4;
}
.form-register__problema {
  display: flex;
}
.form-register__up {
  display: inline-block;
  text-align: center;
  width: 80px;
  height: 80px;
  border: 1px dashed #C8D6E5;
  border-radius: 10px;
  padding: 26px 15px;
  font-size: 10px;
  cursor: pointer;
}
.form-register__file {
  display: none;
}
.form-register__upText {
  margin-left: 30px;
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  justify-content: space-between;
}
.form-register__upTitle {
  font-weight: 600;
  font-size: 18px;
  color: #222F3E;
}
.form-register__upHelp {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.form-register__botones {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.form-register__cancelar {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  cursor: pointer;
}
.form-register__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 40px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.proyectos {
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.proyectos form {
  width: 100%;
}
.proyectos__cont-input {
  position: relative;
  margin: 25px 0;
  width: 100%;
  transition: 0.3s ease;
}
.proyectos__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  border: 1px solid var(--unnamed-color-c8d6e5);
  border: 1px solid #C8D6E5;
  border-radius: 10px;
}
.proyectos__input:focus, .proyectos__input:valid {
  border: 1px solid #7062D4;
}
.proyectos__input:focus + span, .proyectos__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.proyectos__input:active {
  border: 1px solid #7062D4;
}
.proyectos__cont-input--error {
  margin-bottom: 45px;
}
.proyectos__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.proyectos__cont-input--error .form__input:focus, .proyectos__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.proyectos__cont-input--error .form__input:focus .form__text-help, .proyectos__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.proyectos__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.proyectos__text-help {
  position: absolute;
  top: 9px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  color: #8395A7;
}
.proyectos__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.proyectos__selectColor {
  list-style: none;
  display: flex;
  margin: 14px 0 24px 0;
}
.proyectos__selectColor li:nth-child(1) div {
  background-color: #3345D7;
}
.proyectos__selectColor li:nth-child(2) div {
  background-color: #2E40B4;
}
.proyectos__selectColor li:nth-child(3) div {
  background-color: #7FBA7A;
}
.proyectos__selectColor li:nth-child(4) div {
  background-color: #FFA25F;
}
.proyectos__selectColor li:nth-child(5) div {
  background-color: #EE5253;
}
.proyectos__selectColor li:nth-child(6) div {
  background-color: #FF78A4;
}
.proyectos__selectColor li:nth-child(7) div {
  background-color: #222F3E;
}
.proyectos__cover {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.proyectos__cover--on {
  border: 2px solid #3345D7;
}
.proyectos__color {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
}
.proyectos__uploader {
  display: flex;
}
.proyectos__upload {
  width: 180px;
  height: 160px;
  border-radius: 10px;
  border: 1px dashed #C8D6E5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.proyectos__up {
  padding: 26px 30px;
  font-size: 12px;
  font-weight: 500;
  color: #8395A7;
  cursor: pointer;
}
.proyectos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.proyectos__file {
  display: none;
}
.proyectos__upText {
  margin-left: 30px;
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  justify-content: space-between;
}
.proyectos__upTitle {
  font-weight: 600;
  font-size: 18px;
  color: #222F3E;
}
.proyectos__upHelp {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.imgPrev {
  height: 85%;
}
.imgPrev__cont {
  width: 100%;
  height: 325px;
  border-radius: 10px;
  border: 1px solid #C8D6E5;
  background-color: #fff;
}
.imgPrev__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.nombre_empresa {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nombre_empresa p {
  font-size: 36px;
  color: #111 !important;
}

.proyecto-color-1 {
  background-color: #00ABE1;
}

.proyecto-color-2 {
  background-color: #FF661C;
}

.proyecto-color-3 {
  background-color: #2ecc71;
}

.proyecto-color-4 {
  background-color: #8e44ad;
}

.ver-proyectos {
  font-size: 12px;
  color: #576574;
}

.eliminar-carpeta {
  font-size: 12px;
  color: #576574;
  text-align: right;
}

.proyecto__ver-elimnar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------- modales -------------------------------- */
.crm-modal-bg {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.crm-modal-bg.nobg {
  background: none;
  -webkit-backdrop-filter: initial;
          backdrop-filter: initial;
}

.crm-modal {
  position: relative;
  margin: auto;
  border-radius: 20px;
  background-color: #F6F7F9;
  padding: 40px;
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
}
.crm-modal__crear-carpeta {
  min-width: 600px;
  height: auto;
}
.crm-modal__duplicar {
  width: 600px;
}
.crm-modal__duplicar .proyectos__img {
  width: auto;
  height: auto;
}
.crm-modal__eliminar {
  max-width: 380px;
  height: auto;
  text-align: center;
}
.crm-modal__eliminar .modal__title {
  margin-bottom: 35px;
}
.crm-modal__eliminar img {
  width: 30px;
  margin: 0 auto 24px;
}
.crm-modal__eliminar .js-btn__crear {
  background: #EE5253;
}
.crm-modal__eliminar p {
  margin-bottom: 15px;
}
.crm-modal--delete {
  width: 383px;
  height: 350px;
  text-align: center;
}
.crm-modal__title {
  font-weight: 600;
  font-size: 24px;
}
.crm-modal__cerrar {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}
.crm-modal__cerrar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222F3E;
  transform: rotate(45deg);
}
.crm-modal__cerrar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222F3E;
  transform: rotate(-45deg);
}
.crm-modal__botones {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.crm-modal__cancelar {
  font-weight: 600;
  font-size: 14px;
  color: #576574;
  cursor: pointer;
}
.crm-modal__cancelar--ground {
  padding: 13px 40px;
  border-radius: 60px;
  background-color: #E4E4E4;
}
.crm-modal__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 40px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.crm-modal__submit--danger {
  background-color: #EE5253;
}
.crm-modal__div {
  margin: 33px 0;
  width: 260px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crm-modal__div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  border-bottom: 2px dashed #3345D7;
}
.crm-modal__div::after {
  content: "O";
  background-color: #fff;
  z-index: 3;
  font-weight: 700;
  font-size: 19px;
  padding: 0 18px;
  color: #3345D7;
}
.crm-modal__boton {
  padding: 18px 50px;
  border: 2px solid #3345D7;
  border-radius: 60px;
  color: #3345D7;
  cursor: pointer;
}
.crm-modal__file {
  display: none;
}
.crm-modal__advertencia {
  margin: 20px auto 0 auto;
  width: 80%;
  font-size: 14px;
  font-weight: 500;
  color: #8395A7;
}
.crm-modal__question {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #8395A7;
}
.crm-modal__icon-alert {
  margin-bottom: 10px;
  font-size: 30px;
}
.crm-modal__icon-alert::before {
  color: #EE5253;
}

.show-modal {
  display: flex;
}

.select-mover-carpeta {
  width: 100%;
  margin: 30px 0;
}
.select-mover-carpeta .nice-select {
  width: 100% !important;
}
.select-mover-carpeta .list {
  width: 100%;
  margin-top: 0;
}

.alert-correo {
  margin-left: 40px;
}

.modal-colaboradores {
  width: 800px !important;
  height: auto !important;
}
.modal-colaboradores .editar-agregar-colaborador__btn-editar {
  display: none;
}
.modal-colaboradores .general-form__input {
  margin-bottom: 0;
  position: relative;
}
.modal-colaboradores .form__submit {
  margin: 0;
}
.modal-colaboradores .form-agregar-content.scroll {
  overflow: scroll;
  max-height: 400px;
  width: 100%;
}
.modal-colaboradores__inputs {
  display: grid;
  width: 100% !important;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
}
.modal-colaboradores__inputs-first {
  display: grid;
  width: 100% !important;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.modal-colaboradores .crear-agregar {
  display: flex;
  justify-content: space-between;
}
.modal-colaboradores .btn-agregar-otro {
  display: flex;
  align-items: center;
  width: 300px;
  gap: 20px;
  cursor: pointer;
}
.modal-colaboradores .btn-add {
  display: flex;
  justify-content: flex-end;
}
.modal-colaboradores .main-dropdown {
  width: 100% !important;
  margin-bottom: 0;
}
.modal-colaboradores .main-dropdown .main-dropdown__item {
  display: block;
}
.modal-colaboradores .proyectos__cont-input {
  width: 100% !important;
}

.editar-agregar-colaborador {
  height: 40px;
  display: flex;
  justify-content: flex-end;
  display: none;
}
.editar-agregar-colaborador.active {
  display: flex;
}
.editar-agregar-colaborador__btn-editar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #8395A7;
  margin-right: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editar-agregar-colaborador__btn-editar:hover {
  background: #8395A7;
}
.editar-agregar-colaborador__btn-editar:hover svg path {
  fill: #fff;
}
.editar-agregar-colaborador__btn-eliminar {
  width: 40px;
  height: 40px;
  border: 1px solid #8395A7;
  border-radius: 50%;
  background-color: #fff;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.editar-agregar-colaborador__btn-eliminar:hover {
  background: #8395A7;
}
.editar-agregar-colaborador__btn-eliminar:hover svg path {
  fill: #fff;
}

.general-bg {
  background: #fff 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.proyectos__colobarador-mail {
  font-weight: 600;
  display: none;
}

.modal__submit {
  height: 50px;
  padding: 0 50px;
}

.modal-planes {
  background-color: #F4F5F7;
  padding: 20px;
  width: 90% !important;
  border-radius: 20px;
  margin-top: 0 !important;
}
@media screen and (min-width: 1440px) {
  .modal-planes {
    width: 60% !important;
  }
}
.modal-planes .planes-tab-title {
  padding: 0 !important;
}

.modal-crear-proyecto .modal__title {
  margin-bottom: 30px;
}

.modal-success {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-success img {
  width: 100px;
  margin-bottom: 30px;
}
.modal-success h2 {
  font-size: 16px;
  color: #3345D7;
}

.modal-title {
  font-size: 24px !important;
}

.modal-body {
  padding: 0 !important;
}

.modal--enterprice .modal__submit--blue {
  margin-top: 30px;
  background-color: #3F8CFF;
}

.general-label {
  padding: 2px 5px;
  font-size: 14px;
  color: #8395A7;
  position: absolute;
  top: 12px;
  left: 18px;
  transition: all 0.3s ease-in-out;
  background: #fff;
}
.general-label.active {
  font-size: 12px;
  background: #fff;
  color: #3345D7;
  top: -12px;
  transition: all 0.2s ease-in-out;
}

.nuevo-metodo-pago .facturacion__fecha-tarjeta {
  margin-top: 30px;
}

.modal-ccv {
  width: 60%;
}

/* --------------------------------- carpeta -------------------------------- */
.carpeta {
  border-top-left-radius: 0;
  background: #C8D6E5;
  display: flex;
}
.carpeta__tab {
  position: absolute;
  top: -14px;
  left: 0;
  width: 40%;
  height: 14px;
  background: url("../img/tab-folder.svg") 0 100% no-repeat;
  background-size: 100%;
}
.carpeta__agregar {
  width: 92px;
  height: 92px;
  background: url("../img/icon-agregar.svg") center center no-repeat #fff;
  box-shadow: 0px 2px 6px #0000000F;
  border-radius: 10px;
}
.carpeta__logo, .carpeta__letras {
  width: 92px;
  height: 92px;
  display: block;
  box-shadow: 0px 2px 6px #0000000F;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.carpeta__logo img, .carpeta__letras img {
  width: 80%;
}
.carpeta__letras {
  border-radius: 100%;
  font-size: 32px;
  background: #fff;
  color: #222F3E;
}

.ver-proyectos {
  font-size: 12px;
  color: #576574;
  margin-top: 15px;
}

.modal-agregar-carpeta .modal__botones {
  margin-top: 10px;
}
.modal-agregar-carpeta .nice-select {
  width: 100%;
  margin-bottom: 30px;
}
.modal-agregar-carpeta .nice-select .list {
  width: 100%;
}

.selector-check {
  margin: 25px 0;
  position: relative;
}
.selector-check__arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 0;
  top: 0;
  background: url("../img/select-arrow.svg") center center no-repeat;
  z-index: 1000;
}
.selector-check__opciones {
  width: 100%;
  height: 205px;
  padding: 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 10px #00000029;
  border-radius: 10px;
}
.selector-check__option {
  margin-bottom: 20px;
}
.selector-check__option:last-child {
  margin-bottom: 0;
}
.selector-check__option label {
  margin-left: 15px;
}
.selector-check__title {
  width: 100%;
  height: auto;
  border: 1px solid var(--unnamed-color-c8d6e5);
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #C8D6E5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 50px;
  padding: 0 20px;
  margin: 25px 0;
  position: relative;
}

.box-scroll {
  width: 100%;
  height: 100%;
  overflow: scroll;
}

/* --------------------------------- equipo --------------------------------- */
.equipo {
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 30px;
  margin-bottom: 30px;
}

.center {
  display: flex;
  justify-content: center;
}

div.tab__container-area .div-head {
  background: #fff;
  padding: 30px;
  display: grid;
  grid-template-columns: 10% 30% 30% 18% 10% 2%;
  margin-bottom: 20px;
  font-size: 12px;
}
div.tab__container-area .persona-informacion {
  background: #fff;
  padding: 30px;
  display: grid;
  grid-template-columns: 10% 30% 30% 18% 10% 2%;
  margin-bottom: 20px;
}
div.tab__container-area .persona-informacion div {
  display: flex;
  align-items: center;
}

.card-add-persona {
  background: #fff;
  padding: 30px;
  text-align: center;
  height: fit-content;
}
.card-add-persona h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0;
}
/* --------------------------------- perfil --------------------------------- */
.tab-perfil {
  position: absolute;
  top: 0;
  padding: 167px 100px 50px 100px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.tab-perfil__title {
  font-weight: 700;
  font-size: 48px;
  color: #222F3E;
}
.tab-perfil__navegacion {
  margin: 46px 0 60px 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
.tab-perfil__item {
  padding: 10px 20px;
  border: 1px solid #222F3E;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-right: 20px;
}
.tab-perfil__item:hover {
  background-color: #fff;
}
.tab-perfil__item--active {
  background-color: #222F3E;
  color: #fff;
}
.tab-perfil__item--active:hover {
  background-color: #222F3E;
}
.tab-perfil__contain {
  gap: 30px;
  width: 100%;
}
.tab-perfil__contain--grid {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 30px;
}

.datos {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
}
.datos__title {
  font-weight: 700;
  font-size: 32px;
  color: #222F3E;
  margin-bottom: 40px;
}
.datos__subtitle {
  font-weight: 600;
  font-size: 16px;
  color: #576574;
}
.datos__cards {
  margin: 30px 0 47px 0;
  display: flex;
  flex-wrap: wrap;
}
.datos__cards > div:first-child {
  margin-left: 0;
}
.datos__addcard {
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border: 2px solid #C8D6E5;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.datos__addcard span {
  font-size: 35px;
  color: #3345D7;
}
.datos__tableCont {
  border-radius: 10px;
  border-collapse: collapse;
  overflow: hidden;
}
.datos__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 30px;
}
.datos__table td {
  border: 1px solid #C8D6E5;
  border-collapse: collapse;
  padding: 16px 20px;
}
.datos__table--left {
  color: #8395A7;
}

.card {
  width: 190px;
  height: 120px;
  margin-left: 20px;
  border-radius: 10px;
  position: relative;
  color: #fff;
  opacity: 0.8;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card--debito {
  background: transparent linear-gradient(116deg, #F9D423 0%, #55BCC9 0%, #3448CF 100%);
}
.card--credito {
  background: transparent linear-gradient(116deg, #EE80A4 0%, #5644B3 100%);
}
.card__type {
  font-weight: 500;
  font-size: 6px;
}
.card__number {
  font-weight: 600;
  font-size: 10px;
}
.card__digitos {
  font-weight: 500;
}
.card__info {
  display: flex;
  justify-content: space-between;
}
.card__nombre {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 9px;
}

.perfil__cuenta {
  padding-left: 30px;
  position: relative;
}
.perfil__datos {
  padding: 40px 27px;
  position: fixed;
  width: 270px;
  height: auto;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 100px;
  top: 385px;
}
.perfil__imagen {
  width: 80px !important;
  width: 80px !important;
  position: relative;
}
.perfil__img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  margin-bottom: 20px;
}
.perfil__img img {
  width: 100px;
  object-fit: cover;
  outline: none;
}
.perfil__edit {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #3345D7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.perfil__edit span {
  font-size: 10px;
}
.perfil__edit span:before {
  color: #fff;
}
.perfil__nombre {
  font-weight: 600;
  font-size: 16px;
  color: #222F3E;
}
.perfil__arroba {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.perfil__delete {
  margin: 30px 0;
  padding: 10px 40px;
  background-color: transparent;
  border-radius: 60px;
  border: 1px solid #EE5253;
  color: #EE5253;
  cursor: pointer;
  outline: none;
}
.perfil__texto {
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}

.form-perfil {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.form-perfil__cont-input {
  margin-bottom: 20px;
  width: 48%;
  position: relative;
  transition: 0.3s ease;
}
.form-perfil__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  border: none;
  border-bottom: 1px solid #8395A7;
  transition: 0.3s linear;
}
.form-perfil__input:focus, .form-perfil__input:valid {
  border-bottom: 1px solid #7062D4;
}
.form-perfil__input:focus + span, .form-perfil__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form-perfil__input:active {
  border-bottom: 1px solid #7062D4;
}
.form-perfil__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  color: #8395A7;
}
.form-perfil__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form-perfil__about {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-perfil__title {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.form-perfil__title--on {
  color: #3345D7;
}
.form-perfil__caracteres {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.form-perfil__textarea {
  border-radius: 10px;
  border: 1px solid #C8D6E5;
  padding: 20px;
  width: 100%;
  height: 100px;
  resize: none;
  outline: none;
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
}
.form-perfil__textarea:focus, .form-perfil__textarea:active, .form-perfil__textarea:valid {
  border: 1px solid #7062D4;
}
.form-perfil__textarea::placeholder {
  color: #8395A7;
}
.form-perfil__submit {
  margin-top: 40px;
  margin-left: auto;
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 50px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.compras {
  margin-top: 30px;
  border: 1px solid #C8D6E5;
  border-radius: 10px;
  display: grid;
  padding: 20px;
  grid-template-columns: 75% auto;
}
.compras__title {
  font-weight: 500;
  font-size: 16px;
  color: #222F3E;
}
.compras__valor {
  font-weight: 600;
  font-size: 16px;
  color: #222F3E;
}
.compras__fecha {
  font-weight: 500;
  font-size: 16px;
  color: #8395A7;
}
.compras__pendiente {
  font-weight: 500;
  font-size: 16px;
}
.compras__danger {
  color: #EE5253;
  margin-right: 17px;
}
.compras__pagar {
  color: #3345D7;
}
.compras__date {
  text-align: end;
}
.compras__especific {
  font-weight: 500;
  font-size: 16px;
  color: #576574;
}
.compras__ok {
  font-weight: 500;
  font-size: 16px;
  color: #C8D6E5;
}
.compras__download {
  margin-left: 20px;
  cursor: pointer;
}

.notificaciones__title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #576574;
}
.notificaciones__parrafo {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.notificaciones__group {
  padding: 20px 0;
  border-bottom: 1px solid #8395A7;
  display: grid;
  grid-template-columns: 30% auto;
}
.notificaciones__input {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.notificaciones__box {
  -webkit-appearance: none;
  visibility: hidden;
  display: none;
}
.notificaciones__box:checked ~ .notificaciones__check {
  background-color: #39E26C;
}
.notificaciones__box:checked ~ .notificaciones__check:before {
  top: 3px;
  right: 18px;
}
.notificaciones__check {
  margin-left: 20px;
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  background-color: #C8D6E5;
  cursor: pointer;
  border-radius: 11px;
  transition: ease-in 0.5s;
}
.notificaciones__check:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  background-color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: 0.5s;
}

.formPassword__verificar, .formPassword__now {
  display: flex;
  flex-direction: column;
}
.formPassword__now {
  width: 50%;
}
.formPassword__verificar {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formPassword__verificar--active {
  display: flex;
}
.formPassword__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.formPassword__cont-input--verificar {
  width: 48%;
}
.formPassword__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.formPassword__input:focus, .formPassword__input:valid {
  border: 2px solid #7062D4;
}
.formPassword__input:focus + span, .formPassword__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.formPassword__input:active {
  border: 1px solid #7062D4;
}
.formPassword__cont-input--error {
  margin-bottom: 45px;
}
.formPassword__cont-input--error .formPassword__input {
  border: 1px solid #EE5253;
}
.formPassword__cont-input--error .formPassword__input:focus, .formPassword__cont-input--error .formPassword__input:valid {
  border: 2px solid #EE5253;
}
.formPassword__cont-input--error .formPassword__input:focus .formPassword__text-help, .formPassword__cont-input--error .formPassword__input:valid .formPassword__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.formPassword__cont-input--error .formPassword__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.formPassword__cont-input--error .formPassword__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253;
  visibility: visible;
  opacity: 1;
}
.formPassword__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
}
.formPassword__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  font-size: 12px;
}
.formPassword__input-eye::after {
  content: "";
  color: #8395A7;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}
.formPassword__input-eye--active::after {
  content: "";
}
.formPassword__enlace {
  cursor: pointer;
  color: #3345D7;
  font-weight: 400;
  text-decoration: none;
}
.formPassword__parrafo {
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
  margin-top: 30px;
}
.formPassword__submit {
  margin-top: 40px;
  margin-left: auto;
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 50px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

/* Modales */
.modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 40px;
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}
.modal--active {
  display: flex;
}
.modal--pagos {
  width: 460px;
  height: 490px;
}
.modal--delete {
  width: 383px;
  height: 350px;
  text-align: center;
}
.modal__title {
  font-weight: 600;
  font-size: 24px;
}
.modal__cerrar {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal__cerrar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222F3E;
  transform: rotate(45deg);
}
.modal__cerrar::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222F3E;
  transform: rotate(-45deg);
}
.modal__botones {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.modal__cancelar {
  font-weight: 600;
  font-size: 14px;
  color: #576574;
  cursor: pointer;
}
.modal__cancelar--ground {
  padding: 13px 40px;
  border-radius: 60px;
  background-color: #E4E4E4;
}
.modal__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 40px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.modal__submit--danger {
  background-color: #EE5253;
}
.modal__div {
  margin: 33px 0;
  width: 260px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  border-bottom: 2px dashed #3345D7;
}
.modal__div::after {
  content: "O";
  background-color: #fff;
  z-index: 3;
  font-weight: 700;
  font-size: 19px;
  padding: 0 18px;
  color: #3345D7;
}
.modal__boton {
  padding: 18px 50px;
  border: 2px solid #3345D7;
  border-radius: 60px;
  color: #3345D7;
  cursor: pointer;
}
.modal__file {
  display: none;
}
.modal__advertencia {
  margin: 20px auto 0 auto;
  width: 80%;
  font-size: 14px;
  font-weight: 500;
  color: #8395A7;
}
.modal__question {
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #8395A7;
}
.modal__icon-alert {
  margin-bottom: 10px;
  font-size: 30px;
}
.modal__icon-alert::before {
  color: #EE5253;
}

.formTarjeta {
  margin-top: 22px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.formTarjeta__cont-input {
  position: relative;
  margin-top: 20px;
  width: 100%;
  transition: 0.3s ease;
}
.formTarjeta__cont-input--medium {
  width: 63%;
}
.formTarjeta__cont-input--small {
  width: 35%;
}
.formTarjeta__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.formTarjeta__input::-webkit-inner-spin-button, .formTarjeta__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.formTarjeta__input:focus, .formTarjeta__input:valid {
  border: 2px solid #7062D4;
}
.formTarjeta__input:focus + span, .formTarjeta__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.formTarjeta__input:active {
  border: 1px solid #7062D4;
}
.formTarjeta__check {
  display: none;
}
.formTarjeta__check:checked + label:before {
  content: "";
  font-size: 6px;
  color: #fff;
  background-color: #3345D7;
}
.formTarjeta__checkLabel {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}
.formTarjeta__checkLabel:before {
  content: "";
  font-family: "icomoon";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 12px;
  height: 12px;
  border: 1px solid #C8D6E5;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.formTarjeta__cont-input--error {
  margin-bottom: 45px;
}
.formTarjeta__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.formTarjeta__cont-input--error .form__input:focus, .formTarjeta__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.formTarjeta__cont-input--error .form__input:focus .form__text-help, .formTarjeta__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.formTarjeta__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.formTarjeta__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  font-weight: 500;
  font-size: 13px;
  background-color: #fff;
  color: #8395A7;
}
.formTarjeta__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.formTarjeta__info {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
}
.formTarjeta__info:hover ~ .formTarjeta__alert {
  display: block;
}
.formTarjeta__alert {
  display: none;
  position: absolute;
  top: -40px;
  right: -75px;
  width: 210px;
  text-align: center;
  padding: 8px 12px;
  border-radius: 60px;
  background-color: #fff;
  font-weight: 500;
  font-size: 10px;
  box-shadow: 0px 2px 8px #0000001A;
  transition: 1s ease-in;
}
.formTarjeta__alert::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -5px;
  right: 93px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  background-color: #fff;
}
.formTarjeta__botones {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.formTarjeta__cancelar {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  cursor: pointer;
}
.formTarjeta__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 40px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.formTarjeta__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  font-size: 12px;
}

.formDelete {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.formDelete__cont-input {
  position: relative;
  margin-top: 20px;
  width: 100%;
  transition: 0.3s ease;
}
.formDelete__cont-input--medium {
  width: 48%;
}
.formDelete__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.formDelete__input::-webkit-inner-spin-button, .formDelete__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.formDelete__input:focus, .formDelete__input:valid {
  border: 2px solid #7062D4;
}
.formDelete__input:focus + span, .formDelete__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.formDelete__input:active {
  border: 1px solid #7062D4;
}
.formDelete__cont-input--error {
  margin-bottom: 45px;
}
.formDelete__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.formDelete__cont-input--error .form__input:focus, .formDelete__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.formDelete__cont-input--error .form__input:focus .form__text-help, .formDelete__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.formDelete__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.formDelete__cont-input--error .form__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253;
  visibility: visible;
  opacity: 1;
}
.formDelete__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  background-color: #fff;
  color: #8395A7;
}
.formDelete__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.formDelete__botones {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.formDelete__cancelar {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  cursor: pointer;
}
.formDelete__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 40px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.passwrod-cotent {
  width: 50%;
}
.passwrod-cotent p {
  margin-bottom: 30px;
  font-size: 12px;
}

.error-pass {
  color: #EE5253;
}

.form-new-pass__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.panel__avatar-modal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100% !important;
}
.panel__avatar-modal .panel__cubierta {
  margin: 0;
  margin-bottom: 20px;
}
.panel__avatar-modal .panel__parrafo {
  margin: 0;
}
.panel__avatar-modal .avatar {
  border: 2px solid #C8D6E5 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.panel__avatar-modal .avatar p {
  padding: 10px;
}
.panel__avatar-modal .avatar__img img {
  width: 100% !important;
  object-fit: cover !important;
}
.panel__avatar-modal .panel {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel__avatar-modal .panel__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 125px;
  height: 20px;
  background: url("../multimedia/logo.svg") no-repeat;
  background-size: cover;
}
.panel__avatar-modal .panel__avance {
  display: flex;
  flex-direction: row;
  width: 131px;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.panel__avatar-modal .panel__avance::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background-color: #3345D7;
  z-index: 1;
}
.panel__avatar-modal .panel__circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #3345D7;
  z-index: 3;
}
.panel__avatar-modal .panel__circle--active {
  background-color: #3345D7;
}
.panel__avatar-modal .panel__title {
  font-family: 600;
  font-size: 32px;
  margin: 60px 0 37px 0;
}
.panel__avatar-modal .panel__title span {
  color: #2E40B4;
}
.panel__avatar-modal .panel__contenedorImg {
  display: flex;
}
.panel__avatar-modal .panel__drag {
  width: 111px;
  height: 111px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  margin-right: 20px;
  padding: 11px;
  cursor: pointer;
  border: 2px solid #C8D6E5;
}
.panel__avatar-modal .panel__drag:hover {
  border: 2px solid #3345D7;
}
.panel__avatar-modal .panel__drag:hover p {
  color: #3345D7;
}
.panel__avatar-modal .panel__cubierta {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  padding: 3px;
  box-sizing: content-box;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
}
.panel__avatar-modal .panel__cubierta:hover {
  opacity: 1;
}
.panel__avatar-modal .panel__cubierta--active {
  border: 2px solid #3345D7 !important;
  opacity: 1 !important;
}
.panel__avatar-modal .panel__img {
  width: 100px;
  height: 100px;
}
.panel__avatar-modal .panel__parrafo {
  font-size: 10px;
  color: #222F3E;
}
.panel__avatar-modal .panel__boton {
  margin-top: 45px;
  display: inline-block;
  padding: 18px 70px;
  text-decoration: none;
  background-color: #3345D7;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.m-personalizar {
  padding: 30px;
}
.m-personalizar .panel {
  display: flex;
  padding: 0 !important;
}
.m-personalizar .panel__contenedorImg {
  display: grid;
  padding: 0 !important;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.m-personalizar .form__submit {
  margin: 0 !important;
}

.tabs-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.previsualizar {
  display: flex;
  justify-content: space-between;
}

.ruta__prev {
  cursor: pointer;
}

.text-disable {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}

.modificar {
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 50px;
  color: #3345D7;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

.modal--modificar-email .modal__advertencia {
  text-align: left;
  padding: 0;
  margin: 30px 0;
}
.modal--modificar-email .input-eye {
  top: 9px;
  right: 0;
}
.modal--modificar-email .email__new {
  margin-top: 30px;
}
.modal--modificar-email .continuar {
  justify-content: center;
  align-items: center;
}
.modal--modificar-email .alert-correo-cambiado {
  margin-top: 30px;
}

.avatar__img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
  display: flex;
}

.avatar__img img {
  width: 100%;
  object-fit: scale-down !important;
  outline: none;
}

.avatar-active {
  opacity: 1 !important;
  border: 2px solid #3345D7 !important;
}

.cerrar-planes {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
}
.cerrar-planes::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #222F3E;
  transform: rotate(45deg);
}
.cerrar-planes::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #222F3E;
  transform: rotate(-45deg);
}

/* ------------------------------- facturacion ------------------------------ */
.facturacion__nombres {
  width: 100%;
  display: flex;
  gap: 20px;
}

.facturacion__fecha-tarjeta {
  width: 100%;
  display: grid;
  grid-template-columns: 15% 20% auto;
  gap: 20px;
}

.facturacion__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  gap: 80px;
  align-items: initial;
}

.input-content {
  padding-left: 20px;
}
.input-content .general-form__input {
  position: relative;
  width: 100%;
}

.facturacion__telefono {
  width: 100%;
  display: grid;
  grid-template-columns: 20% 80%;
}
.facturacion__telefono .form__cont-input {
  width: 100%;
}
.facturacion__telefono .form__cont-input div {
  margin-left: 20px !important;
  position: relative;
}

.facturacion__check-empresa {
  margin-bottom: 30px;
}
.facturacion__check-empresa input {
  margin-right: 10px;
}

.facturacion__full-width {
  width: 100%;
  position: relative;
}

.facturacion__datos-empresa {
  width: 100%;
  display: none;
}

.facturacion__orden {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  position: fixed;
  top: 226px;
  right: 100px;
  width: 38%;
}
@media screen and (min-width: 1440px) {
  .facturacion__orden {
    right: 10vw;
  }
}
.facturacion__orden h2 {
  margin-bottom: 50px;
  font-size: 28px;
  font-weight: 600;
}
.facturacion__orden a {
  color: #222F3E;
  font-size: 14px;
}
.facturacion__orden .facturacion__orden-row {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  margin-bottom: 40px;
}
.facturacion__orden .facturacion__orden-row .facturacion__orden-row__description h3 {
  font-size: 18px;
  font-weight: 600;
}
.facturacion__orden .facturacion__orden-row .facturacion__orden-row__price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}
.facturacion__orden .add-code {
  position: absolute;
  right: 20px;
  top: 0;
  color: #3345D7;
  cursor: pointer;
  line-height: 50px;
}
.facturacion__orden .facturacion__total {
  display: flex;
  justify-content: space-between;
}
.facturacion__orden .facturacion__total p {
  font-size: 16px;
}
.facturacion__orden .facturacion__total span {
  font-size: 28px;
  font-weight: 600;
  color: #3345D7;
}

.metodo-pago {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 40px 0;
  margin-bottom: 30px;
}
.metodo-pago h3 {
  margin-bottom: 30px;
}
.metodo-pago .dropdown--franquicia .main-dropdown__title span {
  font-size: 14px !important;
}
.metodo-pago .dropdown--franquicia .main-dropdown__title .flag-selected {
  width: 36px;
}
.metodo-pago .dropdown--franquicia .facturacion__flag {
  width: 30px;
}
.metodo-pago .dropdown--franquicia .main-dropdown__item {
  font-size: 14px;
}

.franquicia__tarjeta-crear {
  display: grid;
  grid-template-columns: 60% 40%;
}

.franquicia__otra-tarjeta {
  margin-bottom: 30px;
  margin-left: 30px;
  text-align: center;
}
.franquicia__otra-tarjeta span {
  font-size: 12px;
  font-weight: 600;
  color: #8395A7;
  display: block;
  cursor: pointer;
  border-radius: 10px;
  line-height: 50px;
  outline: none;
  border: 1px solid #C8D6E5;
}
.franquicia__otra-tarjeta span:hover {
  background: #3345D7;
  color: #fff;
}

.img-franquicia {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 30px;
}
.img-franquicia img {
  width: 100%;
}

.facturacion__pagar {
  width: 100%;
  text-align: right;
}

.paypal {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 30px;
}

.thankyoupage {
  text-align: center;
}

.seguir {
  display: flex;
  margin-top: 30px;
}

.ok {
  width: 100px;
  margin: 0 auto 30px;
}
.ok img {
  width: 100%;
}

.facturacion__orden--ok {
  top: 170px !important;
}

@media screen and (min-width: 1440px) {
  .tab {
    width: 80vw;
    left: 10vw;
  }
}
.metodo-pago-resumen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.metodo-pago-resumen h2 {
  font-size: 16px;
  color: #8395A7;
  font-weight: 600;
  margin: 0 !important;
}
.metodo-pago-resumen img {
  max-width: 84px;
}

/* --------------------------------- Proyecto ------------------------------- */
.dato {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
}
.dato--padding {
  margin: 30px 0;
}
.dato--danger {
  display: flex;
  flex-wrap: wrap;
}
.dato--transparent {
  background-color: transparent;
  padding: 0;
}
.dato__filter {
  margin-left: auto;
  width: 190px;
}
.dato__filter .list {
  width: 100%;
}
.dato:first-child {
  margin-bottom: 30px;
}
.dato__title {
  font-weight: 700;
  font-size: 32px;
  color: #222F3E;
}
.dato__subtitle {
  width: 80%;
  font-weight: 600;
  font-size: 16px;
  color: #222F3E;
}
.dato__subtitle--small {
  font-size: 14px;
}
.dato__piepag {
  margin-top: 20px;
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.dato__delete {
  margin-top: 32px;
  border-radius: 60px;
  border: 1px solid #EE5253;
  background-color: transparent;
  padding: 10px 31px;
  font-weight: 600;
  font-size: 14px;
  color: #EE5253;
  cursor: pointer;
  outline: none;
}
.dato__planes {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.form-configuracion {
  width: 100%;
}

.formGenerales {
  width: 100%;
  margin-top: 39px;
  display: grid;
  grid-template-columns: 48% auto;
  grid-template-rows: 50px 80px;
  grid-gap: 35px;
}
.formGenerales__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.formGenerales__cont-input:hover > .formGenerales__planes {
  display: flex;
}
.formGenerales__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 10px;
  transition: 0.3s linear;
}
.formGenerales__input:focus, .formGenerales__input:valid {
  border: 2px solid #7062D4;
}
.formGenerales__input:focus + span, .formGenerales__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.formGenerales__input:active {
  border: 1px solid #7062D4;
}
.formGenerales__input--dominio {
  padding-left: 45px;
  padding-right: 150px;
}
.formGenerales__input--radio {
  display: none;
}
.formGenerales__input--radio:checked ~ .formGenerales__radio {
  border-color: #3345D7;
}
.formGenerales__input--radio:checked ~ .formGenerales__radio::before {
  display: block;
}
.formGenerales__cont-input--error {
  margin-bottom: 45px;
}
.formGenerales__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.formGenerales__cont-input--error .form__input:focus, .formGenerales__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.formGenerales__cont-input--error .form__input:focus .form__text-help, .formGenerales__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.formGenerales__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.formGenerales__text-help {
  position: absolute;
  top: 14px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.formGenerales__text-help--radio {
  left: 45px;
}
.formGenerales__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.formGenerales__folder {
  height: 100%;
  border: 1px solid #C8D6E5;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.formGenerales__folder .current {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.formGenerales__folder .list {
  width: 100%;
}
.formGenerales__radio {
  position: absolute;
  top: 15px;
  left: 20px;
  border-radius: 50%;
  border: 2px solid #C8D6E5;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.formGenerales__radio::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: #3345D7;
  border-radius: 50%;
}
.formGenerales__textInfo {
  position: absolute;
  top: 15px;
  right: 20px;
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
}
.formGenerales__planes {
  display: none;
  position: absolute;
  left: 0;
  bottom: -48px;
  height: 30px;
  padding-left: 20px;
  font-weight: 500;
  font-size: 12px;
  color: #8395A7;
  align-items: flex-end;
}
.formGenerales__planes:hover {
  display: flex;
}
.formGenerales__addLink {
  margin-left: 5px;
  color: #3345D7;
  text-decoration: underline;
  cursor: pointer;
}
.formGenerales__contbtn {
  display: flex;
}
.formGenerales__submit {
  margin-top: auto;
  margin-left: auto;
  display: inline;
  padding: 13px 40px;
  width: auto;
  height: auto;
  border-radius: 60px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background-color: #3345D7;
  outline: none;
  cursor: pointer;
}
.formGenerales__submit:disabled {
  background-color: #C8D6E5;
}

.table {
  width: 100%;
  margin-top: 39px;
  border-collapse: separate;
  border-spacing: 0;
}
.table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.table tr th {
  border-top: 1px solid #C8D6E5;
  text-align: start;
}
.table tr th.table__right {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.table tr th.table__left {
  font-weight: 500;
  font-size: 14px;
  color: #222F3E;
}
.table tr td {
  font-weight: 500;
  font-size: 14px;
  color: #222F3E;
}
.table tr td.table__right {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.table tr td.table__left {
  font-weight: 500;
  font-size: 14px;
  color: #222F3E;
}
.table tr td.table__description {
  color: #8395A7;
}
.table tr td.table__link {
  cursor: pointer;
  text-decoration: underline;
}
.table tr td.table__link:hover {
  color: #3345D7;
}
.table tr td.table__item {
  color: #EE5253;
  text-decoration: underline;
  cursor: pointer;
}
.table tr th, .table tr td {
  padding: 15px 20px;
  border-right: 1px solid #C8D6E5;
  border-bottom: 1px solid #C8D6E5;
}
.table tr th:first-child, .table tr td:first-child {
  border-left: 1px solid #C8D6E5;
}
.table__left {
  display: flex;
  justify-content: space-between;
}
.table__textBlue {
  margin-left: auto;
  cursor: pointer;
  color: #3345D7;
}

.porcent {
  width: 100%;
}
.porcent__bar {
  margin: 21px 0 7px 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #C8D6E5;
}
.porcent__per {
  height: 4px;
  position: relative;
  width: 0;
  overflow: hidden;
}
.porcent__per::before {
  content: "";
  position: absolute;
  background: transparent linear-gradient(90deg, #39E26C 0%, #FFCE73 48%, #FF2B2B 100%);
  height: 4px;
  width: 190px;
}
.porcent__text {
  font-weight: 500;
  font-size: 12px;
  color: #576574;
  display: flex;
  justify-content: space-between;
}

.inactive__box {
  -webkit-appearance: none;
  visibility: hidden;
  display: none;
}
.inactive__box:checked ~ .inactive__check {
  background-color: #39E26C;
}
.inactive__box:checked ~ .inactive__check:before {
  top: 3px;
  right: 18px;
}
.inactive__check {
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  background-color: #C8D6E5;
  cursor: pointer;
  border-radius: 11px;
  transition: ease-in 0.5s;
}
.inactive__check:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  background-color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: 0.5s;
}

.month {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.month--modal {
  margin: 0 auto;
  height: 20px;
}
.month__input {
  display: none;
}
.month__input:checked ~ .month__label::before {
  left: 20px;
}
.month__label {
  margin: 0 15px;
  width: 36px;
  height: 16px;
  border-radius: 60px;
  background-color: #CDD2F1;
  position: relative;
  cursor: pointer;
}
.month__label::before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3345D7;
  transition: 0.7s ease;
}
.month__text {
  font-weight: 500;
  font-size: 14px;
  color: #576574;
}
.month__text--check {
  font-weight: 600;
  color: #3345D7;
}

.plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  height: 608px;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 40px 50px 40px;
}
.plan--active {
  background-color: #3345D7;
  color: #fff;
}
.plan__plan {
  font-weight: 500;
  font-size: 14px;
}
.plan__type {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 13px;
  position: relative;
}
.plan__type--active::before {
  position: absolute;
  content: "";
  right: -15px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #39E26C;
  font-family: "icomoon" !important;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan__price {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.plan__price--inactive::before {
  content: "Desde";
  font-weight: 500;
  font-size: 8px;
  margin-right: 7px;
  color: #8395A7;
}
.plan__basico {
  color: #05BFCB;
}
.plan__profesional {
  color: #F06B6C;
}
.plan__enterprise {
  color: #3F8CFF;
}
.plan__contenido {
  margin-top: 20px;
  width: 100%;
}
.plan__conTexto {
  margin-top: 3px;
  display: grid;
  grid-template-columns: 16px auto;
  grid-column-gap: 10px;
}
.plan__conTexto--space {
  margin: 15px 0 7px 0;
}
.plan__spanRadio {
  margin-left: auto;
  font-weight: 700;
  color: #222F3E;
}
.plan__addDominio {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 16px auto;
  grid-column-gap: 10px;
}
.plan__negative, .plan__positive {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.plan__negative--basic, .plan__positive--basic {
  background-color: #05BFCB;
}
.plan__negative--basic::before, .plan__positive--basic::before {
  color: #fff !important;
}
.plan__negative--profesional, .plan__positive--profesional {
  background-color: #F06B6C;
}
.plan__negative--profesional::before, .plan__positive--profesional::before {
  color: #fff !important;
}
.plan__negative--prim, .plan__positive--prim {
  background-color: #3F8CFF;
}
.plan__negative--prim::before, .plan__positive--prim::before {
  color: #fff !important;
}
.plan__negative::before {
  position: absolute;
  color: #3345D7;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "x";
  top: 0;
  font-weight: 500;
  font-size: 12px;
}
.plan__positive::before {
  position: absolute;
  color: #3345D7;
  content: "";
  top: 4px;
  left: 3px;
  font-family: "icomoon" !important;
  font-size: 6px;
}
.plan__text {
  font-weight: 500;
  font-size: 10px;
  display: flex;
}
.plan__check {
  display: none;
}
.plan__check:checked ~ .plan__labelCheck::before {
  display: block;
}
.plan__check-box {
  display: none;
}
.plan__check-box:checked ~ .plan__labelCheck-box::before {
  display: block;
}
.plan__select {
  width: 100%;
  height: 100%;
  position: relative;
}
.plan__incluye {
  font-weight: 700;
  font-size: 10px;
}
.plan__incluye--basic {
  color: #05BFCB;
}
.plan__incluye--profesional {
  color: #F06B6C;
}
.plan__labelCheck {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.plan__labelCheck::before {
  display: none;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
.plan__labelCheck--basic {
  border: 1px solid #05BFCB;
}
.plan__labelCheck--basic::before {
  background-color: #05BFCB;
}
.plan__labelCheck--profesional {
  border: 1px solid #F06B6C;
}
.plan__labelCheck--profesional::before {
  background-color: #F06B6C;
}
.plan__labelCheck-box {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #fff;
  cursor: pointer;
}
.plan__labelCheck-box::before {
  display: none;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
}
.plan__labelCheck-box--basic {
  border: 1px solid #05BFCB;
}
.plan__labelCheck-box--basic::before {
  background-color: #05BFCB;
}
.plan__labelCheck-box--profesional {
  border: 1px solid #F06B6C;
}
.plan__labelCheck-box--profesional::before {
  background-color: #F06B6C;
}
.plan__submit {
  margin-top: auto;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 60px;
}
.plan__submit--active {
  background-color: transparent;
}
.plan__submit--change {
  background-color: #fff;
  color: #3345D7;
}
.plan__submit--ntn1 {
  background-color: #05BFCB;
}
.plan__submit--ntn2 {
  background-color: #F06B6C;
}
.plan__submit--ntn3 {
  background-color: #3F8CFF;
}

.formSnapshot {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.formSnapshot__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.formSnapshot__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.formSnapshot__input:focus, .formSnapshot__input:valid {
  border: 2px solid #7062D4;
}
.formSnapshot__input:focus + span, .formSnapshot__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.formSnapshot__input:active {
  border: 1px solid #7062D4;
}
.formSnapshot__cont-input--error {
  margin-bottom: 45px;
}
.formSnapshot__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.formSnapshot__cont-input--error .form__input:focus, .formSnapshot__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.formSnapshot__cont-input--error .form__input:focus .form__text-help, .formSnapshot__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.formSnapshot__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.formSnapshot__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
}
.formSnapshot__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.formSnapshot__botones {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.formSnapshot__cancelar {
  font-weight: 500;
  font-size: 14px;
  color: #8395A7;
  cursor: po;
}
.formSnapshot__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  padding: 13px 50px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.formSnapshot__submit:disabled {
  background-color: #C8D6E5;
}

.imgPrev {
  width: 100%;
  margin-top: 20px;
}
.imgPrev__cont {
  width: 100%;
  height: 295px;
  border-radius: 10px;
  border: 1px solid #C8D6E5;
  background-color: #fff;
}
.imgPrev__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.proyecto-color-1 {
  background-color: #00ABE1;
}

.proyecto-color-2 {
  background-color: #FF661C;
}

.proyecto-color-3 {
  background-color: #2ecc71;
}

.proyecto-color-4 {
  background-color: #8e44ad;
}

.favicon {
  width: 300px;
  display: flex;
  justify-content: space-between;
}
.favicon__img {
  width: 80px !important;
  height: 80px !important;
  background: #FFFFFF;
  border: 1px dashed #C8D6E5;
  border-radius: 10px;
  opacity: 1;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
}
.favicon__img:hover::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7) url("../img/upload.svg") center center no-repeat;
}
.favicon__img img {
  object-fit: cover;
  width: 100%;
}
.favicon__text h2 {
  font-size: 18px;
}
.favicon__text p {
  font-size: 12px;
  color: #8395A7;
}

.modal--reconstuir {
  width: 383px;
  height: 344px;
  text-align: center;
}

.modal {
  z-index: 99999;
}

.planes-tab {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 30px;
}

.planes-tab-title {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.overview-btn {
  display: flex;
  align-items: center;
  gap: 0 20px;
  justify-content: left;
}
.overview-btn .btn-outline-small:nth-child(2) {
  margin-left: 30px;
}

.input-favicon {
  height: 300px;
}

.dominios {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dominios .dato {
  display: block;
  flex-wrap: initial;
}

.form-agregar-subdominio {
  width: 100%;
  margin-top: 40px;
}
.form-agregar-subdominio .editar-agregar-colaborador__btn-eliminar {
  display: none;
}
.form-agregar-subdominio label {
  top: 15px;
}
.form-agregar-subdominio input[type=text] {
  padding: 0 120px 0 50px;
  font-size: 14px;
  font-weight: regular;
  color: #8395A7;
}
.form-agregar-subdominio .input-dominio {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 12px;
  color: #8395A7;
  line-height: 50px;
}
.form-agregar-subdominio .data-campos {
  display: grid;
  grid-template-columns: auto 160px;
  gap: 0 30px;
}
.form-agregar-subdominio .data-campos.domain-ok {
  grid-template-columns: auto 40px;
}

.dominio-activo {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  display: none;
}
.dominio-activo a {
  color: #EE5253;
  text-decoration: underline;
}

.form-agregar-dominio {
  width: 100%;
  margin-top: 40px;
}
.form-agregar-dominio .editar-agregar-colaborador__btn-eliminar {
  display: none;
}
.form-agregar-dominio label {
  top: 15px;
}
.form-agregar-dominio input[type=text] {
  padding: 0 10px 0 50px;
  font-size: 14px;
  font-weight: regular;
  color: #8395A7;
}
.form-agregar-dominio .input-dominio {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 12px;
  color: #8395A7;
  line-height: 50px;
}

.data-campos-domain {
  display: grid;
  grid-template-columns: auto 160px;
  gap: 0 30px;
}

.crear-agregar-subdominio {
  display: none;
  justify-content: space-between;
  align-items: center;
}
.crear-agregar-subdominio .btn-agregar-otro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.radio-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border: 2px solid #3345D7;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #fff;
  border: 2px solid #3345D7;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3345D7;
}

.ver-planes {
  margin-top: 50px;
}

/* ----------------------------- Personalización ---------------------------- */
.panel-personalizacion {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel-personalizacion__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 125px;
  height: 20px;
  background: url("../multimedia/logo.svg") no-repeat;
  background-size: cover;
}
.panel-personalizacion__avance {
  display: flex;
  flex-direction: row;
  width: 131px;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.panel-personalizacion__avance::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background-color: #3345D7;
  z-index: 1;
}
.panel-personalizacion__circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #3345D7;
  z-index: 3;
}
.panel-personalizacion__circle--active {
  background-color: #3345D7;
}
.panel-personalizacion__title {
  font-family: 600;
  font-size: 32px;
  margin: 60px 0 37px 0;
}
.panel-personalizacion__title span {
  color: #2E40B4;
}
.panel-personalizacion__contenedorImg {
  display: flex;
}
.panel-personalizacion__drag {
  width: 111px;
  height: 111px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  margin-right: 20px;
  padding: 11px;
  cursor: pointer;
  border: 2px solid #C8D6E5;
  position: relative;
}
.panel-personalizacion__drag:hover {
  border: 2px solid #3345D7;
}
.panel-personalizacion__drag:hover p {
  color: #3345D7;
}
.panel-personalizacion__cubierta {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  padding: 3px;
  box-sizing: content-box;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}
.panel-personalizacion__cubierta:hover {
  opacity: 1;
}
.panel-personalizacion__cubierta--active {
  border: 2px solid #3345D7 !important;
  opacity: 1 !important;
}
.panel-personalizacion .border.active::after {
  content: "";
  border: 2px solid #3345D7 !important;
  opacity: 1 !important;
  width: 108px;
  height: 108px;
  position: absolute;
  top: -3px;
  left: -3px;
  border-radius: 999px;
}
.panel-personalizacion__img {
  width: 100px;
  height: 100px;
}
.panel-personalizacion__parrafo {
  font-size: 10px;
  color: #222F3E;
}
.panel-personalizacion__boton {
  margin-top: 45px;
  display: inline-block;
  padding: 18px 70px;
  text-decoration: none;
  background-color: #3345D7;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  border: none;
}

.modal-body__slide {
  display: flex;
  overflow-x: hidden;
}

.form__botones-avatar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-cargar-imagen .form__botones {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.modal-subir-imagen .modal__title {
  margin-bottom: 30px;
}
.modal-subir-imagen .modal-content {
  padding: 30px;
  height: auto !important;
}
.modal-subir-imagen .modal__botones {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-subir-imagen .form__botones {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
}
.modal-subir-imagen .form__botones input {
  margin: 0 !important;
}

.panel-personalizacion__drag {
  width: 100px;
  height: 100px;
  position: relative;
}
.panel-personalizacion__drag .new-avatar {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  position: absolute;
  top: 1px;
  left: 1px;
}
.panel-personalizacion__drag img {
  width: 120px;
  object-fit: cover;
  outline: none;
}

.panel-personalizacion__drag-img {
  display: none;
}

/* -------------------------------- Register -------------------------------- */
.register {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.register__info {
  min-width: 70%;
  max-width: 70%;
  color: #222F3E;
  overflow: hidden;
}
.register__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
.register__subtitle {
  text-align: start;
  font-weight: 400;
  font-size: 16px;
  color: #8395A7;
}
.register__lastmsg {
  text-align: center;
}
.register__register {
  color: #3345D7;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
}

.card-social {
  margin: 40px 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-social__item {
  width: 30%;
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.card-social__item--face {
  background-color: #3A559F;
}
.card-social__item--google {
  border: 1px solid #8395A7;
}
.card-social__item--linkedin {
  background-color: #0084B1;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.form__cont-input--fullname {
  position: relative;
  margin-bottom: 25px;
  width: 48%;
  transition: 0.3s ease;
}
.form__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form__input:focus, .form__input:valid {
  border: 2px solid #7062D4;
}
.form__input:focus + span, .form__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form__input:active {
  border: 1px solid #7062D4;
}
.form__cont-input--error {
  margin-bottom: 45px;
}
.form__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form__cont-input--error .form__input:focus, .form__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form__cont-input--error .form__input:focus + .form__text-help, .form__cont-input--error .form__input:valid + .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #EE5253;
}
.form__cont-input--error .form__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253;
  visibility: visible;
  opacity: 1;
}
.form__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
  font-size: 14px;
}
.form__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.form__input-eye::after {
  content: "";
  color: #8395A7;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}
.form__input-eye--active::after {
  content: "";
}
.form__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  margin: 0 auto 40px auto;
  padding: 18px 90px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.terminos {
  margin-bottom: 30px;
}
.terminos a {
  color: #3D89F9;
}
.terminos label {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
}
.terminos input {
  margin-right: 10px;
}

/* ------------------------------ VerificacIón ------------------------------ */
.panel-verificacion {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 54% auto;
}
.panel-verificacion__content {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
}
.panel-verificacion__info {
  padding: 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel-verificacion__mensaje {
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.panel-verificacion__icon {
  font-size: 55px;
  padding: 30px 0;
}
.panel-verificacion__title, .panel-verificacion__subtitle {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.panel-verificacion__subtitle {
  font-size: 18px;
}
.panel-verificacion__texto {
  text-align: center;
  font-size: 14px;
}
.panel-verificacion__boton {
  text-decoration: none;
  min-width: 245px;
  text-align: center;
  padding: 18px 62px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}
.panel-verificacion__boton--transparent {
  background-color: #fff;
  border: 2px solid #3345D7;
  color: #3345D7;
}
.panel-verificacion__boton--blue {
  background-color: #3345D7;
  border: 2px solid #3345D7;
  color: #fff;
}

.form-verificacion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.form-verificacion__group {
  border-bottom: 2px solid #3345D7;
  width: 70px;
  height: 107px;
  position: relative;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.form-verificacion__btn {
  width: 100%;
  margin-top: 66px;
  display: flex;
  justify-content: center;
}
.form-verificacion__input {
  width: 100%;
  height: 70%;
  border: none;
  text-align: center;
  font-size: 76px !important;
  font-weight: 700;
  color: #222F3E;
  outline: none;
  padding: 0 !important;
}
.form-verificacion__input::-webkit-inner-spin-button, .form-verificacion__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-verificacion__input::placeholder {
  opacity: 0.1;
}
.form-verificacion__submit {
  background-color: #3345D7;
  border: none;
  border-radius: 60px;
  margin: 0 auto 40px auto;
  padding: 18px 90px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

/* ------------------------------ registro init ----------------------------- */
.panel-registro-init {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel-registro-init__title {
  font-family: 600;
  font-size: 32px;
  margin-bottom: 38px;
}
.panel-registro-init__title span {
  color: #2E40B4;
}
.panel-registro-init__lista {
  list-style: none;
  margin: 25px 0;
}
.panel-registro-init__parrafo {
  width: 514px;
}
.panel-registro-init__boton {
  margin-top: 45px;
  display: inline-block;
  padding: 18px 70px;
  text-decoration: none;
  background-color: #3345D7;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

/* -------------------------------- Conocerte ------------------------------- */
.panel-conocerte {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel-conocerte__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 127px;
  height: 20px;
  background: url("../multimedia/logo.svg");
  background-size: 100%;
}
.panel-conocerte__avance {
  display: flex;
  flex-direction: row;
  width: 131px;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.panel-conocerte__avance::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background-color: #3345D7;
  z-index: 1;
}
.panel-conocerte__circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #3345D7;
  z-index: 3;
}
.panel-conocerte__circle--active {
  background-color: #3345D7;
}
.panel-conocerte__title {
  font-family: 600;
  font-size: 32px;
  margin: 60px 0 0 0;
}
.panel-conocerte__subtitle {
  font-weight: 600;
  font-size: 18px;
  margin: 23px 0 29px 0;
}

.form-conocerte {
  width: 100%;
}
.form-conocerte .form {
  height: 300px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.form-conocerte .form__group {
  position: relative;
  margin-bottom: 17px;
}
.form-conocerte .form__parrafo {
  width: 30px;
  padding-left: 35px;
  cursor: pointer;
  z-index: 3;
}
.form-conocerte .form__parrafo:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3345D7;
  cursor: pointer;
  z-index: 1;
}
.form-conocerte .form__parrafo:after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #3345D7;
  cursor: pointer;
  display: none;
  z-index: 1;
}
.form-conocerte .form__input {
  display: none;
}
.form-conocerte .form__input:checked + .form__parrafo:after {
  display: block;
}
.form-conocerte .form__submit {
  padding: 18px 70px;
  margin-top: 83px;
  border: none;
  background-color: #C8D6E5;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  margin-left: 0;
}
.form-conocerte .form__submit--active {
  background-color: #3345D7;
  color: #fff;
  cursor: pointer;
}

/* -------------------------------- Opciones -------------------------------- */
svg .a {
  fill: #fff;
}
svg .b {
  -webkit-clip-path: url(#a);
          clip-path: url(#a);
}
svg .c {
  fill: #1ab11f;
}
svg .d {
  fill: #262626;
}
svg .e {
  fill: #dc0d18;
}

.panel-opciones {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel-opciones__avance {
  display: flex;
  flex-direction: row;
  width: 131px;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.panel-opciones__avance::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  background-color: #3345D7;
  z-index: 1;
}
.panel-opciones__circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #3345D7;
  z-index: 3;
}
.panel-opciones__circle--active {
  background-color: #3345D7;
}
.panel-opciones__title {
  font-family: 600;
  font-size: 32px;
  margin: 60px 0 0 0;
}
.panel-opciones__subtitle {
  font-weight: 600;
  font-size: 14px;
  margin: 23px 0 29px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.panel-opciones__subtitle:before {
  content: "<";
  font-weight: 500;
  font-size: 26px;
  margin-right: 10px;
}

.form-opciones .form {
  height: 300px;
  display: grid;
  grid-template-columns: 1fr;
}
.form-opciones .form__group {
  display: flex;
  gap: 30px;
}
.form-opciones .form__click {
  position: relative;
  height: 50px;
  margin-right: 30px;
}
.form-opciones .form .main-dropdown {
  position: relative;
  width: auto !important;
}
.form-opciones .form .main-dropdown--small {
  width: 260px;
  height: 50px;
}
.form-opciones .form .main-dropdown--small .list {
  width: 260px;
}
.form-opciones .form .main-dropdown--large {
  width: auto;
  padding-right: 30px;
}
.form-opciones .form .main-dropdown--large .list {
  width: auto;
}
.form-opciones .form .main-dropdown--inidcativo {
  width: 150px;
}
.form-opciones .form .main-dropdown--inidcativo .list {
  width: 150px;
}
.form-opciones .form__cont-input {
  width: 260px;
  position: relative;
  transition: 0.3s ease;
  transition: 1s ease-out;
}
.form-opciones .form__cont-input--off {
  display: none;
}
.form-opciones .form__cont-input--active {
  display: block;
}
.form-opciones .form__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form-opciones .form__input + span {
  color: #8395A7;
}
.form-opciones .form__input::-webkit-inner-spin-button, .form-opciones .form__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-opciones .form__input:focus, .form-opciones .form__input:valid {
  border: 2px solid #7062D4;
}
.form-opciones .form__input:focus + span, .form-opciones .form__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form-opciones .form__input:active {
  border: 1px solid #7062D4;
}
.form-opciones .form__input--small {
  width: 260px;
}
.form-opciones .form__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  display: block;
  background-color: #fff;
  font-size: 14px;
}
.form-opciones .form__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form-opciones .form__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
  font-size: 12px;
}
.form-opciones .form__cont-input--error {
  margin-bottom: 45px;
}
.form-opciones .form__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form-opciones .form__cont-input--error .form__input:focus, .form-opciones .form__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form-opciones .form__cont-input--error .form__input:focus .form__text-help, .form-opciones .form__cont-input--error .form__input:valid .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 12px;
  color: #EE5253;
}
.form-opciones .form__cont-input--error .form__text-help {
  top: 15px;
  left: 20px;
  color: #EE5253 !important;
}
.form-opciones .form__cont-input--error .form__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253;
  visibility: visible;
  opacity: 1;
}
.form-opciones .form__submit {
  padding: 0 70px;
  margin: 20px 0 0 0;
  border: none;
  height: 56px;
  background-color: #3345D7;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
}

.dropdown__cantidad-list {
  width: 260px !important;
}

.industria-partner .main-dropdown__title {
  width: 260px;
}

/* --------------------------------- Loader --------------------------------- */
.panel {
  width: 100%;
  height: 100%;
  padding-left: 193px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.panel__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 95px;
  height: 23px;
  background-image: url("multimedia/logo.svg");
}
.panel__content {
  position: absolute;
  width: 640px;
  height: 300px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}
.panel__title {
  font-family: 600;
  font-size: 32px;
  margin-bottom: 40px;
}
.panel__loader {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #D6DAF7;
  border-top: 5px solid #3345D7;
  display: block;
}
.panel__loader--active {
  animation: loader 1.5s infinite;
}
.panel__loader--off {
  display: none;
}
.panel__check {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #3345D7;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 2s ease-out;
}
.panel__check--active {
  display: flex;
  transition: 2s ease-out;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------- Forgot --------------------------------- */
.panel-forgot {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 54% auto;
}
.panel-forgot__content {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
}
.panel-forgot__logo {
  position: absolute;
  width: 110px;
  height: 40px;
  top: 40px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.panel-forgot__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background: url("../multimedia/img/recuperar.png");
}
.panel-forgot__info {
  padding: 0 106px;
}
.panel-forgot__cont-recuperar {
  height: 100%;
  padding-top: 48px;
  position: relative;
}
.panel-forgot__back {
  color: #8395A7;
  text-decoration: none;
}

.form-forgot {
  height: 300px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.form-forgot__title {
  font-size: 32px;
  font-weight: 600;
}
.form-forgot__cont-input {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  transition: 0.3s ease;
}
.form-forgot__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #C8D6E5;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form-forgot__input:focus, .form-forgot__input:valid {
  border: 2px solid #7062D4;
}
.form-forgot__input:focus + span, .form-forgot__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form-forgot__input:active {
  border: 1px solid #7062D4;
}
.form-forgot__cont-input--error {
  margin-bottom: 45px;
}
.form-forgot__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form-forgot__cont-input--error .form__input:focus, .form-forgot__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form-forgot__cont-input--error .form__input:focus + .form__text-help, .form-forgot__cont-input--error .form__input:valid + .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #EE5253;
}
.form-forgot__cont-input--error .form__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253;
  visibility: visible;
  opacity: 1;
}
.form-forgot__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
}
.form-forgot__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form-forgot__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.form-forgot__submit {
  background-color: #C8D6E5;
  border: none;
  border-radius: 60px;
  margin: 0 auto 40px auto;
  padding: 18px 90px;
  font-weight: 700;
  color: #8395A7;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s ease-in;
}
.form-forgot__submit.active {
  background-color: #3345D7;
  color: #fff;
}

/* --------------------------------- Mensaje -------------------------------- */
.panel-mensaje {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 54% auto;
}
.panel-mensaje__content {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
}
.panel-mensaje__logo {
  position: absolute;
  width: 110px;
  height: 40px;
  top: 40px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.panel-mensaje__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url("../multimedia/img/recuperar.png");
}
.panel-mensaje__info {
  padding: 0 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel-mensaje__mensaje {
  height: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.panel-mensaje__icon {
  font-size: 55px;
  margin: 30px 0;
}
.panel-mensaje__title, .panel-mensaje__subtitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.panel-mensaje__subtitle {
  font-size: 18px;
  margin-bottom: 15px;
}
.panel-mensaje__texto {
  text-align: center;
  font-size: 14px;
}
.panel-mensaje__boton {
  text-decoration: none;
  min-width: 245px;
  text-align: center;
  padding: 18px 62px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 14px;
}
.panel-mensaje__boton--transparent {
  background-color: #fff;
  border: 2px solid #3345D7;
  color: #3345D7;
  margin: 50px 0 20px 0;
}
.panel-mensaje__boton--blue {
  background-color: #3345D7;
  border: 2px solid #3345D7;
  color: #fff;
}

/* ------------------------------- Newpassword ------------------------------ */
.panel-newpassword {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 54% auto;
}
.panel-newpassword__content {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
}
.panel-newpassword__logo {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
}
.panel-newpassword__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url("../multimedia/img/recuperar.png");
}
.panel-newpassword__info {
  padding: 0 105px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel-newpassword__mensaje {
  height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.5s ease;
}
.panel-newpassword__icon {
  font-size: 55px;
}
.panel-newpassword__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.form-newpassword {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.5s ease;
}
.form-newpassword__cont-input {
  position: relative;
  width: 100%;
  transition: 0.3s ease;
  margin-bottom: 30px;
}
.form-newpassword__input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-size: 18px;
  outline: none;
  border: 1px solid #222F3E;
  border-radius: 5px;
  transition: 0.3s linear;
}
.form-newpassword__input:focus, .form-newpassword__input:valid {
  border: 2px solid #7062D4;
}
.form-newpassword__input:focus + span, .form-newpassword__input:valid + span {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #7062D4;
}
.form-newpassword__input:active {
  border: 1px solid #7062D4;
}
.form-newpassword__cont-input--error {
  margin-bottom: 45px;
}
.form-newpassword__cont-input--error .form__input {
  border: 1px solid #EE5253;
}
.form-newpassword__cont-input--error .form__input:focus, .form-newpassword__cont-input--error .form__input:valid {
  border: 2px solid #EE5253;
}
.form-newpassword__cont-input--error .form__input:focus + .form__text-help, .form-newpassword__cont-input--error .form__input:valid + .form__text-help {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
  color: #EE5253;
}
.form-newpassword__cont-input--error .form__text-err {
  position: absolute;
  bottom: -30px;
  color: #EE5253 !important;
  visibility: visible;
  opacity: 1;
}
.form-newpassword__text-help {
  position: absolute;
  top: 15px;
  left: 20px;
  transition: 0.5s;
  pointer-events: none;
  padding: 0;
  background-color: #fff;
}
.form-newpassword__text-help.active {
  padding: 2px 5px;
  top: -12px;
  left: 12px;
  font-size: 13px;
}
.form-newpassword__text-err {
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
.form-newpassword__input-eye::after {
  content: "";
  color: #8395A7;
  position: absolute;
  right: 15px;
  top: 14px;
  margin: auto 0;
  height: 20px;
  font-size: 20px;
  font-family: "icomoon";
  cursor: pointer;
}
.form-newpassword__input-eye--active::after {
  content: "";
}
.form-newpassword__parrafo {
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  color: #8395A7;
  margin: 0 0 30px 0;
}
.form-newpassword__submit {
  background-color: #C8D6E5;
  border: none;
  border-radius: 25px;
  margin: 0 auto;
  padding: 18px 90px;
  font-weight: 700;
  font-size: 14px;
  color: #8395A7;
  cursor: pointer;
}
.form-newpassword__submit--active {
  background-color: #3345D7;
  color: #fff;
}

/* --------------------------- Password modificado -------------------------- */
.panel-password-modificado {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 54% auto;
}
.panel-password-modificado__content {
  width: 100%;
  height: 100%;
  position: relative;
  color: white;
  background: violet;
}
.panel-password-modificado__logo {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 3;
}
.panel-password-modificado__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../multimedia/img/recuperar.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.panel-password-modificado__info {
  padding: 0 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.panel-password-modificado__circle {
  width: 70px;
  height: 70px;
}
.panel-password-modificado__title {
  font-size: 32px;
  font-weight: 600;
  margin: 42px 0 20px 0;
}
.panel-password-modificado__parrafo {
  font-size: 16px;
  font-weight: 400;
}

/* ----------------------------- Elininar cuenta ---------------------------- */
.cuenta-eliminada {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cuenta-eliminada h2 {
  font-size: 48px;
  margin-bottom: 30px;
}
.cuenta-eliminada p {
  margin-bottom: 15px;
}
.cuenta-eliminada a {
  color: #3345D7 !important;
  font-weight: 600;
  font-size: 14px !important;
}

/* ---------------------------- Modales bootstrap --------------------------- */
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  align-items: center;
    font-size: 14px!important;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid #d8d8d8;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}