/* @font-face {
    font-family: Udemy;
    src: url(../fonts/ekmukta-medium.ttf);
}



@import url(//db.onlinewebfonts.com/c/77d394fa0c1103c648f880b77cb4a32f?family=FuturaLTW01-Medium);
@font-face {
    font-family: "FuturaLTW01-Medium";
    src: url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.eot");
    src: url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.eot?#iefix") format("embedded-opentype"), url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.woff2") format("woff2"), url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.woff") format("woff"), url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.ttf") format("truetype"), url("//db.onlinewebfonts.com/t/77d394fa0c1103c648f880b77cb4a32f.svg#FuturaLTW01-Medium") format("svg");
} */
@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

html{
  font-family: 'Inter', sans-serif !important;
}

app-navbar .container-stax {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  transition: 1s ease-out;
  border-radius: .25rem;
  width: 50%;
  z-index: 999;
  height: 100%;
}

app-navbar .stax-panel {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 54%;
}

app-navbar .desplegado {
  transform: translateX(-10%);
}

app-navbar .sidebar-slider {
  z-index: 99;
  position: absolute;
  top: 0;
  color: var(--text-color);
  left: 0;
  bottom: 0;
  /* transform: translateX(0%); */
  transition: ease-in-out 600ms;
  width: 15%;
}

app-navbar .sidebar-slide-in {
  /* transform: translateX(-80%); */
  width: 4% !important;
  transition: ease-in-out 600ms;
}

app-navbar ::-webkit-scrollbar {
  width: 8px !important;
}

app-navbar ::-webkit-scrollbar-thumb {
  border-radius: 21px !important;
  background-color: white;
}

app-navbar .menuSelected {
  border-left: 6px solid white;
  opacity: 1 !important;
  align-items: center;
  background: linear-gradient(180deg, rgb(109 114 117 / 26%) 0%, rgba(32, 51, 65, 1) 36%, rgba(32, 51, 65, 1) 69%, rgb(136 136 136 / 20%) 100%);
}

app-navbar .menuOptions {
  padding: 1.2% 9%;
  font-size: 1.5vh;
  font-weight: 400;
  opacity: 0.6;
  height: 33px;
  cursor: pointer;
  align-items: center;
  /* margin: 1.5%; */
}

app-navbar .sidebar-slide-in {
  /* transform: translateX(-80%); */
  width: 3% !important;
  position: absolute;
  transition: ease-in-out 600ms;
  z-index: 99;
  height: 100vh;
}

app-navbar .menuSelectedOptions {
  opacity: 1;
}

app-navbar .exAssign {
  /* width: 6%;
    background-color: #febd69; */
  height: 100%;
  position: absolute;
  right: 0;
  background-color: #ffdf4a;
  right: 0;
  top: 0;
  width: 6px;
  opacity: 0.6 !important;
}

app-navbar .assignedExam {
  /* width: 6%;
    background-color: #febd69; */
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
  opacity: 0.6 !important;
  background-color: #fdb557;
}

.warningMessage {
  position: absolute;
  top: 36%;
  height: 9%;
  width: 39%;
  left: 30%;
  border-radius: 6px;
  color: grey;
  /* background-color: #0baff6; */
  background-color: white;
  z-index: 999;
  font-size: 1.8vh;
  align-items: center;
  border: 3px solid #dd454b;
  display: flex;
  justify-content: center;
}

.bg-blue {
  background-color: var(--bg-color2) !important;
}

.bg-dark-blue{
  background-color: var(--bg-color);
}

.blue-font {
  color: var(--bg-color2) !important;
}

.animacionFixed {
  -webkit-animation: 0.15s flyerFixed 1;
  animation: 0.15s flyerFixed 1;
}

.loadingCards {
  -webkit-animation: 1.5s loadingCards infinite;
  animation: 1.5s loadingCards infinite;
}

