@charset "utf-8";
body {
  color: #fff;
  font: 13px "Arial", sans-serif;
  margin: 0;
  background: rgb(57, 59, 94);
  background: -moz-linear-gradient(
    top,
    rgb(57, 59, 94) 1%,
    rgb(34, 35, 56) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgb(57, 59, 94) 1%,
    rgb(34, 35, 56) 100%
  );
  background: linear-gradient(
    to bottom,
    rgb(57, 59, 94) 1%,
    rgb(34, 35, 56) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#393b5e', endColorstr='#222338', GradientType=0);
  background-repeat: no-repeat;
  background-color: #222338;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  list-style: none;
  margin: 0;
  padding: 0;
}

b,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table td,
table th {
  border: 1px solid #222338;
  padding: 15px;
}

table th {
  font-size: 14px;
}

.post_home em,
.post_home strong,
.post_home mark,
.post_home del,
.post_home ins,
.post_home q,
.post_home abbr,
.post_home cite,
.post_home u,
.post_home a,
.post_home b,
.post_home blockquote {
  font-size: 17px;
}
.post_home sup,
.post_home sub,
.post_home small {
  font-size: 11px;
}

.post_home code,
.post_home pre {
  font-size: 12px;
}

body input {
  color: #000;
}

.container {
  width: 1100px;
  max-width: 100%;
  margin: auto;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 550px) {
  #main-header {
    height: 100px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
  }
}

#main-header {
  background: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  height: 80px;
}

.wrapper {
  display: flex;
}

#sidebar {
  width: 280px;
  flex: none;
  background: rgba(0, 0, 0, 0.5);
}

#sidebar ul li a {
  display: flex;
  padding: 15px 20px;
  position: relative;
}

#sidebar ul li.active a,
#sidebar ul li a:hover {
  background: #3d3f65;
}

#sidebar ul li.active a::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.5);
}

#sidebar ul li a div:nth-child(2) {
  width: 100%;
  text-align: right;
}

#sidebar ul li a strong,
#sidebar ul li a span {
  display: block;
  margin-bottom: 10px;
}

#sidebar ul li a strong {
  font-size: 16px;
}

#sidebar ul li a img {
  width: 30px;
  height: 35px;
  display: inline-block;
  margin-right: 15px;
}

#bcontent {
  padding: 20px 0 20px 35px;
  width: 100%;
}

h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

form {
  position: relative;
}

.info-xploit input[type="text"],
.info-xploit input[type="date"],
.info-xploit select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-family: inherit;
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.25);
}

form input[type="submit"],
.create-xploit {
  background: #1380b0;
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  width: 135px;
}

.info-xploit {
  margin-bottom: 30px;
  margin-top: 30px;
}

.info-xploit td:nth-child(1) {
  width: 150px;
  font-weight: bold;
}

.xploits-list table td {
  text-align: center;
}

.xploits-list table tbody tr td:nth-child(1) {
  text-align: center;
}

/* .xploits-list table tbody tr:nth-child(even) td {
    background: #353757
} */

.advanced {
  font-size: 15px;
  position: relative;
  display: inline-block;
  margin: 10px 0;
}

.advanced::before {
  content: "+";
  color: #1ea4df;
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  line-height: 0;
}

.xtab {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.xtab li {
  float: left;
}

.xtab li a {
  display: block;
  padding: 10px 15px;
}

.xtab li.active a,
.xtab li a:hover {
  background: #1380b0;
}

.post_home {
  background: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 20px;
  margin: 30px 0;
  line-height: 1.9;
  width: 100%;
}

.post_home h1 {
  font-size: 30px;
  margin-bottom: 30px;
}

.post_home h2 {
  font-size: 25px;
}

.post_home h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.post_home h4 {
  font-size: 17px;
  margin-bottom: 20px;
}

.content-page {
  margin: 35px 0;
}

.form {
  width: 400px;
  max-width: 100%;
  margin: auto;
}

.form h1 {
  text-align: center;
  margin-bottom: 30px;
}

.form input,
.form select {
  padding: 14px;
  border-radius: 4px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  width: 100%;
  outline: none;
  border: none;
}

.aligncenter {
  text-align: center;
}

/* menu */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: none;
  flex-direction: column;
  align-items: center;
}

.nav-menu .success {
  margin-bottom: 5px;
}

.info-xploit input::placeholder {
  color: #c5c5c5;
}

.nav-menu li {
  margin: 0 5px;
  padding: 10px 30px;
  text-align: center;
}

