:root {
    --mvc-color: #944C62;
    --light-grey-color:#f2f2f2;
    --grey-color-1: #f1f1f1;
    --grey-color-2: #E5E5E5;
    --grey-color-3: #cecece;
}
body {
    font-family: 'Barlow';
    font-weight: 300;
}
strong {
    font-weight: bold;
}
.bg-header{
    background-image: url('../img/bg-header.svg');
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: 800px; */
}
.bg-grey{
    background-color: var(--light-grey-color);
}
.bg-grey1{
    background-color: var(--grey-color-1);
}
.bg-grey2{
    background-color: var(--grey-color-2);
}
.bg-grey3{
    background-color: var(--grey-color-3);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: bold;
}
.separator {
    position: relative;
    margin-bottom: 0.5rem;
}
.separator .line{
    position:absolute;
    top:25px;
    width: 45%;
}
.separator .line1{
    right: 0;
}
.separator .line2{
    left: 0;
}
.t
hr.brief {
    width: 30%;
}
.fs-grande {
    font-size: calc(2rem + 1.6vw)!important;
}
.bg-onda {
    background-image: url('../img/onda.svg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}
.bg-table-gradient {
  background: #8d455f;
  background: -moz-linear-gradient(-45deg,  #8d455f 0%, #333333 100%);
  background: -webkit-linear-gradient(-45deg,  #8d455f 0%,#333333 100%);
  background: linear-gradient(135deg,  #8d455f 0%,#333333 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d455f', endColorstr='#333333',GradientType=1 );
}
.bg-table-gradient .table th, .bg-table-gradient .table td {
    background-color: transparent !important;
    color: var(--light-grey-color);
}
.rotate {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    
    position: absolute;
    /* top: calc(50% - 25px); */
    top: 5em;
    left: -150px;
    height: 50px;
    width: 370px;
    /* font-size: calc(0.8rem + 1.4vw)!important; */
    font-size: 2rem !important;
    font-weight: bold;
  }
  .image-hotspot {
    position: relative;
    max-width: 1200px;
  }
  .image-hotspot .item .icon{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #0090DF;
    border: 2px solid #fff;
    cursor: pointer;
    color: #fff;
    text-align: center;
    z-index: 1;
  }
  .image-hotspot .item .icon:after{
    position: absolute;
    top: 50%;
    /* top: 72%; */
    left: 50%;
    transform: translate(-50%, -50%) scale(1,1);
    pointer-events: none;
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #0090DF;
    background: #0090DF;
    z-index: -1;
    transition: border-color 1s linear;
    animation: icon-pulse 2s linear infinite;
  }
  .image-hotspot .item .icon a{
    text-decoration:none;
    color:#fff;
  }
  
  @keyframes icon-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1,1);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -50%) scale(1.2,1.2);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5,1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1,1);
        opacity: 0;
    }
  }
  .image-hotspot .item {
    position: absolute;
    transform: translate(-50%, -50%) scale(1,1);
    z-index: 0;
  }
  footer {
    background-image: url('../img/footer.jpg');
    background-repeat: no-repeat;
    background-size: cover;    
  }
  .image-hotspot{
    background-repeat: no-repeat;
    background-size: cover;
}
  .image-hotspot .item .hotspot-body{
    position: absolute;
    padding: 0.5rem;
    width: 14rem;
    height: 4rem;
    left: calc(-7rem + 15px);
    /* left: calc(-8rem + 15px); */
    top: -5rem;
    border-radius: 0.5rem;
    text-align: center;
    background: var(--grey-color-1);
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-box-shadow: 0px 0px 30px 0px #999;
    -moz-box-shadow: 0px 0px 30px 0px #999;
    -o-box-shadow: 0px 0px 30px 0px #999;
    box-shadow: 0px 0px 30px 0px #999;
    z-index: 999;
    transform: translate(-1%, -1%)
  }
  .image-hotspot .item .hotspot-body-large{
    width: 16rem;
    left: calc(-8rem + 15px);
  }
  .image-hotspot .item .hotspot-body::after{
    content: '';
    width: 0;
    height: 0;
    margin: 10px auto;
    border-left: 10px solid transparent;
    border-right:  10px solid transparent;
    border-top: 10px solid var(--grey-color-1);
    position: relative;
    bottom: -14px;
  }
  .image-hotspot .item .hotspot-body .text{
    text-transform: uppercase;
    font-weight: bold;
  }
  .image-hotspot .item-selected .hotspot-body{
    opacity: 1;
  }
  .toggle-table{
    transition: all 0.3s;
    max-height: 999em;
  }
  .toggle-table.hide-tr{
    display: none;
    height: 0;
  }
  .fill-black{fill:#000000;}
  .fill-white{fill:#ffffff;}
  .fill-none{fill:none;isolation:isolate;}

  .popover{
    -webkit-box-shadow: 0px 0px 30px 0px #999;
    -moz-box-shadow: 0px 0px 30px 0px #999;
    -o-box-shadow: 0px 0px 30px 0px #999;
    box-shadow: 0px 0px 30px 0px #999;
    border-color: transparent !important;
  }
  .popover-header{
    font-family: 'Barlow';
    font-weight: bold;
    text-transform: uppercase;
    background-color: #fff !important;
    border-bottom:none;
  }
  .popover-body{
    font-family: 'Barlow';
    font-weight: bold;
    text-transform: uppercase;
    font-size: var(--bs-popover-header-font-size);
    padding: 0.5rem 1rem !important;
  }