.fadebox {
  border-radius: .3rem;
  resize: none;
  height: 100px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation: 2000ms fadeInUp;
  animation: 2000ms fadeInUp;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes card-hover {
  50% {
    box-shadow: 0 3px 2px 2px rgba(20, 23, 28, 0.15);
  }

  100% {
    box-shadow: 0 9px 8px 2px rgba(20, 23, 28, 0.15);
  }
}

@-webkit-keyframes loadingCards {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.7;
  }

  75% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flyerFixed {
  10% {
    top: 1px;
  }

  20% {
    top: 2px;
  }

  30% {
    top: 3px;
  }

  40% {
    top: 4px;
  }

  50% {
    top: 5px;
  }

  60% {
    top: 6px;
  }

  70% {
    top: 7px;
  }

  80% {
    top: 8px;
  }

  90% {
    top: 9px;
  }

  100% {
    top: 10px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes card-hover {
  50% {
    box-shadow: 0 3px 2px 2px rgba(20, 23, 28, 0.15);
  }

  100% {
    box-shadow: 0 9px 8px 2px rgba(20, 23, 28, 0.15);
  }
}

@keyframes loadingCards {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.7;
  }

  75% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flyerFixed {
  10% {
    top: 1px;
  }

  20% {
    top: 2px;
  }

  30% {
    top: 3px;
  }

  40% {
    top: 4px;
  }

  50% {
    top: 5px;
  }

  60% {
    top: 6px;
  }

  70% {
    top: 7px;
  }

  80% {
    top: 8px;
  }

  90% {
    top: 9px;
  }

  100% {
    top: 10px;
  }
}

.modal-fake {
  max-width: 500px !important;
}

.offcanvasbuttons {
  position: relative !important;
}

.regMod {
  position: absolute !important;
  left: 0px !important;
}

.labsbutton {
  position: absolute !important;
  right: 0 !important;
}

.registeroffcanvas {
  position: absolute !important;
  bottom: 0 !important;
}

.shopping {
  transform: scale(8) !important;
  margin-top: 135px !important;
}

.offcanvas-close {
  cursor: pointer !important;
}

.offcanvasmenu {
  right: 0 !important;
}

.aMod {
  cursor: pointer !important;
  position: absolute !important;
  left: 150px !important;
}

.aMod1 {
  cursor: pointer !important;
  color: #2652C7 !important;
}

.aMod {
  cursor: pointer !important;
  position: absolute !important;
  left: 150px !important;
  color: #2652C7 !important;
}

.valtext {
  min-height: 150px !important;
  min-width: 504px !important;
  max-width: 504px !important;
  max-height: 150px !important;
}

.valtext:focus {
  border-color: #76c5d6 !important;
}

.ratemodal {
  height: 511 !important;
  width: 900px !important;
}

.modalrest {
  max-width: none !important;
}

.mylabsnolabs {
  transform: scale(10) !important;
  margin-top: 160px !important;
}

.footerprofile {
  position: fixed;
  bottom: 0 !important;
  border-top: 1px solid rgba(50, 50, 50, 0.3);
  width: 100%;
}

.btn-style-5::after {
  position: absolute !important;
  top: -20% !important;
  left: -43px !important;
  width: 50px !important;
  height: 200% !important;
  -webkit-transform: rotate(35deg) !important;
  transform: rotate(35deg) !important;
  -webkit-transform-origin: right !important;
  transform-origin: right !important;
  -webkit-transition: left .25s ease-in-out !important;
  transition: left .25s ease-in-out !important;
  content: '' !important;
  z-index: -1 !important;
}

.paymentTitle {
  padding-left: 99px;
}

app-perfil .list-group-flush {
  border-bottom: 1px solid #e7e7e7;
}

.showCardInfo {
  width: 350px !important;
  height: auto;
  background-color: white;
  position: relative;
  left: 100px;
  top: -50px;
  z-index: 999;
  box-shadow: 0 0.75rem 1.175rem 0.075rem rgba(64, 64, 64, 0.15);
}

.auxdiv {
  width: 6px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6px;
  background-color: transparent;
}

.firstReview {
  height: 260px !important;
  width: 750px !important;
  background-color: #f2f2f2 !important;
  position: relative !important;
}

.showCardInfo:before {
  content: '';
  border-style: solid;
  border-width: 6px 6px 6px 0px;
  border-color: transparent white transparent transparent;
  position: absolute;
  left: -6px;
  top: 50%;
  margin-top: -6px;
  z-index: 999;
}

app-navbar .search .btnSearch {
  color: var(--text-color)smoke !important;
  background-color: transparent !important;
}

app-navbar .search .btnSearch {
  background-color: transparent !important;
}

app-navbar .search .btnSearch:hover {
  box-shadow: none !important;
  background-color: transparent !important;
  color: var(--text-color) !important;
}

.borderSearch {
  border-bottom: white 0.5px solid;
}

.placeholder::placeholder {
  color: var(--text-color) !important;
}

.showCardInfo:hover {
  display: block;
}

.card:hover+.showCardInfo {
  display: block !important;
}

.cartItemNavbar:hover {
  background-color: #f5efef !important;
}

.cartItemNavbar {
  max-height: 90px !important;
}

.cartItem:hover {
  background-color: #F5F5F5;
}

.fa-chevron-circle-right {
  font-size: 35px !important;
  position: relative !important;
  left: -5px !important;
  top: -3.1px !important;
  color: #ec5252 !important;
}

.pl {
  padding-left: 33px !important;
}

.navbar-wrapper {
  position: fixed !important;
}

.fa-chevron-circle-left {
  font-size: 35px !important;
  position: relative !important;
  left: -18px !important;
  top: 0px !important;
  color: #ec5252 !important;
}

.cardcarrousel:hover+.showCardInfo {
  display: block !important;
}

.cardcarrousel {
  height: 290px !important;
}

.btnsave {
  justify-content: flex-end !important;
  position: relative !important;
}

.imageProfile {
  position: relative !important;
  top: -45px !important;
}

.filters {
  position: absolute !important;
  height: 0px !important;
  overflow: hidden !important;
  z-index: 100 !important;
  background-color: #f2f3f5 !important;
  width: 71.4%;
  max-width: 1365px;
  /* max-height: 272px !important; */
}

.animationFiltersDown {
  -webkit-animation: 0.15s dropFiltersDown 1 ease;
  animation: 0.15s dropFiltersDown 1 ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.animationFiltersUp {
  -webkit-animation: 0.15s dropFiltersUp 1 ease;
  animation: 0.15s dropFiltersUp 1 ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes dropFiltersDown {
  0% {
    height: 0px;
  }

  25% {
    height: 50px;
  }

  50% {
    height: 100px;
  }

  75% {
    height: 150px;
  }

  100% {
    height: fit-content;
  }
}

@-webkit-keyframes dropFiltersUp {
  0% {
    height: fit-content;
  }

  25% {
    height: 150px;
  }

  50% {
    height: 100px;
  }

  75% {
    height: 50px;
  }

  100% {
    height: 0px;
  }
}

@keyframes dropFiltersDown {
  0% {
    height: 0px;
  }

  25% {
    height: 50px;
  }

  50% {
    height: 100px;
  }

  75% {
    height: 150px;
  }

  100% {
    height: fit-content;
  }
}

@keyframes dropFiltersUp {
  0% {
    height: fit-content;
  }

  25% {
    height: 150px;
  }

  50% {
    height: 100px;
  }

  75% {
    height: 50px;
  }

  100% {
    height: 0px;
  }
}

.pass {
  display: inline !important;
}

.rightRow {
  margin-top: -77px !important;
}

.leftRow {
  margin-top: -100px !important;
}

.Tarjeta:focus {
  background-color: #dedfe0 !important;
}

.payCard:focus {
  background-color: #dedfe0 !important;
}

.CardField-child {
  transform: none !important;
}

/* .card-body {
  position: relative !important;
  height: 171px !important;
  padding: 15px 15px 0px 15px !important;
} */

.btn-style-5.btn-danger::after {
  background-color: #ff1f1f !important;
}

.btnnavbar {
  background-color: #f5efef !important;
  bottom: 0px !important;
  height: 100px !important
}

.fakeDivMenuCart {
  background-color: red;
  width: 300px !important;
  height: 15px !important;
}

.navpos {
  margin-left: 115px !important;
}

.star {
  /* transform: scale(1.5) !important; */
  color: #D0D0D0 !important;
}

.firstStarReview {
  transform: scale(18) !important;
  position: absolute !important;
  bottom: 47% !important;
  left: 75% !important;
}

.starCard {
  transform: scale(1.5) !important;
}

.starfill {
  color: #f4c150 !important;
}

.halfemptyflyer {
  transform: rotateY(180deg) !important;
}

.halfemptyflyeravg {
  transform: rotateY(180deg) !important;
  padding-left: .85px;
}

.halfempty {
  transform: rotateY(180deg) !important;
  margin-left: -1px !important;
}

.starempty {
  color: #D0D0D0 !important;
}

.avatar {
  border: none !important;
  border-radius: 50% !important;
  background-color: #F7F8FA !important;
  vertical-align: middle;
  overflow: hidden;
  display: table-cell;
  box-shadow: 0 0.5rem 1.25rem 0 rgba(0, 0, 0, 0.15);
}

.imgAvatar {
  /* height: 100% !important; */
  width: 60% !important;
  border: 1.5px solid grey;
  /* border-radius: 50%; */
}

.flyercard {
  box-shadow: 0 0.75rem 1.175rem 0.075rem rgba(64, 64, 64, 0.15) !important;
  /* min-width: 360px !important; */
  max-width: 300px !important;
  width: 300px;
  min-height: 650px !important;
  /* top: 0; */
}

.flyerAll {
  max-width: 300px !important;
  width: 300px !important;
  position: absolute !important;
  margin-left: 70% !important;
  z-index: 30 !important;
  top: 7px !important;
}

.flyerAlledit {
  max-width: 360px !important;
  position: absolute !important;
  margin-left: 67% !important;
  z-index: 30 !important;
  top: 7px !important;
}

.flyerHeader {
  min-height: 268px !important;
  margin-left: 99px !important;
}

.flyerHeaderEdit {
  min-height: 268px !important;
}

/* .navbar-stuck {
    display: none !important;
} */

.wishFlyer {
  margin-left: 80px !important;
}

.wishFlyer2 {
  margin-left: 70px !important;
}

.flyerTitle {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  max-width: 750px !important;
}

.btnopinion {
  width: 30px !important;
  height: 18px !important;
  color: #EC5252 !important;
  border: 1px solid transparent;
}

.startrans {
  transform: scale(5) !important;
}

.btnopinion:hover {
  border: 1px solid #DEDFE0 !important;
}

.comentSection {
  margin-bottom: 15px !important;
  padding-top: 12px !important;
  border-top: 1px solid #DEDFE0 !important;
}

.maincontainer {
  padding-bottom: 57px !important;
}

.val {
  color: var(--text-color) !important;
  text-transform: uppercase !important;
  margin-top: -3px !important;
}

.coment {
  color: var(--text-color) !important;
}

.created {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-color) !important;
}

.comentary {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  max-width: 750px !important;
  /* margin-left: 12px !important; */
}

.stars1 {
  /* margin-bottom: 20px !important; */
  margin-left: 15px !important;
}

.key {
  font-size: 21px !important;
}

.title {
  font-size: 36px !important;
  color: var(--text-color) !important;
}

.cardCarrito {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.backImg {
  min-height: 400px !important;
  background-image: url(../img/pec-portada1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.wish {
  color: var(--text-color) !important;
}

.wished {
  width: 300px;
  color: var(--text-color) !important;
}

.fs-15 {
  font-weight: 200 !important;
  font-size: 15px !important;
}

.dFlyer {
  position: fixed !important;
  top: -202px !important;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  line-height: 1.43 !important;
  color: #3C5176 !important;
  background-color: #FFF;
  margin: 0 !important;
  position: relative;
  overflow: visible !important;
}

.mainContent {
  min-height: 83.7vh !important;
  position: relative !important;
}

.mainContent2 {
  min-height: 100vh;
  position: relative !important;
}

.profileContent {
  min-height: calc(100vh - 130px);
  height: calc(100vh - 130px);
}

.mainContentMyLabs {
  background-color: var(--bg-color);
  min-height: 100%;
}

/* * :not(i) {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
} */

.altea-title {
  position: relative !important;
  top: 0.499px !important;
}

.altea-title2 {
  font-size: 30px !important;
  font-weight: 400 !important;
  position: relative !important;
  top: 0.499px !important;
  color: black;
}

.navShadow {
  /* box-shadow: 0px -2px 7px 1px rgba(0, 0, 0, 0.75) !important; */
  position: fixed;
  display: table;
  width: 100%;
  /* padding: 0 30px; */
  /* border-bottom: 1px solid #e7e7e7; */
  background-color: #181818c4;
  z-index: 900;
  top: 0;
}

.navLogUnlog {
  background-color: transparent !important;
}

.navbar-sticky.navbar-stuck {
  animation: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
}

.owl-next span {
  display: none !important;
}

.owl-prev span {
  display: none !important;
}

.logged {
  max-width: 1366px !important;
  max-height: 300px !important;
}

.logged button.owl-prev {
  left: -2.2% !important;
}

.logged button.owl-next {
  right: -2.2% !important;
}

app-faculties .logged button.owl-prev {
  left: -2% !important;
}

app-faculties .logged button.owl-next {
  right: -2% !important;
}

.unlogged button.owl-prev {
  left: -2.2% !important;
}

.unlogged button.owl-next {
  right: -2.2% !important;
}

#userdropdown::after {
  display: none !important;
}

.dropdown-toggle::after {
  display: none !important;
}

#cart-dropdown::after {
  display: none !important;
}

.Menu {
  width: 300px !important;
  height: max-content !important;
  left: 15px;
  max-height: 380px !important;
}

.MenuCart {
  width: 300px !important;
  height: max-content !important;
  margin-top: 13px !important;
  left: 15px;
  max-height: 380px !important;
}

.buyMenu {
  width: 300px !important;
  height: max-content !important;
  max-width: 300px !important;
  max-height: 280px !important;
  overflow-y: scroll !important;
  /* padding: 10px; */
}

.progressbar1 {
  position: relative !important;
  top: 4px !important;
}

.progressbar2 {
  position: relative;
  top: 3px !important;
}

.flyerOfferPrice {
  color: #505763 !important;
  font-weight: 700 !important;
  font-size: 36px !important;
}

.progressbar3 {
  position: relative;
  top: 2px !important;
}

.loadImg {
  position: relative;
  top: 13px !important;
}

.buyMenu h4 {
  font-size: 13px !important;
  font-weight: 600 !important;
}

.buymenudesc {
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
  -o-line-clamp: 1;
  line-clamp: 1 !important;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis !important;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis !important;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: normal;
  font-size: 13px;
  max-height: 21px;
}

.price {
  font-size: 14px !important;
  font-weight: 100 !important;
}

.priceoffer {
  font-size: 17px !important;
  font-weight: 100 !important;
}

.priceFirst {
  justify-content: flex-end !important;
  margin-top: 5.5px !important;
  letter-spacing: 0.6px !important;
}

.priceCard {
  justify-content: flex-end !important;
}

.cardValue {
  position: absolute;
  bottom: 0% !important;
}

.realPrice {
  margin-right: 0px !important;
  letter-spacing: 0.6px !important;
}

.card-text-custom {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis !important;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis !important;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: normal;
  height: 42px !important;
  color: black !important;
}

.search-desc-text {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
  -o-line-clamp: 2;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis !important;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis !important;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: normal;
  height: 39px !important;
}

.cardRemember {
  position: relative !important;
  top: -2px !important;
}

.cardmylabs {
  border: 1px solid #E2E2E2 !important;
}

.prebtnimg {
  display: block !important;
  margin-left: 201px !important;
  max-width: 160px !important;
}

.prebtnimg2 {
  display: block !important;
  margin-left: 203px !important;
  margin-top: 63px !important;
}

.payMenu {
  height: 409px !important;
  overflow-y: scroll !important;
  max-height: 409px;
}

.pricePay {
  /* margin-bottom: 12px !important; */
  border-radius: 2% !important;
  margin-bottom: -15px;
}

.mw-468 {
  max-width: 468px;
}

.pricePay>p:first-child {
  font-size: 36px !important;
}

.articles {
  border-bottom: 2px solid #DEDFE0 !important;
}

.buyImg {
  width: 36% !important;
  height: 36% !important;
}

/* .black-divider {
  background-color: var(--bg-color2) !important;
} */

.transparent-bg {
  background-color: transparent !important;
}

.bg-altea {
  background: #EC5252 !important;
  color: var(--text-color) !important;
}

.border-altea {
  border-color: #EC5252 !important;
}

.labs-title {
  margin-top: 7px;
  border-radius: 3px !important;
  padding-left: 6px !important;
  padding-right: 6px !important;
  font-weight: 400 !important;
  font-size: 30px !important;
  color: var(--text-color) !important;
}

.logoio {
  color: black !important;
}

.logoGeo {
  height: 72%;
  width: 10rem !important;
  margin-left: 5rem;
}

@media (max-width: 1200px) {
  .logoGeo {
    margin-left: 1rem;
  }
}

.logoIconio {
  src: url("../../assets/img/black-logo.png") !important;
}

.navbarForms {
  padding-top: 9px !important;
  padding-right: 10% !important;
  padding-bottom: 9px !important;
  padding-left: 10% !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important
}

.w-80 {
  width: 80% !important;
}

.heart {
  font-size: 2rem !important;
  color: #EC5252 !important;
}

.btn-altea, .btn-altea-inv {
  background-color: white;
  border: 0;
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 0.375rem;
  box-sizing: border-box;
  color: #183D57;
  border: 1px solid #183D57;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25rem;
  padding: .9rem .9rem;
  text-align: center;
  -webkit-text-decoration: none #D1D5DB solid;
  text-decoration: none #D1D5DB solid;
  text-decoration-thickness: auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: all .2s;
}

.btn-altea-inv {
  background-color: #183D57;
  color: var(--text-color);
}

.btn-altea:hover, .btn-altea-inv:hover {
  background-color: #183D57;
  color: var(--text-color);
}

.btn-altea.btn-style-6 {
  background-color: rgb(230, 80, 82) !important;
  color: var(--text-color) !important;
  box-shadow: 0 0.39rem 1.175rem 0.075rem rgba(230, 80, 82, 0.24) !important;
}

/* .btn-altea:hover {
  box-shadow: 0 12px 18.8px 1.2px rgba(230, 80, 82, 0.24) !important;
  color: var(--text-color) !important;
} */

.alert::before {
  display: none !important;
}

.alert {
  position: absolute;
  width: max-content !important;
  left: 0;
  right: 0 !important;
  top: 36%;
  margin-left: auto;
  /* margin-right: auto; */
  border: none;
  z-index: 10;
}

.alert-success {
  color: #1b6a43 !important;
  background-color: #d6f5e6 !important;
  border-color: #c6f0dc !important;
}

app-navbar .alert::before {
  display: block !important;
  top: -.21rem;
  right: -.21rem;
  bottom: -.21rem;
  left: -.21rem;
}

.btn-default:hover {
  box-shadow: 0 9px 18.8px 1.2px #d2d2d2 !important;
}

.owl-next {
  color: black !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 1) !important;
}

.owl-next:hover {
  color: black !important;
  background: rgba(255, 255, 255, 1) !important;
}

.owl-prev {
  color: black !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 1) !important;
}

.owl-prev:hover {
  color: black !important;
  background: rgba(255, 255, 255, 1) !important;
}

.owl-dots button {
  background-color: #E65052 !important;
}

.backImg1 {
  min-height: 400px !important;
  background-image: url(../img/diploma1920544.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.backImg2 {
  min-height: 400px !important;
  background-image: url(../img/interview-1920x544.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.backImg3 {
  min-height: 400px !important;
  background-image: url(../img/redenservice_1920544.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.backImg4 {
  min-height: 400px !important;
  background-image: url(../img/young_businessman1920544.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.backimg1 {
  position: relative;
  height: 400px;
  width: 1900px;
  z-index: -9;
  background-image: url(../img/diploma1920544.webp);
  background-position: center;
  right: 81%;
}

.backimg2 {
  position: relative;
  height: 400px;
  width: 1900px;
  z-index: -9;
  background-image: url(../img/interview-1920x544.webp);
  background-position: center;
  right: 1.5%;
}

.backimg3 {
  position: relative;
  height: 400px;
  width: 1900px;
  z-index: -9;
  background-image: url(../img/redenservice_1920544.webp);
  background-position: center;
  right: 107%;
}

.backimg4 {
  position: relative;
  height: 400px;
  width: 1900px;
  z-index: -9;
  background-image: url(../img/young_businessman1920544.webp);
  background-position: center;
  right: 186%;
}

.imgcontainer {
  position: relative;
  height: 400px !important;
  width: 700px !important;
  z-index: -9;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

app-perfil .fa-spinner {
  font-size: 1.2em !important;
}

/* app-stackslab .fa-spinner {
    font-size: 1.2em !important;
} */

app-vocabulary .sr-only {
  font-size: 0.3em !important;
  border-color: #2B4B80
}

.imgcontainer1 {
  position: relative;
  top: -400px;
  height: 500px !important;
  width: 700px !important;
  z-index: -9;
  overflow: hidden;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

.backfake {
  position: relative;
  top: 25px;
  height: 450px;
  width: 700px;
  z-index: 9;
  background-color: transparent;
  background-position: center;
}

.backfake1 {
  position: relative;
  top: -400px;
  height: 450px;
  width: 700px;
  z-index: 9;
  background-color: transparent;
  background-position: center;
}

.hover1 {
  transition: 1s;
  /* filter: blur(6px); */
}

.divider {
  /* background: #E65052; */
  /* height: 33px; */
  text-align: left !important;
}

.redDivIcon {
  height: 54px;
}

.lastredDivIcon {
  height: 63px;
}

.cursosRecomendados {
  font-size: 21px !important;
  margin-bottom: 6px !important;
  margin-top: 12px !important;
}

.description {
  margin-top: 18px !important;
  padding: 117px 39px !important;
  background-color: #F7F8FA !important;
}

.heartflyer {
  position: relative !important;
  z-index: 999 !important;
  color: var(--text-color) !important;
}

.description-logged {
  padding: 117px 39px !important;
  background-color: #F7F8FA !important;
  margin-right: 12px !important;
  margin-bottom: 15px !important;
}

.buylist {
  display: none;
}

.buyMenu:hover .buylist {
  display: block;
}

.activo {
  padding-bottom: 20px;
  border-width: 80%;
  border-bottom: 3px solid var(--titles) !important;
}

/* .botonMisLabs:hover:before {
    transform: translateY(45px) !important;
}

.botonMisLabs:before {
    content: '' !important;
    bottom: 37px !important;
    transform: translateY(50px) !important;
    position: absolute;
    width: 100% !important;
    height: 5px !important;
    background-color: #fff !important;
    margin-bottom: 0 !important;
    left: 0px !important;
} */

app-search .page-item.active .page-link {
  z-index: 1 !important;
  color: var(--text-color) !important;
  background-color: rgb(230, 80, 82) !important;
  border-color: rgb(230, 80, 82) !important;
  text-decoration: none;
}

app-faculties .page-item.active .page-link {
  z-index: 1 !important;
  color: var(--text-color) !important;
  background-color: rgb(230, 80, 82) !important;
  border-color: rgb(230, 80, 82) !important;
  text-decoration: none;
}

app-wishlist .page-item.active .page-link {
  z-index: 1 !important;
  color: var(--text-color) !important;
  background-color: rgb(230, 80, 82) !important;
  border-color: rgb(230, 80, 82) !important;
  text-decoration: none;
}

app-mylabs .page-item.active .page-link {
  z-index: 1 !important;
  color: var(--text-color) !important;
  background-color: var(--bg-color2) !important;
  border-color: var(--bg-color2) !important;
  text-decoration: none;
}

app-search .page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: 3px;
  line-height: 1.25;
  color: rgb(230, 80, 82);
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 100% !important;
  width: 36px;
  text-align: center;
}

app-faculties .page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: 3px;
  line-height: 1.25;
  color: rgb(230, 80, 82);
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 100% !important;
  width: 36px;
  text-align: center;
}

app-wishlist .page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: 3px;
  line-height: 1.25;
  color: rgb(230, 80, 82) !important;
  background-color: #fff !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 100% !important;
  width: 36px;
  text-align: center;
}

app-mylabs .page-link {
  position: relative;
  display: block;
  padding: .25rem .375rem;
  width: 28px;
  margin-left: 3px;
  line-height: 1.25;
  color: var(--bg-color2) !important;
  background-color: #fff !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 100% !important;
  text-align: center;
}

app-search .page-link:focus {
  box-shadow: none !important;
}

app-faculties .page-link:focus {
  box-shadow: none !important;
}

app-wishlist .page-link:focus {
  box-shadow: none !important;
}

app-mylabs .page-link:focus {
  box-shadow: none !important;
}

app-search .pag ul.pagination {
  margin-bottom: 0 !important;
}

app-faculties .pag ul.pagination {
  margin-bottom: 0 !important;
}

app-wishlist .pag ul.pagination {
  margin-bottom: 0 !important;
}

app-mylabs .pag ul.pagination {
  margin-bottom: 0 !important;
}

app-search .page-item {
  margin-bottom: 0 !important;
}

app-faculties .page-item {
  margin-bottom: 0 !important;
}

app-wishlist .page-item {
  margin-bottom: 0 !important;
}

app-mylabs .page-item {
  margin-bottom: 0 !important;
}

app-search .page-link:hover {
  color: rgb(230, 80, 82) !important;
}

app-faculties .page-link:hover {
  color: rgb(230, 80, 82) !important;
}

app-wishlist .page-link:hover {
  color: rgb(230, 80, 82) !important;
}

app-mylabs .page-link:hover {
  color: var(--bg-color2) !important;
}

app-search .disabled {
  opacity: 0 !important;
}

app-faculties .disabled {
  opacity: 0 !important;
}

app-wishlist .disabled {
  opacity: 0 !important;
}

/* app-mylabs .disabled {
    opacity: 0 !important;
} */

.description h3 {
  margin-top: 10px !important;
}

.card {
  /* box-shadow: 0px 6px 12px 0px rgba(87, 84, 87, 0.4); */
  /* max-width: 214px !important;
  min-width: 214px !important;
  max-height: 290px !important;
  min-height: 290px !important;
  width: 214px !important;
  height: 290px !important; */
}

.bordercard {
  border-left: 1px solid #E2E2E2;
}

.cardimg {
  max-height: 135px !important;
}

.searchOptions {
  outline: none !important;
  width: auto !important;
  cursor: pointer;
  background-color: #181818ce;
}

.searchOptions:hover {
  background-color: #181818;
}

.unloggedcarrousel {
  /* padding-top: .3rem !important; */
  max-width: 904px !important;
  max-height: 300px !important;
}

.unloggedcarrousel1 {
  padding-top: .3rem !important;
  max-width: 100% !important;
  max-height: 300px !important;
}

.empcarrousel {
  max-width: 100% !important;
}

.loggedcarrousel {
  /* margin-left: 2px!important; */
  max-width: 100% !important;
}

.loggedcarrouselDegreePEC {
  /* margin-left: 2px!important; */
  width: 95% !important;
  /* max-height: 250px !important; */
}

.degreeCarousel {
  max-width: 99% !important;
  height: 100% !important;
}

app-logged .loggedcarrouselDegreePEC .owl-carousel .owl-stage {
  margin-top: .5rem !important;
}

app-logged .loggedcarrouselDegreePEC .owl-carousel .owl-stage-outer {
  height: 100% !important;
}

app-faculties .faculties.owl-carousel .owl-stage-outer {
  height: 100% !important;
}

app-faculties .faculties.owl-carousel .owl-stage {
  height: 100% !important;
}

app-logged .working .owl-carousel .owl-stage {
  min-width: 100% !important;
  max-width: 100% !important;
}

app-logged .working .owl-carousel .owl-item {
  max-width: 33% !important;
  width: 33% !important;
}

.unloggedTitle {
  margin-top: .9rem !important;
}

.loadcard {
  box-shadow: 0px 6px 12px 0px rgba(87, 84, 87, 0.4);
}

.cardCarousel {
  height: 274px !important;
}

.navbarbtn {
  /* color: var(--text-color); */
  color: black !important;
  font-size: 1.8vh !important;
  transform: none !important;
  margin-top: 0 !important;
}

.navbarbtnbig {
  font-size: 2vh !important;
  transform: none !important;
  margin-top: 0 !important;
  font-weight: 300 !important;
  width: 20px !important;
}

/* .navbarbtn:focus {
  background-color: transparent !important;
} */

.navbarbtnio {
  color: black !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  font-size: calc(0.48rem + 0.54vw) !important;
  width: max-content !important;
  letter-spacing: 0px;
}

.holaBtnio {
  color: black !important;
}

.holaBtnWhite {
  color: var(--text-color) !important;
}

.cats .card {
  box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1);
  border-radius: 1px;
}

.cats .card:hover {
  -webkit-animation: .3s card-hover;
  animation: .3s card-hover;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.card::after {
  display: none;
}

.card:hover {
  transition-duration: 0.3s;
  box-shadow: 0px 6px 12px 0px rgba(87, 84, 87, 0.4);
}

.card-container {
  border: 0.5px solid #E2E2E2;
  padding: 0;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.27);
  width: 231px;
  height: 298px;
  margin-right: 12px;
  margin-bottom: 9px;
}

.payCard {
  border: 1px solid #E2E2E2;
  margin-top: -22.5px;
}

/*
.card-container:hover {
    box-shadow: 0px 3px 6px 0px rgba(87, 84, 87, 0.69);
    transition: 0.5s;
} */

.cardTitle {
  display: block;
  display: -webkit-box;
  height: 15px * 1.4 * 2;
  font-size: 15px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-weight: 500;
}

.cardDesc {
  display: block;
  display: -webkit-box;
  height: 12px * 1.4 * 1;
  font-size: 12px;
  line-height: 1.4;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #686F7A;
}

.card-price {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
}

.starstrans {
  transform: scale(1.7);
  height: 35px !important;
}

.media {
  height: 100px !important;
}

.stars form p {
  text-align: left;
}

.stars label {
  color: #D0D0D0;
  font-size: 13px !important;
}

.stars label:hover {
  color: #f4c150;
}

.stars label:hover~label {
  color: #f4c150;
}

.stars input[type="radio"] {
  display: none;
}

.stars input[type="radio"]:checked~label {
  color: #f4c150;
}

.starsread form p {
  text-align: left;
}

.starsread label {
  color: #D0D0D0;
  font-size: 13px !important;
}

.starsread input[type="radio"] {
  display: none;
}

.starsread input[type="radio"]:checked~label {
  color: #f4c150;
}

.clasificacion {
  direction: rtl;
  unicode-bidi: bidi-override;
}

.card-price p {
  margin: 0;
  display: inline;
  align-self: flex-end;
  font-size: 18px;
}

.selectProfile {
  font-weight: bold;
}

.recommendPrice {
  font-size: 22px;
  font-weight: bold;
}

.line-through {
  text-decoration: line-through;
  color: #686F7A;
}

.actual-price {
  font-weight: 600;
}

.social-btn {
  font-size: 1.5rem;
}

.navbar-brand>img {
  /* width: 85% !important; */
  height: auto;
  margin-right: 10px;
  display: inline-flex !important;
}


.blueButtonZoom {
  padding: 1.2% 3%;
  font-weight: 600;
  margin: 3%;
  font-size: 1.2vh;
  background-color: #accfe4;
  border-radius: 6px;
  color: var(--text-color)
}

.zoomBoardSelection {
  padding: 1.2% 3%;
  cursor: pointer;
  color: var(--text-color);
  /* font-size: 1.2vh; */
}

.zoomBoardPosition {
  position: relative;
  z-index: 999;
  color: #545454;
  font-weight: 600;
  justify-content: start;
  width: 6%;
  color: var(--text-color);
  align-items: baseline;
}


.navbar-buttons {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.navbar-buttons:hover {
  color: var(--text-color) !important;
}

.navbar-buttons>li>a {
  border: none !important;
  background: none !important;
  margin-right: 3rem;
}

.navbar-buttons>li .badge {
  position: absolute;
  top: 0.1rem;
  right: 0.2rem;
}

.labinfo {
  max-height: 298px;
  min-height: 298px;
  position: relative;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btnlab {
  position: absolute;
  bottom: 0% !important;
}

.chartjs-render-monitor {
  height: 100%;
}

/* .navbar-brand:hover {
  color: #343b43 !important;
} */

.separador {
  border-top: 1px solid #DEDFE0;
}

.desclablanding {
  background-color: #E8E9EB;
}

.mega-dropdown-toggle:hover>.dropdown-menu {
  /* height: 400px; */
  font-size: .8125rem;
  display: block;
  transition: color .25s;
  color: #404040;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.25rem -0.25rem rgba(64, 64, 64, 0.2) !important;
  z-index: 2000;
}

.searchcanvas {
  display: none;
}

.closeCatTree {
  display: none !important;
}

/* .mega-dropdown-toggle:hover>.pointer::before {
    border: 8px solid transparent;
    border-bottom-color: #fff;
    content: "";
    height: 0;
    left: 25%;
    box-shadow: 0 0.75rem 0.875rem -0.5625rem black !important;
    opacity: 1;
    transition: opacity .1s cubic-bezier(.3, .5, .5, 1);
    position: absolute;
    top: calc(-8px + -.5rem);
    width: 1px;
} */

.mega-dropdown.pointer {
  /* margin-top: 12px !important; */
  left: 52px;
}

.mega-dropdown.pointer.userdropdown {
  /* margin-top: 13.5px !important; */
  left: 15px;
}

/*
.dropdown-toggle .pointer {
    margin-top: 0 !important;
} */

.mega-dropdown-toggle:hover>.arrowCont, .dropdown-toggle:hover>.arrowCont {
  width: 100%;
  z-index: 999;
}

.mega-dropdown-toggle:hover>.arrowCont>.arrow, .dropdown-toggle:hover>.arrowCont>.arrow {
  border: 11px solid transparent;
  border-bottom-color: #fff;
  content: "";
  height: 0 !important;
  left: calc(50% - 11px);
  opacity: 1;
  animation: dropdown-slide-down .3s;
  /* transition: opacity .3s cubic-bezier(.3, .5, .5, 1); */
  width: 1px;
  margin-top: -7px !important;
  position: relative;
}

.mega-dropdown-toggle:hover>.arrowCont>.arrow2, .dropdown-toggle:hover>.arrowCont>.arrow2 {
  border: 11px solid transparent;
  border-bottom-color: #fff;
  content: "";
  height: 0 !important;
  left: 0;
  opacity: 1;
  animation: dropdown-slide-down .3s;
  /* transition: opacity .3s cubic-bezier(.3, .5, .5, 1); */
  width: 1px;
  margin-top: -10px !important;
  position: relative;
  left: calc(50% - 7px);
}

.btnCatTree:hover>.arrowCont>.arrow {
  border-bottom-color: #f4f4f4 !important;
}

.center-spacing {
  margin-left: auto;
  margin-right: auto;
  width: 71.4%;
  max-width: 1365px;
}

app-card .center-spacing {
  width: 71.4%;
}

.center-padding {
  padding-left: 18%;
  padding-right: 18%;
}

.nav-link:hover {
  color: #E65052 !important;
}

.iconcampus {
  display: none !important;
  width: 50px;
  background-color: transparent;
  color: var(--text-color);
}

.iconcampus:focus {
  width: 50px;
  background-color: transparent;
  color: var(--text-color);
}

.nav-link.active {
  border-color: #E65052 !important;
  background-color: transparent;
  color: #E65052 !important;
  /* -webkit-box-shadow: 0 0.75rem 0.875rem -0.5625rem rgba(230, 80, 82, 0.24) !important; */
  box-shadow: 0 0.75rem 0.875rem -0.5625rem rgba(230, 80, 82, 0.24) !important;
}

.fa-clone {
  font-size: 18px !important;
}

.text-18 {
  font-size: 18px;
}

.facultiesDivider {
  background-color: #3C5176;
}

.catTree:hover {
  border-left: 6px solid var(--titles);
}

.catTreewhite:hover {
  border-left: 6px solid var(--titles);
}

.widget-custom-menu ul>li:hover>a {
  color: black !important;
  font-weight: 900;
}

.widget-custom-menu ul>li:hover {
  color: black !important;
  font-weight: 900;
}

.custom-file-label {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.owl-item {
  margin-right: 0px !important;
}

.px-6 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.carousel-title {
  font-size: 27px !important;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  text-align: left;
  margin-top: 0px !important;
  margin-bottom: -15px !important;
}

.owl-title {
  font-size: 27px !important;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  text-align: left;
  /* margin-top: 0px !important;
    margin-bottom: 0px !important; */
}

.iziToast::after {
  box-shadow: none !important;
}

.iziToast {
  max-width: 300px;
  height: 75px;
  margin-right: 45px !important;
  border-radius: 5px;
  display: inline-block;
  clear: both;
  position: relative;
  min-height: 34px;
  pointer-events: all;
  cursor: default;
  transform: translateX(0);
  border: none;
}

.iziToast-wrapper {
  padding: 10px 15px;
  display: flex;
  z-index: 99999;
  position: fixed;
  width: 100%;
  pointer-events: none;
  flex-direction: column;
}

.iziToast-danger {
  background: #EC5252 !important;
  color: var(--text-color) !important;
}

.iziToast-success {
  background: rgba(92, 184, 92, 1) !important;
  color: var(--text-color) !important;
}

.iziToast-body {
  position: relative;
  /* padding: 0 0 0 10px; */
  height: 100%;
  min-height: 36px;
  margin-top: 0 !important;
  padding-left: 0 !important;
  line-height: 16px;
  text-align: left;
  float: left;
  font-size: 14px;
}

.iziToast>.iziToast-body>strong {
  margin: 0 !important;
}

.iziToast-tit {
  font-size: 18px !important;
  margin-bottom: 3px !important;
}

.btnH {
  display: inline-block;
  font-weight: bold;
  color: #404040;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0 1.75rem;
  font-size: 1rem;
  line-height: 44px;
  border-radius: 0;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.hola {
  font-size: 15px !important;
  padding-bottom: 0 !important;
  font-weight: 600;
  text-decoration: none !important;
}

.header-logged .header-categorias, .header-logged {
  font-size: 1.5rem !important;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 400;
}

.descuento {
  font-size: 1rem !important;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 400;
}

.descuentoPayment {
  font-size: 16px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 400;
  margin-top: 12px;
}

#profile-img::after {
  background: #E65052 !important;
  opacity: 1 !important;
}

.author-card .author-card-cover {
  height: 78px;
}

.userdropdown {
  width: 10rem !important;
  left: 15px;
}

.userdropdown a {
  height: 42px;
}

.mega-dropdown-toggle:hover .userdropdown {
  height: auto;
}

.faculties .owl-nav>button {
  top: 55% !important;
}

.faculties .owl-nav>button.owl-next {
  right: -2.5% !important;
}

.faculties .owl-nav>button.owl-prev {
  left: -2.5% !important;
}

/* app-faculties .faculties .owl-nav>button.owl-next {
    right: -0.9% !important;
}

app-faculties .faculties .owl-nav>button.owl-prev {
    left: -0.9% !important;
} */

app-faculties .facultiesCarrousel {
  min-height: 300px;
  max-height: 300px;
  height: 300px;
}

app-faculties .innerDegree {
  max-width: 1365px !important;
}

.fa-spinner {
  font-size: 23px !important;
}

.checkPay {
  font-size: 23px !important;
}

.def {
  overflow: auto !important;
  height: 74vh !important;
}

app-vocabulary ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-writing ::-webkit-scrollbar {
  width: 6px !important;
  height: 8px !important;
}

app-quizzes ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-terms ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-audiogap ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-writing ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-grammar ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-grammar-exercise ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-certificates ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

app-student-challenges ::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}


/* app-vocabulary ::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

app-audiogap ::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

app-writing ::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
} */

app-quizzes ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  background: #C8C8C8 !important;
}

app-audiogap ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  /* background: #C8C8C8 !important; */
  background-color: #304777 !important;
}

app-writing ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  /* background: #DD454B !important; */
  background-color: #304777 !important;
}

app-grammar ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  /* background: #C8C8C8 !important; */
  background-color: #304777 !important;
}

app-grammar-exercise ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  /* background: #C8C8C8 !important; */
  background-color: #304777 !important;
}

app-audiogap ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C25B66 !important; */
  /* background: #C8C8C8 !important; */
  background-color: #304777 !important;
}

app-terms ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #C8C8C8 !important; */
  background-color: #304777 !important;
}

app-vocabulary ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #dd454b !important; */
  background-color: #304777 !important;
}

app-certificates ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #dd454b !important; */
  background-color: #304777 !important;
}

app-student-challenges ::-webkit-scrollbar-thumb {
  /* background: #257cff ; */
  border-radius: 21px;
  /* background: #dd454b !important; */
  background-color: #304777 !important;
}

.learn div.mat-card-header-text {
  width: 100% !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}

.answer div.mat-card-header-text {
  width: 100% !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}

/* Centrado vasos */

.st5 .todo-container {
  margin-top: 6% !important;
}

.st5 .done-container {
  margin-top: 6% !important;
}

.st6 .todo-container {
  margin-top: 1% !important;
}

.st6 .done-container {
  margin-top: 3% !important;
}

.st7 .todo-container {
  margin-top: 1% !important;
}

.st7 .done-container {
  margin-top: 1% !important;
}

/*
.st8 {
    margin-top: 5% !important;
} */

/* .drag-drop {
    position: relative;
    height: 44px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    border: 0;
    font-size: .75rem;
    letter-spacing: .1em;
    z-index: 1;
    text-transform: uppercase;
    text-decoration: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background-color: #f2f2f2;
    border-color: #e0e0e0;
    box-shadow: 0 3px 5px 0.2px rgba(64, 64, 64, 0.24);
} */

.done-container .cdk-drop-list-dragging .cdk-drag-placeholder {
  padding: 0;
}

/* #557B97 */

.tooltip-inner {
  background-color: rgb(52, 59, 67) !important;
  /* opacity: .78 !important; */
}

.comp-nav {
  padding-right: 115px !important;
}

app-navbar .search-block {
  width: 20vw !important;
  position: absolute;
  z-index: 9999;
  background-color: transparent;
  display: none;
  box-shadow: 0 0.75rem .875rem 0.075rem rgba(0, 0, 0, 0.466);
}

.search-blockcanvas {
  position: absolute;
  left: 1.5rem;
  z-index: 9999;
  background-color: transparent;
  display: none;
  box-shadow: 0 0.75rem 1.175rem 0.075rem rgba(0, 0, 0, 0.466);
}

.searchCanvas1 {
  cursor: pointer;
}

.searchCanvas1:hover {
  background-color: gray;
  color: var(--text-color);
}

/* @media (max-width: 1353px) {
    .searchbar{
        width: 30vw;
    }
} */

.searchbar {
  max-width: 20vw !important;
}

app-unlogged .searchbar {
  margin-left: 147px !important;
}

/* app-logged .searchbar {
    max-width:
} */

.search>.defaultSearch {
  background-color: transparent;
}

.search>.defaultSearch:focus+app-navbar .search .btnSearch {
  background-color: transparent !important;
}

.search>.defaultSearch:focus {
  background-color: transparent;
  color: var(--text-color);
}

footer {
  background-color: var(--bg-color2);
  border-top: 1px solid rgba(50, 50, 50, 0.3);
  width: 100%;
  bottom: 0;
  min-height: 130px;
}

.navbar-sticky.navbar-stuck {
  -webkit-animation: none !important;
  animation: none !important;
}

.btnCat {
  font-size: 15px;
  color: rgba(80, 69, 69, 0.781) !important;
  text-transform: none !important;
  width: 15%;
}

.btnCat:hover {
  box-shadow: rgba(87, 84, 87, 0.4) 0px 3px 12px 0px !important;
}

.center-spacing-faculties {
  margin-left: auto;
  margin-right: auto;
  width: 71.4%;
  max-width: 1365px;
}

app-faculties .ng2-carouselamos-wrapper {
  padding-left: 5px !important;
  height: 230px !important;
  display: flex !important;
  overflow: hidden !important;
}

app-unlogged .facultiesCarousel .ng2-carouselamos-wrapper {
  padding-left: 5px !important;
  height: 325px !important;
  display: flex !important;
  overflow: hidden !important;
}

.ng2-carouselamos {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.controls button {
  outline: none !important;
  z-index: 200;
}

.controls {
  z-index: 200;
}

.reviews .owl-item>div {
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 15px;
}

app-faculties .carouselFaculties.owl-carousel.owl-carousel .owl-nav button.owl-next, .carouselFaculties.owl-carousel .owl-nav button.owl-prev {
  top: 39% !important;
  margin-top: 0px !important;
  background-color: transparent !important;
  color: var(--text-color) !important;
  border: none !important;
  box-shadow: none !important;
}

app-faculties .carouselFaculties.owl-carousel.owl-carousel .owl-nav button.owl-next::after {
  border: solid rgb(255, 255, 255) !important;
  border-width: 3px 0px 0px 3px !important;
  display: inline-block !important;
  padding: 18px !important;
  transform: rotate(135deg) !important;
  content: '' !important;
}

app-faculties .carouselFaculties.owl-carousel .owl-nav button.owl-prev::after {
  border: solid rgb(255, 255, 255) !important;
  border-width: 0 3px 3px 0 !important;
  display: inline-block !important;
  padding: 18px !important;
  transform: rotate(135deg) !important;
  position: relative !important;
  content: '' !important;
}

app-faculties .carouselFaculties.owl-carousel.owl-carousel .owl-nav button.owl-next {
  top: 39% !important;
  margin-top: 0px !important;
  right: -5% !important;
}

app-faculties .carouselFaculties.owl-carousel .owl-nav button.owl-prev {
  top: 39% !important;
  margin-top: 0px !important;
  left: -5% !important;
}

app-faculties .carouselFaculties.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

app-faculties .carouselFaculties.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0 !important;
  transition: opacity .5s !important;
  /* width: 16% !important; */
}

app-faculties .carouselFaculties.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1 !important;
}

.reviews .review {
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -moz-line-clamp: 4;
  -ms-line-clamp: 4;
  -o-line-clamp: 4;
  line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis !important;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis !important;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  white-space: normal;
  height: 84px !important;
}

.reviews button.owl-prev {
  top: 54% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.reviews button.owl-prev:hover {
  box-shadow: 0 0.625rem 0.9375rem 0 rgba(0, 0, 0, 0.12) !important;
}

.reviews button.owl-next {
  top: 54% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.reviews button.owl-next:hover {
  box-shadow: 0 0.625rem 0.9375rem 0 rgba(0, 0, 0, 0.12) !important;
}

.searchbar .btn-altea:focus {
  background: transparent !important;
  color: var(--text-color) !important;
}

.howitworks {
  transform: translateX(0);
  background: linear-gradient(-45deg, #EC5252 0, #6E1A52 100%);
  font-family: Inter, helvetica neue, Helvetica, Arial, sans-serif !important;
  /* height: 105px; */
}

.fa-bullseye {
  color: var(--alt-text-color);
  /* font-size: 43px !important; */
}

.fa-user-check {
  color: var(--text-color);
  font-size: 43px !important;
}

.fa-history {
  color: var(--text-color);
  font-size: 43px !important;
}

.card-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  letter-spacing: .1px !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 4.5px !important;
}

.clasificacionflyer {
  padding: 0px 1px 0px 1px;
}

.navbarHeight {
  height: 84%;
  /* top: 144px; */
}

.verticalPadding {
  padding-top: 12px;
  padding-bottom: 12px;
}

.catTree {
  background-color: #F7F8FA;
}

.catTreewhite {
  background-color: white;
  text-transform: capitalize;
}

.cat {
  background-color: #F7F8FA;
}

.cursorPointer {
  cursor: pointer;
}

.font16 {
  font-size: 12px
}

.pricePreview {
  font-weight: 400;
  font-size: 15px
}

.offerPreview {
  font-weight: 600;
  font-size: 18px;
}

.cartPreview {
  width: 265px;
}

.formBtn-login {
  background-color: transparent;
  border: 2px solid var(--bg-red);
  color: var(--bg-red);
  border-radius: .375rem;

  height: 35px !important;
  font-size: calc(0.6rem + 0.24vw);
  align-items: center;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.formBtn-login:hover {
  background-color: var(--bg-red);
  color: var(--text-color);
}

.formBtn-login:active {
  background-color: var(--bg-red);
}

.formBtn-login:focus {
  outline: none;
}

.formBtn-login:disabled {
  background-color: var(--bg-red);
  cursor: not-allowed;
}

.formBtn-login:disabled:hover {
  background-color: var(--bg-red);
}

.formBtn-signup {
  background-color: var(--bg-red);
  color: var(--text-color);
  border-radius: .375rem;
  font-size: calc(0.6rem + 0.24vw);
  width: 120px;
  height: 35px !important;
  align-items: center;
  cursor: pointer;
}

.formBtn-signup:hover {
  background-color: var(--bg-red) !important;
  color: var(--text-color) !important;
}

.formBtn-signup:active {
  background-color: var(--bg-red);
}

.formBtn-signup:focus {
  outline: none;
}

.formBtn-signup:disabled {
  background-color: var(--bg-red);
  cursor: not-allowed;
}

.formBtn-signup:disabled:hover {
  background-color: var(--bg-red)
}

.cart-btn {
  display: flex;
  justify-content: center;
  background-color: white;
  align-items: center;
  color: var(--bg-red) !important;
  border: 2px solid var(--bg-red);
  border-radius: 0.375rem;
  font-size: 12px;
  width: 50px;
  height: 35px !important;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.cart-btn:hover {
  background-color: var(--bg-red) !important;
  color: var(--text-color) !important;
}

.holaBtn {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 0;
  font-size: .75rem;
  letter-spacing: .1em;
  z-index: 1;
  text-decoration: none !important;
  touch-action: manipulation;
  background-color: transparent;
}

.payForm {
  font-weight: 100;
  max-width: 1218px;
}

.font18 {
  font-size: 18px;
}

.font21 {
  font-size: 21px;
}

.addTarjeta {
  cursor: pointer;
  font-size: 15px;
  color: #007791;
  font-family: 'Inter', 'helvetica neue', Helvetica, Arial, sans-serif
}

.tarjetaMuted {
  font-size: 15px;
  font-family: 'Inter', 'helvetica neue', Helvetica, Arial, sans-serif
}

.paymentToggle {
  border-radius: 2%;
  /* height: 450px;
    max-height: 450px; */
  height: max-content;
  /* margin-bottom: 330px; */
}

select#country {
  height: 44px;
}

.notPay {
  min-width: 200px !important;
  max-width: 200px !important;
}

.max650 {
  max-width: 650px;
}

.max100 {
  max-width: 100%;
}

.buyHistory {
  font-size: 30px;
  font-weight: 400;
}

.py-9 {
  padding-top: 9px;
  padding-bottom: 9px;
}

/* app-navbar .custom-control-label::before {
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 2.5px;
    left: -1rem;
} */

.custom-control-input:checked~.custom-control-label::before {
  border-color: #ec5252;
  background-color: #ec5252;
}

app-navbar .custom-radio .custom-control-input:checked~.custom-control-label::after, app-vocabulary .custom-radio .custom-control-input:checked~.custom-control-label::after, app-terms .custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: none;
}

.incidencia {
  /* box-shadow: 0 0 1.175rem 0.075rem rgba(64, 64, 64, 0.15); */
  border: 1px solid #d7d7df;
  border-radius: 3px;
  background-color: rgba(246, 248, 252, 0.603);
}

.bg-active {
  background-color: #fff;
}

app-vocabulary .custom-control-label::before, app-terms .custom-control-label::before {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 2.5px;
  left: 0;
}

.gauge-chart {
  width: auto !important;
}

.ngx-gauge-meter {
  width: 100% !important;
}

/* in-flight clone */

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=100);
  pointer-events: none;
}

/* high-performance display:none; helper */

.gu-hide {
  left: -9999px !important;
}

/* added to mirrorContainer (default = body) while dragging */

.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* added to the source element while its mirror is dragged */

.gu-transit {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  display: none;
}

.navi-link:hover {
  color: #616161;
}

.text-altea {
  color: #EC5252;
}

.page-title {
  min-height: 150px;
  background-image: url(../img/shop-pattern.webp);
  background-size: 60%;
  background-position-x: 100%;
}

.navbar-wrapper {
  border: none !important;
}

.searchItem {
  width: 280px;
}

.birthLine {
  background: none;
  color: inherit;
  margin-top: 15px !important;
}

/* .navbarscrollio {
  background-color: white !important;
} */

.navbarscrollioblue {
  /* background-color: var(--bg-color2) !important; */
  /* background-color: var(--bg-color2); */
  background-color: white !important;
}


/* NAVBAR   */
/* .nav {
    height: 69px;
    width: 100%;
    background-color: #010024;
    position: fixed;
  }

  .nav > .nav-header {
    display: inline;
  }

  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: var(--text-color);
    padding: 10px 10px 10px 10px;
  }

  .nav > .nav-btn {
    display: none;
  }

  .nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
  }

  .nav > .nav-links > a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
  }

  .nav > .nav-links > a:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .nav > #nav-check {
    display: none;
  }

  @media (max-width:600px) {
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #333;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
      z-index: 9;
    }
    .nav > .nav-links > a {
      display: block;
      width: 100%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
  } */

/* --- */


.borderBottomSearch {
  border-bottom: 1px solid rgba(245, 245, 245, 0.61);
}

app-logged .done button.owl-next, .done button.owl-prev {
  margin-top: 0 !important;
  top: calc(50% - 24px) !important;
}

app-faculties .degree button.owl-next, .degree button.owl-prev, .subject button.owl-prev, .subject button.owl-next {
  margin-top: 0 !important;
  top: calc(50% - 24px) !important;
}

app-faculties .innerSubject {
  width: 80% !important;
}

app-subjects .innerSubject {
  max-width: 81.8% !important;
}

app-logged .loggedcarrouselDegreePEC .degreeCarousel button.owl-prev {
  left: -1.7rem !important;
}

app-logged .loggedcarrouselDegreePEC .degreeCarousel button.owl-next {
  right: -1.7rem !important;
}

app-subjects .subject .innerSubject button.owl-prev {
  left: -1.7rem !important;
}

app-subjects .subject .innerSubject button.owl-next {
  right: -1.7rem !important;
}

app-faculties .subject .innerSubject button.owl-prev {
  left: -1.5rem !important;
}

app-faculties .subject .innerSubject button.owl-next {
  right: -1.5rem !important;
}

app-logged .loggedcarrouselDegreePEC .degreeCarousel button.owl-next, .loggedcarrouselDegreePEC .degreeCarousel button.owl-prev {
  margin-top: 0 !important;
  top: calc(50% - 24px) !important;
}

app-faculties .degree .owl-stage-outer, .subject .owl-stage-outer {
  height: 100% !important;
}

app-faculties .degree .owl-stage, .subject .owl-stage {
  margin-top: .5rem !important;
}

app-logged .center-spacing-faculties {
  margin-left: auto;
  margin-right: auto;
  width: 75.85%;
  max-width: 1450px;
  height: 250px !important;
  transition: all .3s ease-in-out;
}

app-logged .ng2-carouselamos {
  padding-left: 0px;
  display: flex !important;
  overflow: unset !important;
  max-width: 1364px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  transition: all .3s ease-in-out;
  height: max-content !important;
  transition: width .3s ease-in-out;
}

app-logged .ng2-carouselamos-container {
  height: 100% !important;
  width: 100%;
  transition: all .3s ease-in-out;
}

app-logged .ng2-carouselamos-container .ng2-carouselamos-wrapper {
  height: 100% !important;
  transition: all .3s ease-in-out;
  padding-left: 0px;
  margin-left: 0px !important;
  display: flex !important;
  overflow: hidden !important;
}

app-unlogged .center-spacing {
  margin-left: auto;
  margin-right: auto;
  width: 71.4%;
  max-width: 1365px;
  /* height: 300px !important; */
}

app-unlogged .ng2-carouselamos {
  padding-left: 0px;
  margin-left: 0px !important;
  /* height: 300px !important; */
  display: flex !important;
  overflow: unset !important;
}

app-unloggedd .ng2-carouselamos-wrapper {
  padding-left: 0px;
  margin-left: 0px !important;
  height: 300px !important;
  display: flex !important;
  overflow: inherit !important;
}

app-regform .options .facebook {
  background: #3b5998;
}

app-regform .regfondo {
  background-image: url("../img/space.jpg");
  background-size: cover;
  border-radius: 3px 0px 0px 3px;
  display: block;
}

app-footer .center-spacing {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}

/* app-footer .no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin-top: auto;
    margin-bottom: auto;
} */

.cardFac {
  box-shadow: none !important;
}

app-unlogged .essCarousel .ng2-carouselamos-wrapper {
  height: 300px !important;
  display: flex !important;
}

app-perfil .author-card .author-card-profile .author-card-avatar>img {
  display: block !important;
  /* width: 80% !important;
    height: 80% !important; */
  /* padding-left: 15px !important; */
  background-image: cover;
}

app-card-destacados .owl-stage-outer {
  height: 100% !important;
}

app-navbar .dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
  white-space: normal;
}

