styles-bootstrap.scss 1.53 KB
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/variables";
@import "node_modules/bootstrap/scss/mixins";

$primary: #aa006b;
$secondary: #00acd8;
$info: #f4b223;
$light: #e6e7e9;
$dark: #61666c;
$theme-colors: (
  primary: $primary,
  secondary: $secondary,
  info: $info,
  light: $light,
  dark: $dark
);
$border-radius: 1.5rem;
$border-radius-lg: 2.5rem;
$border-radius-sm: 0.5rem;

.custom-modal {
  max-width: 90% !important;
  & > .modal-content {
    background-color: $primary !important;
    color: white;
    border: none !important;
    border-radius: $border-radius !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
}

.carousel-control {
  visibility: hidden !important;
}

.carousel,
.carousel-inner,
.carousel-item,
.item {
  height: 100% !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: $primary !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: $primary !important;
  background-color: $primary !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: $primary !important;
  background-color: $primary !important;
}

.modal-promo > div {
  border: none !important;
  border-radius: $border-radius;
  margin-left: 10px !important;
}

.modal-content.media-pantalla {
  margin-top: auto !important;
  margin-bottom: 50px !important;
}

.card {
  border: none !important;
}

@import "node_modules/bootstrap/scss/bootstrap";