/*==============================================================================================================
// Nombre:					style.css
// Fecha creación:			15-Enero-2024
// Proyecto:				Kipcalm
// Autor:					Carlos Valladolid
// Descripción:			    Estilos para el sitio Web.
// Namespace:			    Kipcalm.Web.Pay.Demo
// Versión:				    1.0
//==============================================================================================================*/

.amountToPay {
    font-size: 1.2em;
}

body {
    font-size: 1rem; /* Adjust base font size if needed */
}

.container {
    padding: 15px; /* Adds padding to prevent content from sticking to the edges */
}

.fa-check {
    color: #007BFF;
    margin-right: 5px;
}

.final-user {
    font-weight: bold;
}

.footer {
    background-color: #3E3E3E;
    bottom: 0;
    height: 150px;
    margin-top: 35px;
    width: 100%;
}

.footer-image {
    text-align: center;
    padding: 25px 5px 5px 5px;
}

h2 {
    font-weight: bold;
}

h5 {
    color: #a0a0a0;
    font-family: Arial, Helvetica, sans-serif;
}

.list-group-item {
    background-color: transparent !important; /* Important is used to override Bootstrap's default styling */
    border: none !important; /* Optionally remove the borders as well */
    font-size: .9em;
    padding-bottom: 5px;
    padding-left: 0px;
    padding-top: 5px;
}

.plan-back {
    border-radius: 10px;
    background-color: #181888;
    color: #ffffff;
}

.plan-back:hover {
    background-color: #3030b6;
}

.plan-detail {
    font-size: .9em;
}

.plan-include {
    font-weight: bold;
}

.plan-name {
    font-size: 1.1em;
    font-weight: bold;
}

.plan-price {
    font-size: 1.8em;
    font-weight: bold;
}

.plan-per-month {
    font-size: .8em;
}

.quantity-box {
    width: 35%;
}

.quantity-to-pay {
    font-size: 1.2em;
    font-weight: bold;
}

.slogan-first {
    font-size: 2em;
    font-weight: bold;
}

.slogan-second {
    font-size: 1.5em;
}

.store-button {
    background-color: black;
    margin-right: 8px;
    vertical-align: middle;
}

.text-centered {
    text-align: center;
}

.text-color-gray {
    color: #666;
}

.text-color-gray-light {
    color: #999;
}

.text-color-gray-strong {
    color: #888;
}

body {
    background-color: #00002A;
    background-image: url('../../imagenes/image/kipcalm_background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.btn-red{
    background-color: #db0b0b; 
    width: 100%;
    border-radius: 50px;
    font-weight: bold;
    color: #ffffff;
}

.btn-red-form{
    background-color: #db0b0b;
    color: #ffffff;
}

.slider-text{
    color: #ffa9a9;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.slider-text {
    transition: opacity 0.3s ease-in-out;
}

.text-step{
    color: #ffffff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 250%;
}

.text-step-error{
    color: #db0b0b;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 250%;
}

.col-step{
    background-color: #ffffff;
    height: 10px;
    margin: 5px;
}

.col-step-active{
    background-color: red;
    height: 10px;
    margin: 5px;
}

.text-form{
    color: #ffffff!important;
    font-family: 'Poppins', sans-serif;
}

.icon-code-promo{
    background-color: #db0b0b;
    padding: 4px;
    border-radius: 4px;
    margin-left: -10px!important;
    border-style: solid;
    border-color: #ffffff!important;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.suscription-plan-card{
    background-color: #181888;
    color: #ffffff;
}

.divisor-plan {
    background-color: #ffffff;
    height: 3px;
    border: none;
}

.terms-conditions {
    color: #cccccc!important;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}

.openpay-logo{
    color: #5c5c5c;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}

.title-card{
    background-color: #db0b0b;
    font-size: 25px;
    color: #ffffff!important;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-radius: .25rem;
    padding-top: 2%;
    padding-left: 2%;
    padding-bottom: 0.1%;
    margin-bottom: 1%;
    text-align: center;
}

/* Estilo del overlay */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* encima de todo */
}

/* Spinner */
.spinner {
  border: 8px solid #f3f3f3; /* gris claro */
  border-top: 8px solid #3498db; /* azul */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animación de giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.app-description {
    max-width: 400px!important;
    line-height: 1.5;
    margin-bottom: 12px;
    word-wrap: break-word;
    margin-bottom: 10px;
}