app-navbar .mega-dropdown .column:last-child {
  box-shadow: 0 0.5rem 1.25rem -0.25rem rgba(64, 64, 64, 0.2) !important;
}

.borderForm {
  border: 1px solid #e4e4e4;
}

app-quizzes .paginationQuest .page-item.active .page-link {
  z-index: 1 !important;
  color: var(--text-color) !important;
  background-color: #C8363F !important;
  border-color: #C8363F !important;
  text-decoration: none;
}

app-quizzes .paginationQuest .page-link {
  position: relative;
  display: block;
  margin-left: 0 !important;
  color: #C8363F;
  border: none !important;
  border-radius: 100% !important;
  text-align: center;
}

app-quizzes .page-item {
  margin-bottom: 0 !important;
}

app-quizzes .notShowArrow .page-item [aria-label='Previous'] {
  display: none !important;
}

app-quizzes .notShowArrow .page-item [aria-label='Next'] {
  display: none !important;
}

app-quizzes .page-item .page-link {
  background-color: transparent !important;
}

app-quizzes .page-item .page-link {
  background-color: transparent !important;
}

app-quizzes .page-link:focus {
  box-shadow: none !important;
}

.mat-expansion-panel-body {
  padding: 0 !important;
}

.mat-expansion-panel {
  background-color: transparent !important;
  box-shadow: none !important;
}