.nav-menu li a {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-mobile {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 0;
}

@media (min-width: 640px) {
  #main-header {
    height: 110px;
    display: flex;
    align-items: center;
  }
  .header {
    flex-direction: row;
  }
  .nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: end;
  }
  .nav-menu .success {
    margin-bottom: 0px;
  }
  .nav-mobile {
    display: none;
  }
}

.light {
  background-color: #f8f9fa;
}

.light:hover {
  background-color: #e9ecef;
}

.success {
  background-color: #198754;
}

.success:hover {
  background-color: #146c43;
}

.text-black {
  color: #000;
}

.text-light {
  color: #f8f9fa;
}

.welcome-user {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.welcome-user .user {
  display: flex;
  align-items: center;
}

.welcome-user h3 {
  font-size: 24px;
}

.text-success {
  color: #198754;
}

.text-danger {
  color: #dc3545;
}

.title-change-password {
  margin: 20px 0 20px;
  font-size: 20px;
}

/*   */

.u-create-exploit {
  padding: 15px;
  display: flex;
  justify-content: center;
}

.act-btn-blog {
  font-weight: bold;
  padding: 15px 50px;
  font-size: 30px;
  background-color: #1380b0;
  border-radius: 10px;
  color: white;
  display: flex;
  cursor: pointer;
  align-items: center;
}

.act-btn-blog:hover {
  background-color: #276d8c;
}

.modal li {
  list-style-type: inherit;
  font-size: 24px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

/* modal */

.modal-form {
  display: flex;
  align-items: start;
}

.modal-blogs {
  overflow: hidden;
  max-height: 206px;
  flex: 1 0 auto;
  overflow-y: auto;
  padding: 7px;
}

.modal-saves {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-add {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.modal {
  max-width: 800px !important;
  max-height: 800px;
  padding: 2rem !important;
}

.modal td {
  border: none;
  background: #fff;
}

.modal ol {
  margin: 2rem 0px;
}

.modal video {
  width: 500px;
  height: 250px;
  display: block;
  margin: 0 auto;
}

.table-modal {
  display: block;
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #ffffff;
}

.table-modal th,
.table-modal td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e3e6f0;
}

.inblg {
  position: relative;
  margin-bottom: 10px;
}

.blog-input-url {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  display: block;
  width: 100%;
  color: #6e707e;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d1d3e2;
}

.iblg_delete {
  position: absolute;
  right: 0;
  top: 0;
  background: #ffb4b4;
  color: #821b1b;
  font-size: 14px;
  padding: 7px 10px;
  cursor: pointer;
}

.btn-blog {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.35rem;
  color: #fff;
  background-color: #858796;
  border-color: #858796;
  cursor: pointer;
}

.btn-save-blog {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.35rem;
  color: #fff;
  background-color: #1380b0;
  border-color: #1380b0;
}

.submit-blog {
  padding: 0 13rem;
  margin-top: 20px;
}

.intro-video {
  width: 500px;
  height: 250px;
  display: block;
  margin: 2rem auto;
}

.buttom_whatsapp {
  position: fixed;
  bottom: -20px;
  right: -20px;
  z-index: 999;
}

.whatsapp {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  bottom: 62px;
  right: 50px;
  background-color: #25d366;
  border-radius: 999px;
  text-align: center;
  font-size: 34px;
  z-index: 100;
  margin-top: 13px;
}

.whatsapp_help {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  bottom: 30px;
  right: 50px;
  background-color: #25d366;
  border-radius: 999px;
  text-align: center;
  font-size: 34px;
  z-index: 100;
  margin-top: 13px;
}

.help-wha {
  font-size: 14px;
  position: absolute;
  right: -10px;
  top: 43px;
}
.help-wha-text::after {
  border: 9px solid white;
  content: "";
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  position: absolute;
  bottom: -18px;
  right: 20px;
}
.help-wha-text {
  font-size: 14px;
  position: absolute;
  right: -10px;
  white-space: nowrap;
  top: -60px;
  background: white;
  padding: 15px;
  border-radius: 0.5rem;
  color: #25263e;
}

.mod-inf {
  padding: 2rem;
  text-align: center;
  line-height: 1.5rem;
}
.mod-inf h4 {
  font-size: 16px;
}
.mod-inf span {
  font-size: 14px;
}
.mod-inf span a {
  color: #1380b0;
  text-decoration: underline;
}
.mod-inf span a:hover {
  color: #353757;
}

/*                */

@media (max-width: 768px) {
  .wrapper {
    display: block;
  }
  #main > .container {
    padding: 0px;
  }
  .content-page > .form {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  #bcontent {
    padding-left: 20px;
    padding-right: 20px;
  }
  #sidebar {
    width: 100%;
    background: none;
  }
  #sidebar ul {
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 20px;
    background: transparent;
    font-size: 0;
    /* animation: cambio 15s infinite alternate linear; */
  }
  #sidebar ul:hover {
    animation-play-state: paused;
  }
  #sidebar ul::-webkit-scrollbar {
    display: none;
  }
  #sidebar ul li {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  #sidebar ul li a strong {
    font-size: 14px;
  }
  #sidebar ul li a span {
    font-size: 12px;
  }
  #sidebar ul li.active a::after {
    transform: none;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    text-align: center;
    width: 10px;
    border: 10px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.5);
    top: initial;
    bottom: -20px;
  }
  .post_home {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 420px) {
  #sidebar ul li a {
    padding: 10px 15px 0;
  }
  #bcontent {
    padding-left: 15px;
    padding-right: 15px;
  }
  .info-xploit table td {
    display: block;
    width: 100% !important;
    border: 1px solid inherit !important;
    border-bottom: none !important;
    background: transparent;
    text-align: left !important;
  }
  .info-xploit table td:nth-child(odd) {
    background: transparent;
    border-bottom: 1px solid #222338;
    font-weight: normal;
  }
  .info-xploit table tfoot td {
    padding: 0;
    border: none !important;
    padding-top: 5px;
  }
  .post_home {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0;
  }
}

