
/*=============================================
=            Plans            =
=============================================*/

.landing-video-wrapper {
  position: relative;
  display: inline-flex;
}

.landing-video-wrapper video {
  border-radius: 8px;
  border: 1px solid var(--terciario, #2B3F63);
}

.landing-video-logo {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(17, 30, 46, 0.82);
  border: 1px solid var(--terciario, #2B3F63);
}

.landing-video-logo svg {
  width: 32px;
  height: 32px;
}


[class^="plan-card"]{
  padding: 21px;
  border-radius: 8px;
  border: 1px solid var(--terciario, #2B3F63);
  overflow: hidden;
  position: relative;
}

[class^="plan-card-s"]::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--cuaternario);
  z-index: -2;
}

[class^="plan-card"]::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100% 100% at 100% 100%, #4E8AFA 0%, rgba(78, 138, 250, 0.00) 100%);
  opacity: 0.5;
  z-index: -1;
}

.plan-card-choose-yours::after{
  opacity: 0.2;
  left: initial;
  right: 0;
  width: 50%;
}

/*=====  End of Plans  ======*/