app-navbar .op1 {
  top: 0;
  transition: all .3s ease-out;
  z-index: 1001;
}

app-navbar .op0 {
  /*top: -180px;
  */transition: all 1.5s ease-out;
  -webkit-transition: all 1.5s ease-out;
  -moz-transition: all 1.5s ease-out;
  -ms-transition: all 1.5s ease-out;
  -o-transition: all 1.5s ease-out;
}

.blocked {
  filter: blur(5px);
  z-index: 0 !important;
}

.gridHeader {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr);
}

.gridTitleLab {
  grid-column: 3/11;
}

.gridTitle {
  grid-column: 13/13;
}

.gridTitle2 {
  grid-column: 1/3;
}

.mat-tooltip {
  font-size: 15px !important;
}

/* .apForm::placeholder,
option:nth-child(1) {
    color: #b7b7b7 !important;
} */

.apForm, .apForm2 {
  border: none !important;
}

.apForm:focus, .apForm2:focus {
  outline: none !important;
}

.apForm2::placeholder {
  color: #eb8187 !important;
}

.optForm:hover {
  background-color: #2f5597 !important;
  color: var(--text-color) !important;
}

button {
  outline: none !important;
}

.btn-sub {
  border-radius: 6px;
  background-color: #00de64;
}

.btn-stack {
  position: relative;
  border: 0;
  cursor: pointer;
  z-index: 1;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  border-radius: 3%;
  font-size: 130%;
  color: var(--text-color);
  background-color: #C8363F;
  width: max-content
}