.fire {
  display: flex;
  background-size: 1000px 200px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}

.Blazing {
  font-size: 35px;
  line-height: 50px;
  min-width: 50px;
  outline: none;
  text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange,
    4px -5px 6px yellow, -4px -10px 10px yellow, 0 -10px 30px yellow;
  animation: 2s Blazing infinite alternate linear;
}

@keyframes Blazing {
  0% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow,
      0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
  }
  25% {
    text-shadow: 0 3px 20px red, 0 0 30px red, 0 0 20px orange, 0 0 5px yellow,
      -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow;
  }
  50% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange,
      -2px -5px 5px yellow, 3px -10px 10px yellow, -4px -15px 20px yellow,
      2px -20px 30px rgba(255, 255, 0, 0.5);
  }
  75% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 -5px 10px orange,
      3px -5px 5px yellow, -4px -10px 10px yellow,
      2px -20px 30px rgba(255, 255, 0, 0.5), 0px -25px 40px rgba(255, 255, 0, 0);
  }
  100% {
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange, 0 0 0 yellow,
      0 0 5px yellow, -2px -5px 5px yellow, 4px -10px 10px yellow;
  }
}

@media (max-width: 768px) {
  .Blazing {
    font-size: 25px;
    line-height: 50px;
    min-width: 50px;
    outline: none;
    text-shadow: 0 3px 20px red, 0 0 20px red, 0 0 10px orange,
      4px -5px 6px yellow, -4px -10px 10px yellow, 0 -10px 30px yellow;
    animation: 2s Blazing infinite alternate linear;
  }
  .fire {
    display: flex;
    margin-top: 10px;
    background-size: 1000px 200px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    justify-content: center;
  }
}

