:root {
  --color-primary: #882037;
  --color-primary-blur: rgba(136, 32, 55, 0.6);
  --color-secondary: #bc955b;
  --color-secondary-blur: rgba(151, 105, 56, 0.2);
  --color-tertiary: #efe1ca;
  --color-white: #ffffff;
  --color-body: #fffcff;
  --color-black: #000000 !important;
}
* {
    font-smooth: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none !important;
}
a:hover {
}
a.btn:hover {
}
h1 {
  font-weight: 600;
  margin: 0;
  font-size: 2rem !important;
}
h2,
h3,
h4 {
  font-weight: 600;
  margin: 0;
}

h5,
h6 {
  margin: 0;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}
.opacityBlack_40 { background-color:rgba(0,0,0,0.4); }
.opacityBlack_60 { background-color:rgba(0,0,0,0.6); }
.opacityBlack_70 { background-color:rgba(0,0,0,0.7); }
.opacityBlack_80 { background-color:rgba(0,0,0,0.8); }
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none !important;
}

ul {
  padding: 0;
}

p, ul .p, ol .p {
  font-size: 14px;
  margin: 0;
}
.bold {
  font-weight: 600 !important;
}

.block_box {
  position: relative;
  background: var(--color-white);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.09);
}
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-success,
.btn-warning,
.btn-default,
.btn-link {
  border: none !important;
  /* height: 6px !important; */
}
.btn-sm {
  height: 32px !important;
}
.btn-primary,
.btn-primary:link,
.btn-primary a,
.btn-primary a:link,
.bg-primary {
  background-color: var(--color-primary) !important;
  /* margin-bottom: 10px !important; */
}
a.btn i {
  padding: 4px !important;
}
.btn-primary:hover {
  background-color: var(--color-primary);
}

a.btn-outline-dark:hover {
  color: #000 !important;
  background: #fff !important;
}
.font-color-primary,
.font-color-primary h1,
.font-color-primary h2,
.font-color-primary h3,
.font-color-primary h4,
.font-color-primary h5,
.font-color-primary p {
  color: var(--color-primary) !important;
}
.hr_color_primary {
  width: 100% !important;
  height: 2px !important;
  background: var(--color-primary) !important;
  border: none;
}
.hr_color_secondary {
  width: 100% !important;
  height: 2px !important;
  background: var(--color-secondary) !important;
  border: none;
}
.hidden {
  display: none;
}
.pointer {
  cursor: pointer;
}
input .form-control {
  height: 2.28rem !important;
}

.text-tip,
.text-tip a {
  font-size: 0.7rem;
  color: #888;
}
.text-note {
  font-size: 0.8em;
  color: #000;
}
.text-max {
  font-size: 3.6rem;
}

.btn-normalize .btn {
  font-size: 1em !important;
  padding: 0.3rem 0.7rem !important;
}

.block_box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 30px !important;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.09);
}
.block_box_plain {
  position: relative;
  background: #fff;
  border: solid 1px rgba(0, 0, 0, 0.09);
  padding: 30px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.09);
}

.background-primary {
  background: var(--color-primary);

}
.background-secondary {
  background: var(--color-secondary);
}
.background-secondary-blur {
  background: var(--color-secondary-blur) !important;
  color: var(--color-secondary) !important;
}

.background-tertiary {
  background: var(--color-tertiary);
}
.background-white {
  background: var(--color-white);
  box-shadow: 10px 2px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1rem !important;
  }
}

.start-90 {
  left: 90% !important;
}
.uppercase {
  text-transform: uppercase !important;
}

/* Overlay de pantalla completa */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Ícono de carga */
.loading-icon {
  color: white;
  font-size: 3rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pointer {
  cursor: pointer !important;
}

.justify {
  text-align: justify !important;
}

.code {
    padding: .5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: monospace;
    color:#fff;
    background-color: #1a1a1a;
    font-size: 11px;
    font-weight: normal;
    font-smooth: none;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: auto;

}

.code-warning {
    color:#fff;
    background-color: #e5a000 !important;

}