.btn-introduction-start {
  cursor: pointer;
  border-radius: 3%;
  font-size: 1.2vh;
  padding: 1.5% 3%;
  color: var(--text-color);
  background-color: #dd454b;
  border-radius: 4px;
  width: 30%;
  height: 100%;
  outline: none !important;
  border: none;
  justify-content: center;
  display: flex;
  margin: auto;
}


.deanOpt {
  font-size: 130%;
  color: #C8363F;
  cursor: pointer;
}

.subrayado {
  border-bottom: 1px solid black;
}

.subrayadoWhite {
  border-bottom: 1px solid white;
}

.zzzzz {
  background-color: yellow;
}

.text-red {
  color: #ff5c5c;
  font-weight: 700;
}

.repUp {
  bottom: 100%;
}

.repDown {
  top: 100%;
}

.wikis {
  color: blue !important;
}

.wikis:hover {
  text-decoration: underline blue !important;
}

.wiki_popup {
  position: fixed;
  z-index: 9999;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 3px;
}

.tooltip_popup {
  transform: translateX(-50%);
  position: fixed;
  width: max-content;
  z-index: 9999;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  border-radius: 3px;
}

.tt {
  transform: translate(-50%, -100%);
}

.bg-delete {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to right, transparent 94%, red 94%);
}