.dialogverde > a,
.dialogrojo > a,
.dialogazul > a,
.dialogamarillo > a,
.dialognegro > a {
  color: inherit;
  font-weight: bold;
}
.dialogverde::before,
.dialogrojo::before,
.dialogazul::before,
.dialogamarillo::before,
.dialognegro::before {
  font-size: 1.1rem;
  margin-right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.dialogverde::before {
  content: "\f058";
}

.dialogamarillo::before {
  content: "\f06a";
}

.dialogrojo::before {
  content: "\f7b9";
}

.dialogazul::before {
  content: "\f129";
}

.dialogverde {
  background: #d1fae5;
  color: #047857;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dialogrojo {
  color: rgba(185, 28, 28, 1);
  background-color: rgba(254, 226, 226, 1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dialogazul {
  color: rgba(29, 78, 216, 1);
  background-color: rgba(219, 234, 254, 1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dialogamarillo {
  color: #b45309;
  background-color: rgba(254, 243, 199, 1);
  background: #ffffd8;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dialognegro {
  border: 1px solid #ffffff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.alert2 {
  position: relative;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: flex;
  justify-content: start;
  align-items: center;
}

.alert2 h4 {
  font-size: 18px;
}

.underline {
  text-decoration: underline;
}

.danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-heading i {
  font-size: 2rem;
}

.alert-body {
  padding: 0 1rem;
  line-height: 1.3rem;
}

.alert-body p {
  display: inline;
  font-size: 16px;
}
.alert-info {
  background-color: green;
  padding: 1rem;
  color: #ffffff;
}

.checkout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.w-6 {
  width: 2.5rem;
}

.h-6 {
  height: 2.5rem;
}

.nav-drill {
  display: block !important;
  position: absolute;
  top: 80px;
  left: 0;
  background: #393b5e;
  width: 100%;
  padding: 6px 10px;
  z-index: 1000;
  height: 100vh;
}
.nav-drill {
  transform: translateX(0);
}
.nav-drill .nav-item:not(:last-child) {
  border-bottom: solid 1px #494c85;
}

.nav-drill .nav-link {
  background-color: transparent;
  display: block;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300;
}

.cardOffert {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #ffffff;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 20px 15px 0 15px;
  padding: 40px 40px 40px 40px;
  border-radius: 10px;
}

.cardOffertContent {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
}

.cardOffertContent h4 {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Raleway", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5em;
}

.cardOffertPrice {
  text-align: center;
}

.cardOffertValue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #23ab70;
  font-family: "Lora", Sans-serif;
  font-size: 64px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
}

.cardOffert-number-prefix {
  white-space: pre-wrap;
  text-align: right;
  color: #23ab70;
  font-family: "Lora", Sans-serif;
  font-size: 64px;
  font-weight: 700;
  justify-content: center;
}

.cardOffert-numbe {
  color: #23ab70;
  font-family: "Lora", Sans-serif;
  font-size: 64px;
  font-weight: 700;
}

.cardOffert-counter-title {
  color: #fff;
  font-family: "Raleway", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.cardOffertContentDetails-container {
  margin: 0 0 20px 0;
  padding: 0 0 0 0;
}

.cardOffertContentDetails-list-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cardOffertContentDetails-list-items li {
  padding-left: 1.3em;
}
.cardOffertContentDetails-list-items li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}

.cardOffertContentDetails-list-item {
  font-family: "Raleway", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  padding-bottom: calc(10px / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  font-size: inherit;
}

.cardOffertContentDetails-list-text {
  color: #fff;
  padding-left: 0;
}

.cardOffertContentFooter {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.cardOffertContentFooter a {
  font-family: "Raleway", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 0.5px;
  fill: #fff;
  color: #23ab70;
  background-color: rgba(255, 255, 255, 0);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #23ab70;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 0 0 0 #fff;
  padding: 15px 35px 15px 35px;
}

.button-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
  display: inline-block;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.text-mut {
  font-size: 80%;
  font-weight: 400;
  color: #608ee1 !important;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.fz-20 {
  font-size: 20px;
}
.fz-16 {
  font-size: 16px;
}
.fz-18 {
  font-size: 18px;
}
.justify-content-center {
  justify-content: center;
}

/* @media (min-width: 550px) {
  .flex {
    flex-direction: row;
  }
} */

.list-g {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.li-item {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  border: 1px solid rgba(241, 255, 239);
}

.button-pay {
  background: #1380b0;
  color: #fff;
  border: none;
  font-weight: bold;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  width: 135px;
}

.cardOffert.color {
  background: #23ab70;
  color: #fff;
  border-color: #198754;
}

.color .cardOffertContent h4,
.color .cardOffert-counter-title,
.color .cardOffertContentDetails-list-text,
.color .cardOffertValue,
.color .cardOffert-number-prefix,
/*Facebook*/
.facebook .cardOffertContent h4,
.facebook .cardOffert-counter-title,
.facebook .cardOffertContentDetails-list-text,
.facebook .cardOffertValue,
.facebook .cardOffert-number-prefix {
  color: #fff !important;
}

.color .cardOffertContentFooter a {
  background-color: #fff;
  color: #23ab70;
}
.cardOffert.facebook {
  background: #238caa;
  border-color: #238caa;
}

.facebook .cardOffertValue {
  font-size: 27px;
  align-items: center;
  display: flex;
}

.facebook .cardOffertContentFooter a {
  color: white;
  border-width: 0px;
  font-size: 32px;
}
.facebook .cardOffertContentFooter a img {
  width: 32px;
  height: 32px;
}

#fb-share-button {
  background: #3b5998;
  border-radius: 3px;
  font-weight: 600;
  padding: 15px 35px 15px 35px;
  position: static;
  text-align: center;
}

#fb-share-button:hover {
  cursor: pointer;
  background: #213a6f;
}

#fb-share-button svg {
  width: 18px;
  fill: white;
  vertical-align: middle;
  border-radius: 2px;
  display: inline-block;
}

#fb-share-button span {
  vertical-align: middle;
  color: white;
  font-size: 16px;
  padding: 0 3px;
}
.w-auto {
  width: auto !important;
}

.refresh {
  background: #222337;
  padding: 10px;
  color: #1ed660;
  font-weight: bold;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: #fff;
}

.dataTables_wrapper {
  margin-top: 30px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #fff !important;
}

.dataTables_wrapper .dataTables_length select option {
  color: #000;
}

.dataTables_wrapper table {
  padding-top: 20px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #181928 !important;
  color: #fff !important;
}

@keyframes cambio {
  0% {
    margin-left: 0;
  }
  20% {
    margin-left: 0;
  }

  25% {
    margin-left: -100%;
  }
  45% {
    margin-left: -100%;
  }

  50% {
    margin-left: -200%;
  }
  70% {
    margin-left: -200%;
  }

  75% {
    margin-left: -300%;
  }
  100% {
    margin-left: -300%;
  }
}
.active-video {
  border: 1px solid #fff;
}
@media (min-width: 768px) {
  .md\:w-108 {
    width: 42rem !important;
  }
  .md\:h-108 {
    height: 38rem !important;
  }
}

@media (max-width: 768px) {
  .copy-html-prem .swal-footer {
    display: flex;
    justify-content: center;
  }
}
.excel-btn {
  color: white !important;
  font-size: 1rem !important;
}

@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: none !important;
    text-align: right !important;
  }
}

@media screen and (max-width: 640px) {
  ._blog-prem {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.dtr-data {
  display: flex;
  flex-direction: column;
  gap: 0.5 rem;
}
.leading-1 {
  line-height: 0.2rem;
}

#closeBannerWs {
  font-size: 14px;
  position: absolute;
  right: 40px;
  white-space: nowrap;
  top: -156px;
  background: white;
  padding: 5px;
  color: #25263e;
}
.select2-selection--single {
  height: auto !important;
}
.state:checked {
  background-color: #22c55e; /* bg-green-500 */
}
.state:checked ~ span:last-child {
  --tw-translate-x: 1.75rem; /* translate-x-7 */
}
.use_chrome:checked {
  background-color: #22c55e; /* bg-green-500 */
}
.use_chrome:checked ~ span:last-child {
  --tw-translate-x: 1.75rem; /* translate-x-7 */
}

.comparativa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ventajas {
  padding: 10px;
  background-color: #d4edda; /* Color verde para las ventajas */
  border-radius: 8px;
}

.ventajas h2 {
  margin: 0;
  color: #155724; /* Color de texto para las ventajas */
}

.desventajas {
  padding: 10px;
  background-color: #f8d7da; /* Color rojo para las desventajas */
  border-radius: 8px;
}

.desventajas h2 {
  margin: 0;
  color: #721c24; /* Color de texto para las desventajas */
}

.desventajas ul,
.ventajas ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ventajas li,
.desventajas li {
  margin-bottom: 10px;
}

.ventajas li:before,
.desventajas li:before {
  content: "•";
  margin-right: 5px;
}

form input,
form select,
form option,
form textarea {
  color: #000;
}

.post_home h1 {
  font-size: 30px;
  line-height: 45px;
}
.post_home h2 {
  font-size: 26px;
  line-height: 39px;
}
.post_home h3 {
  font-size: 22px;
  line-height: 33px;
}

.post_home h4 {
  font-size: 19px;
  line-height: 28.5px;
}

.post_home p,
.post_home li {
  font-size: 17px;
  line-height: 20px;
}

.post_home p,
.post_home h1,
.post_home h2,
.post_home h3,
.post_home h4,
.post_home h5,
.post_home a,
.post_home strong,
.post_home li {
  white-space: normal;
  word-break: break-word;
}

.post_home p a,
.post_home h1 a,
.post_home h2 a,
.post_home h3 a,
.post_home h4 a,
.post_home h5 a,
.post_home li a {
  color: #21759b !important;
}
