
/*--------------------------------------------------------------
# Importando Hoas de Estilo CSS
--------------------------------------------------------------*/

@import url('../bootstrap/css/bootstrap.min.css');            /* Bootstrap  v5.3.3 */
@import url('../bootstrap-icons/font/bootstrap-icons.css');   /* font Awesome Ver. 5.13.0 web  */

/*--------------------------------------------------------------
# Estilo CSS
--------------------------------------------------------------*/

body {
  font-family: "Poppins", "Raleway", "Open Sans", "sans-serif";
  font-size: 16px;
  color: #0c0c0c;
  background: url("../img/insuco-fondo-bln.png") top center no-repeat;
  background-size: cover;
  position: relative;  
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

a {
  color: #000000;
  text-decoration: none;
}

.container {
  max-width: 1200px;
}

.header-info {
  max-width: 1200px;
}

a:hover {
  color: #0d6efd;
  text-decoration: none;
  font-weight: bold;
}

.alertDiv{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  height: 100px;
}

.card:hover {     
  cursor: pointer; 
  box-shadow:  0 8px 16px 0 rgba(0,0,0,0.2);
}

.spinner-box{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.radio-pay input[type="radio"] {
  appearance: none;
  -webkit-appearance:none;
  -moz-appearance: none;
}

.radio-pay label {
  height: 100px;
  width: 100%;
  border: 2px solid green;
  margin: auto;
  border-radius: 10px;
  position: relative;
  color: green;
  transition: 0.2s;
  cursor: pointer;
}

.radio-pay label:hover {
  background-color: rgb(159, 209, 159);
}

.radio-pay .bi{
  font-size: 80px;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -80%); 
}

.radio-pay label>span {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, 80%);
}

.radio-pay input[type="radio"]:checked + label {
	background-color: green;
	color: #ffffff;
	box-shadow: 0 15px 45px rgb(24,249,141,0.2);
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.modal-content {
  color: #000;
  font-size: 14px;
  background: rgba(232, 232, 232, 0.9);
  background-size: cover;
  height: 755px;
  overflow-y: initial !important
}

.modal-dialog {
  justify-content: center;
  align-items: center;
  margin: auto;
}

.modal-body {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 600px;
  overflow-y: auto;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;
  background-color: #428bff;
  border-color: #357ebd;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  /* background: rgba(19, 19, 19, 0.5); */
  /* padding: 10px 0; */
  color: #030303;
  font-size: 14px;
  position: relative;
  font-family: 'Lato', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  max-width: 1200px;
}

#footer .pie {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 12px;
}

#footer .credits a {
  color: #0d6efd;
}