.ck-editor__editable_inline {
  height: 100%;
}

.ck-editor__main {
  height: 100%;
}

.ck-editor {
  height: 100% !important;
}

.ck.ck-balloon-panel {
  z-index: 100000 !important;
}

.ck-toolbar-container {
  height: 30px !important;
}

.ck-toolbar-container>.ck-toolbar {
  height: 100% !important;
}

.bg__grammar {
  background-color: #FFDA69;
}

.bg__vocabulary {
  background-color: #BAFDBE;
}

.bg__ortography {
  background-color: #F2A9A4;
}

.bg__grammar_to_correct, .bg__vocabulary_to_correct, .bg__ortography_to_correct {
  z-index: 10;
  white-space: nowrap;
}

.bg__grammar_to_correct::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 2px;
  bottom: 0;
  transform: scale(1.1, 1.2);
  border: 3px solid #FFDA69;
  z-index: -1;
}

.bg__vocabulary_to_correct::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 2px;
  bottom: 0;
  transform: scale(1.1, 1.2);
  border: 3px solid #BAFDBE;
  z-index: -1;
}

.bg__ortography_to_correct::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 2px;
  bottom: 0;
  transform: scale(1.1, 1.2);
  border: 3px solid #F2A9A4;
  z-index: -1;
}

.mat-tooltip {
  font-size: 15px !important;
}

