@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
    position: relative;
    opacity: .8;
    color: transparent !important;
    text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
    cursor: default;
    color: transparent;
    outline: none !important;
    box-shadow: none;
}

.m-progress:before {
    content: '';
    
    display: inline-block;
    
    position: absolute;
    background: transparent;
    border: 1px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    
    box-sizing: border-box;
    
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    
    width: 24px;
    height: 24px;
    
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation:    ld 1s ease-in-out infinite;
    -o-animation:      ld 1s ease-in-out infinite;
    animation:         ld 1s ease-in-out infinite;
}

.btn-default.m-progress:before {
    border-left-color: #333333;
    border-right-color: #333333;
}

.btn-lg.m-progress:before {
    margin-top: -16px;
    margin-left: -16px;
    
    width: 32px;
    height: 32px;
}

.btn-sm.m-progress:before {
    margin-top: -9px;
    margin-left: -9px;
    
    width: 18px;
    height: 18px;
}

.btn-xs.m-progress:before {
    margin-top: -7px;
    margin-left: -7px;
    
    width: 14px;
    height: 14px;
}

.has-error {
  border-color: red !important;
}


.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}


  .extraimg{
      margin-left: 25px;
    padding: 0px;
    background: transparent;
    text-align: center;
    }

    .extraimg img{
      width: 94%;
    }

    .swipermobile{
      display: none;
    }

    .btnbannerbottom {
      margin-top: -165px;
      margin-left: -10px;
    }

    @media screen and (max-width: 768px) {
      .extraimg{
        margin: 0px;
        margin-left: 2px;
      }
    }

    @media screen and (max-width: 1024px) {
.box-swiper {
  display: none;
}

.swipermobile {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swipermobile .slide {
  flex-shrink: 0;
  width: 100%;
  animation: slideAnimation 8s infinite;
}

.swipermobile .slide img {
  width: 100%;
  height: 160px;
  display: block;
}
.btnbannerbottom{
  margin-top: -70px;
  margin-left: -20px;
}

@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  45%  { transform: translateX(0%); }
  50%  { transform: translateX(-100%); }
  95%  { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}
}

.fix-margin {
height: 100px; /* mismo valor que el margin negativo anterior */
clear: both; /* opcional si usas floats */
}