@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
:root {
   --primary-color:#273A5E;
   --secondary-color:#600940;
   --color-dark:#0C0500;
   --color-white:#ffffff;
   --secondary-white:#f8f8f8;
   --transition:.6s ease-in-out;
   --bold:700;
   --brand:url('../img/logo-descargas.svg');
}
[data-theme="amor-theme"] {
   --primary-color:#600940;
   --secondary-color:#273A5E;
   --color-dark:#0C0500;
   --color-white:#ffffff;
   --secondary-white:#6B1C4E;
   --transition:.6s ease-in-out;
   --bold:700;
   --brand:url('../img/logo-mundolove.svg');
}
a {
  -webkit-text-shadow:none;
     -moz-text-shadow:none;
          text-shadow: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
  opacity: 1;
}
p {
  font-size:14px;
}
html {
   scroll-behavior: smooth;
}
body {
  font-family: 'Roboto',sans-serif;
  background-color: var(--secondary-white);
}
ul {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0;
}
h1, h2, h3, h4, h5, h6, p {
   margin:0;
}

/*******************************************************************************
                            LOADER
*******************************************************************************/
#loader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--color-dark);
   z-index: 9999;
}
.lds-opratel {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  top:0;
  right: 0;
  bottom: 0;
  left: 0;
  margin:auto;
}
.lds-opratel div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: var(--color-white);
  animation: lds-opratel 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation: lds-opratel 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-opratel div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-opratel div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-opratel div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-opratel {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
@-webkit-keyframes lds-opratel {
   0% {
      top:8px;
      height:64px;
   }
   50%, 100% {
      top:24px;
      height:32px;
   }
}
/*******************************************************************************
                            HEADER Y NAVBAR
*******************************************************************************/
#mainNavbar {
   background-color:var(--primary-color);
   height:60px;
}
#menu-button {
   background-color:var(--primary-color);
   position:relative;
   border:0;
}
   #menu-button .icon_bar {
      display: block;
      width: 30px;
      height:2px;
      margin-bottom:5px;
      background-color:var(--color-white);
   }
#menu {
   background-color:var(--primary-color);
   width: 200px;
   min-height:100vh;
   padding:0;
   -webkit-transition: -webkit-transform var(--transition);
   transition: transform var(--transition);
   box-shadow:0px 0px 10px rgba(0, 0, 0, 0.5);
   -webkit-box-shadow:0px 0px 10px rgba(0, 0, 0, 0.5);
   z-index: 80;
   position:relative;
}
    #goTop {
      border:2px solid var(--color-white);
      border-radius: 100%;
      width: 50px;
      height:50px;
      display: flex;
      align-items: center;
      justify-content: center;
      position:relative;
      margin:10% auto 0 auto;
      opacity: 0;
      -webkit-transition:opacity var(--transition);
      transition:opacity var(--transition);
   }
      #goTop i {
         color:var(--color-white);
      }
   #goTop.show {
      opacity: 1;
   }
.navbar-brand  {
  max-width:200px;
  width: 100%;
  height:32px;
  background-image:var(--brand);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width:767.98px) {
   #menu {
      top:0;
      position: fixed;
      transform:translateX(-200%);
      -webkit-transform:translateX(-200%);
   }
   #menu.show {
      transform:translateX(0);
      -webkit-transform:translateX(0);
   }
   #main-menu {
     margin-top:70px
   }
}
@media (min-width:768px) {
  .dm-wrapper,
  #wrapper-footer {
    margin-left:215px;
    width:calc(100% - 215px);
    position:relative;
    z-index:2;
  }
  #menu {
    width:215px;
    height:100%;
    position:fixed;
    overflow-y:auto;
    overflow-x:hidden;
    top:0;
    left:0;
    bottom:0;
    margin-top:60px;
    padding-bottom:40px;
  }
  .navbar-toggle {
      opacity: 0;
      flex:1;
      visibility: hidden;
   }
   .navbar-brand,
   .search-form {
      flex:1;
   }
}
#main-menu > li {
  display:flex;
  align-items:center;
  flex-direction:row;
  width:100%;
  position:relative;
  margin-bottom:10px;
}
#main-menu .custom-menu-item {
   background-color:var(--secondary-color);
}
#main-menu .nav-link {
  color:var(--color-white);
  width:100%;
}
#main-menu .nav-item {
  position:relative;
}
#main-menu .nav-item::after {
   content:'';
   display: block;
   position: absolute;
   width: 100%;
   height:1px;
   background-color:var(--color-white);
   opacity: .5;
   bottom: 0;
   left: 0;
}
/***************** search form *****************/
#searchforms .input-group-append i:nth-child(2) {
    display:none;
  }