.areaBoxWriting {
  box-shadow: 0 7px 7px -8px #304661;
  -moz-box-shadow: 0 7px 7px -8px #304661;
  -webkit-box-shadow: 0 7px 7px -8px #304661;
}

.link-to-lpath{
  display: flex;
  font-size: calc(0.6rem + 0.45vw);
  color: var(--text-color);
  align-items: center;
  cursor: pointer;
  width: 100%;
  gap: 10px;

}

.ex-box-blue-color{
  background-color: var(--bg-color2);
}

@keyframes fadeInQuizz {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
    /* -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); */
  }
}

@keyframes fadeOutQuizz {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
    /* -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); */
  }
}

.btns-navbar {
  justify-content: center;
  margin-left: 5rem;
}

@media (max-width: 1200px) {
  .btns-navbar {
    justify-content: center;
    margin-left: 0;
    margin-top: 1rem;
  }

  .navbar-nav {
    margin-right: 0 !important;
  }
}

.navbar-nav {
  display: flex !important;
  text-align: center !important;
  margin-right: 5rem !important;
}

@media (max-width: 1430px) {
  .btns-navbar {
    margin-left: 0 !important;
  }

  .navbar-nav {
    margin-right: 0 !important;
  }

  .logoGeo {
    margin-left: 0 !important;
  }
}