@media (min-width:768px) {
  #searchforms .form-control {
    border-radius:7rem;
    border:0;
    padding-left:50px;
    width:100%;
  }
   #searchforms .form-inline {
     position:relative;
     max-width:400px;
   }
   #searchforms .input-group-append {
     position:absolute;
     left:10px;
   }
    #searchforms .input-group-append .submit {
      border:0;
      background-color:transparent;
    }
    #searchforms .input-group-append .submit:focus,
    #searchforms .form-control:focus {
      outline:0;
      box-shadow:none;
    }
}
@media (max-width:767.98px) {
  #searchforms .form-control {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    transform:translateY(-100%);
    transition:transform .5s ease-in-out;
  }
  #searchforms .input-group-append {
     color:var(--color-white);
    position:relative;
    z-index:50;
  }
  .active #searchforms .form-control {
    transform:translateY(0);
  }
  .active #searchforms .input-group-append {
    color:var(--color-dark);
  }
  .active #searchforms .input-group-append i:nth-child(1) {
    display:none;
  }
  .active #searchforms .input-group-append i:nth-child(2) {
    display:block;
  }
}


/************************ custom icon menu *****************/
.icon-custom {
  width:35px;
  height:30px;
  display: flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--color-white);
  border-radius:100%;
  overflow:hidden;
}
   .icon-custom img {
      width: 35px;
      height: 35px;
      object-fit: cover;
   }
.content-general {
  margin-top:72px;
}
/*******************************************************************************
                                 CUSTOM STYLE
*******************************************************************************/
.header-section {
  background-color:transparent;
  -webkit-box-shadow:0px 3px 20px rgba(0,0,0,0.23);
  box-shadow:0px 3px 20px rgba(0,0,0,0.23);
  padding-left: 20px;
}
   .header-section h2 {
      color:var(--primary-color);
      font-size:1.2rem;
      font-weight: var(--bold);
   }
   .header-section a {
      color:var(--primary-color);
   }
   .header-section svg {
      fill:red;
   }
.banner {
	display: none;
   min-height: 90px;
   min-width: 100%
}
.box-movil {
  background-color:var(--color-white);
  border:1px solid transparent;
  min-height:auto;
  padding:1.25rem;
  padding-bottom:0;
  -webkit-box-shadow:0px 3px 6px rgba(0,0,0,.16);
  box-shadow:0px 3px 6px rgba(0,0,0,.16);
  -webkit-transition:all var(--transition);
  transition:all var(--transition);
}
.box-movil:hover {
  -webkit-box-shadow:0px 3px 12px rgba(0,0,0,.46);
  box-shadow:0px 3px 12px rgba(0,0,0,.46);
}
  .box-movil h3 {
    margin-bottom:10px;
  }
  .box-movil #showVideo {
    border:0;
    background-color:transparent;
    position:relative;
  }
    .box-movil #showVideo i {
      position:absolute;
      top:0;
      right:0;
      bottom:0;
      left:0;
      margin:auto;
      width:48px;
      height:48px;
      font-size:54px;
      color:var(--color-white);
      opacity:.7;
      animation: pulse 3s infinite;
      -webkit-animation: pulse 3s infinite;
    }
  .box-movil #showVideo:focus {
    outline:0;
    box-shadow:none;
  }
  .box-movil .share {
    min-height:50px;
  }
    .box-movil .share ul {
      list-style-type:none;
      padding-inline-start:0;
      margin:0;
    }
      .box-movil .share ul > li > a {
        font-size:24px;
        color:var(--primary-color);
      }
      .box-movil .share ul > li:nth-child(1) > #fb-share-button > a {
        background-color:transparent;
        color:var(--primary-color);
        font-size:24px;
      }