.cart-item-count, .cart-item-count-logout {
  position: relative;
  top: -10px;
  background-color: #c4302b;
  color: var(--text-color);
  border-radius: 50%;
  padding: 0px 5px;
  font-size: 14px;
  text-decoration: none;
}

.cart-item-count-logout {
  top: -15px;
  background-color: #c4302b;
  color: var(--text-color);
  font-weight: 500;
  padding: 0 5px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.labsdrop a {
  text-decoration: none !important;
}

.header-ex-border{
  display: flex;
  justify-content: end;
  width: 100%;
  border-bottom: 1.5px solid #496174;
}

.round-name-color{
  color: #c4302b !important;
}

.round{
  font-size: calc(0.6rem + 0.90vw);
}

.review-name-color{
  color: rgb(196, 99, 43) !important;
}

.ex-title{
  width: 100%;
  margin-top: 21px;
}

.text-justify{
  text-align: justify;
}

.normal-zoom{
  font-size: calc(0.6rem + .18vw);
  align-self: baseline;
}

.zoom-1-2{
  font-size: calc(0.6rem + .18vw);
  zoom: 1.2;
  align-self: baseline;
}

.zoom-1-5{
  font-size: calc(0.6rem + .18vw);
  zoom: 1.5;
  align-self: baseline;
}

.overflow-auto{
  overflow: auto;
}

.suggest-color{
  color: #D3E201 !important;
}

.icon-sizing{
  font-size: calc(0.6rem + 0.9vw);
  align-self: center;
}

.align-items-center{
  align-items: center;
}

.align-self-center{
  align-self: center;
}

.text-align-left{
  text-align: left;
}

.left-0{
  left: 0;
}

.right-0{
  right: 0;
}

.cursor-default{
  cursor: default;
}

.bg-induct{
  background-color: var(--titles);
}

.border-radius-3{
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.border-radius-6{
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.border-radius-9{
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

.text-align-start{
  text-align: start;
}

.text-size-18{
  font-size: calc(0.6rem + 0.18vw);
}

.text-size-36{
  font-size: calc(0.6rem + 0.36vw);
}

.text-size-45{
  font-size: calc(0.6rem + 0.45vw);
}

.text-size-60{
  font-size: calc(0.6rem + 0.60vw);
}

.text-size-75{
  font-size: calc(0.6rem + 0.75vw);
}

.text-size-90{
  font-size: calc(0.6rem + 0.90vw);
}

.text-size-54{
  font-size: calc(0.6rem + 0.54vw) !important;
}



.background-size-cover{
  background-size: cover;
}

.numStack{
  font-family: 'Helvetica';
  text-transform: uppercase !important;
  font-size: 3vw !important;
  font-weight: 600 !important;
  z-index: 1 !important;
  color: #a7a7a7 !important;
  float: left !important;
  z-index: 999 !important;
  position: absolute !important;
  top: 0% !important;
  left: 1% !important;
}

.cross-staxs-position{
  color:#979595;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 1vw;
  z-index: 999;
}

.fullscreen > i{
  font-size: calc(0.6rem + 1vw);
  color: var(--text-color);
  cursor: pointer;

}

.fullscreen > i:hover{
  color: #D3E201;

}

.button-action:hover .tooltip_popup {
  display: block;
}

.button-action:hover{
  background-color: var(--titles);
}

.button-action{
  background-color: transparent;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border: 1.5px solid #ffffff7a;
  color: var(--text-color);
  margin: 0 6px;
  font-weight: 600;
  font-size: calc(0.6rem + 0.54vw);
  min-width: 41px;
  min-height: 36px;
}


.header-exercise{
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 1rem;
  /* box-shadow: 0px 3px 3px rgba(0, 0, 0, .7) !important;
  background: linear-gradient(180deg, rgba(50,70,85,1) 0%, rgba(32,51,65,1) 12%, rgba(32,51,65,1) 100%); */

}

.round{

  font-weight: 600;
}

.course-title-side{
  font-size: calc(0.6rem + .48vw);
  font-weight: 600;
  color: var(--titles);
}


.button-dashboard{
  position: relative;
  font-size: calc(0.6rem + .35vw);
  text-align: center;
  align-items: center;
  background-color: var(--orange-buttons);
  padding: 6px;
  font-weight: 600;
  padding-left: 35px !important;
  padding-right: 35px !important;
  width: 10%;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, .7);
  color: black;
  border-radius: 0.375rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}



.header-ex{
  display: flex;
  justify-content: space-between;
  /* background: var(--bg-color2); */
  /* background: linear-gradient(180deg, rgba(50,70,85,1) 0%, rgba(32,51,65,1) 12%, rgba(32,51,65,1) 100%); */
  font-size: calc(0.6rem + .33vw);
  /* box-shadow: 0px 3px 3px rgba(0, 0, 0, .7) !important; */
}

.modal-slider{
  position: absolute;
  width: 36%;

  padding: 0.9rem !important;
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  -ms-border-radius: 0.375rem;
  -o-border-radius: 0.375rem;
  background-color: #2b4252;
  z-index: 9999;
}

.text-slider{
  display: flex;
  width: 100%;
  flex-direction: column;
}

.mat-accent .mat-slider-track-fill {
  background-color: var(--titles) !important;
}

.mat-slider-thumb-label {
  background-color: var(--titles) !important;

}

.mat-slider-thumb {
  background-color: var(--titles) !important;
}

.button-action > i::before {
  background: transparent;
}

@media (max-width: 1500px){


  .button-action > i{
    font-size: calc(0.6rem + 0.8vw) !important;
  }

  .modal-slider{
    width: 51%;
  }
}