@media (min-width:768px) {
  .box-movil .share {
    min-height:70px;
  }
  .share ul > li:nth-child(2) {
    display:none ;
  }
}
@keyframes pulse {
  0% {
    transform:scale(1);
  }
  50% {
    transform:scale(1.2);
  }
  100% {
    transform:scale(1);
  }
}
@media (max-width:767.98px) {
   .sidebar-desktop {
      display: none;
   }
}
/*******************************************************************************
                              SPECIALS CASES
*******************************************************************************/
@media (max-width:767.98px) {
   .dm-wrapper {
      min-height: 100vh;
   }
}
/*******************************************************************************
                                 FOOTER
*******************************************************************************/
#wrapper-footer {
   background-color:var(--primary-color);
}
  #wrapper-footer .img-fluid {
    max-width:200px;
  }
  #wrapper-footer a,
  #wrapper-footer p {
    color:var(--color-white);
  }
#wrapper-footer ul {
  list-style-type:none;
  padding-inline-start:0;
  margin:0;
  display:flex;
  margin:10px 0;
}
  #wrapper-footer ul > li:nth-child(1) a::after {
    content:'-';
    display:inline-block;
    padding:0 2px
  }

@media (min-width:768px) {
  #wrapper-footer p {
    text-align:right;
  }
  #wrapper-footer ul {
    display:flex;
    flex-direction:row;
    align-items:flex-end;
  }
  #wrapper-footer .menu-secundario-container {
    display:flex;
    align-items:flex-end;
    flex-direction:column;
  }
}
button:focus {
   outline:0;
   box-shadow:none;
}
/*******************************************************************************
            SWITCH ELEMENTS BETWEEN MUNDO LOVE & DEFAULT
*******************************************************************************/
#extend-menu,
.sidebar-amor {
   display: none;
}
.amor-theme #extend-menu,
.amor-theme .sidebar-amor {
   display: block;
}
.amor-theme #classic-menu,
.amor-theme .sidebar-desktop {
   display: none;
}
.amor-theme .subtitle_section,
.amor-theme .header-section h2,
.amor-theme .header-section a,
.amor-theme .search-results h2,
.amor-theme #error-404-wrapper,
.amor-theme #custompage-wrapper {
   color:var(--color-white)
}
.amor-theme .header-section svg {
   fill:var(--color-white);
}
#searchform-amor {
  display:none;
}
.amor-theme #searchform-descargas {
   display: none;
}
.amor-theme #searchform-amor {
  display:block;
}

/*** temporal changes 30/03 *****/
.share ul > li:nth-child(1) {
	display: none !important;
}

.alert-generic {
	position: fixed;
	bottom: -20px;
	right: 0;
	left: 0;
	z-index: 99999;
}
/*******************************************************************************
                          TEST DE COMPATIBILIDAD
*******************************************************************************/
#amorPage .compatibilidad {
  background: #E3467F;
  color: white;
  text-align: center;
}
#amorPage .compatibilidad.mobile {margin: 20px;}
#amorPage .compatibilidad.desktop {display: none;}
@media (min-width:780px) {
  #amorPage .compatibilidad.desktop {display: block;}
  #amorPage .compatibilidad.mobile {display: none;}
}
#amorPage .compatibilidad p {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 22px;
}
#amorPage .compatibilidad .btn {
  color: #484848;
  background: white;
  display: block;
  width: 85%;
  margin: 0 auto;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#compatibilidadPage .header h2 {
  color: white;
  font-size: 20px;
  margin-bottom: 30px;
  padding-left: 40px;
}
#compatibilidadPage .header i.fa {
  margin-right: 20px;
}
@media (min-width:780px) {
  #compatibilidadPage>.container {
    padding-left: 60px;
  }
}
#compatibilidadPage .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  margin-bottom: 80px;
  padding: 40px 20px;
}
#compatibilidadPage .content>p {
  text-align: center;
  max-width: 350px;
}
#compatibilidadPage .content img {
  margin-top: 30px;
}
#compatibilidadPage .content .btn {
  background: #E3467F;
  width: 250px;
  color: white;
  border-radius: 50px;
  margin-top: 40px;
  text-transform: uppercase;
}
#compatibilidadPage .form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  margin: 40px auto 0;
}
#compatibilidadPage .campos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
#compatibilidadPage .campos .campo {
  width: 100%;
  height: 40px;
  border: solid 1px #D7DEDD;
  color: black;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
}
#compatibilidadPage .campos .campo::placeholder {
  color: black;
}
#compatibilidadPage .title_resultado {
  font-size: 16px;
  margin-bottom: 20px;
}
#compatibilidadPage .content .porcentaje {
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
}
#compatibilidadPage #error {
  display: block;
  width: 100%;
  color: red;
  font-size: 14px;
  text-align: center;
  margin: 8px 0;
}