/* NAVBAR */
.navbar {
  width: 100%;
  height: 134px;
  padding: 0 0 0 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  transition: all .3s ease;
}

.navbarScroll {
  background: #fcd249;
  background-color: #fcd249;
}

.navbar .navbarLogo {
  width: 25%;
  height: 100%;
  position: relative;
  float: left;
  transition: all .3s ease;
}
.navbar .navbarLogo img {
  max-width: 100px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}

.navbar .navbarOptionsPC {
  width: 40%;
  height: 100%;
  position: relative;
  padding: 39px 0 27px 100px;
  float: left;
  transition: all .3s ease;
}
.navbar .navbarOptionsPC ul li {
  display: inline-block;
  position: relative;
  padding: 0 40px 0 40px;
  text-align: center;
  transition: all .3s ease;
}
.navbar .navbarOptionsPC ul li::after {
  content: '';
  width: 0;
  height: 2px;
  border-radius: 1.1px;
  background: #264383;
  background-color: #264383;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarOptionsPC ul li:hover::after,
.navbar .navbarOptionsPC ul li:active::after,
.navbar .navbarOptionsPC ul li:focus::after {
  width: 100%;
}
.navbar .navbarOptionsPC ul li a {
  font-size: 17.3px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fefefe;
  transition: all .3s ease;
}

.navbar .navbarLogin {
  width: 35%;
  height: 100%;
  position: relative;
  padding: 39px 0 27px 0;
  float: left;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li {
  display: inline-block;
  position: relative;
  padding: 0 0 0 50px;
  text-align: center;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li a {
  font-size: 17.3px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #fefefe;
  position: relative;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li a .circleLogin {
  width: 19px;
  height: 19px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  position: absolute;
  left: -25px;
  top: -10px;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li a .circleLogin svg {
  width: 13px;
  height: 13px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li a .circleLogin svg path {
  fill: #ffffff;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li:hover a,
.navbar .navbarLogin ul li:active a,
.navbar .navbarLogin ul li:focus a {
  color: #264383;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li:hover a .circleLogin,
.navbar .navbarLogin ul li:active a .circleLogin,
.navbar .navbarLogin ul li:focus a .circleLogin {
  border: 2px solid #264383;
}
.navbar .navbarLogin ul li:hover a .circleLogin svg path,
.navbar .navbarLogin ul li:active a .circleLogin svg path,
.navbar .navbarLogin ul li:focus a .circleLogin svg path {
  fill: #264383;
}

@keyframes slidein {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.navbar .navbarLogin ul li a.packageOption svg {
  width: 22px;
  height: 22px;
  position: absolute;
  top: -10px;
  left: -20px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li a.packageOption svg path {
  fill: #ffffff;
  transition: all .3s ease;
}
.navbar .navbarLogin ul li:hover a.packageOption svg path,
.navbar .navbarLogin ul li:active a.packageOption svg path,
.navbar .navbarLogin ul li:focus a.packageOption svg path {
  fill: #264383;
}

.navbar .navbarLogin ul li a.packageOption .packagesActive {
  width: 25px;
  height: 25px;
  background: red;
  background-color: red;
  border: 2px solid #ffffff;
  position: absolute;
  top: -40px;
  right: 0;
  border-radius: 100%;
  z-index: 5;
/*  animation-duration: .5s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-direction: alternate;*/
  display: none;
}
.navbar .navbarLogin ul li a.packageOption .packagesActive p {
  line-height: 0;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  margin: 10px 0 0 0!important;
  padding: 0 0 0 0!important;
}

.navbarLogin .navbarLoged {
  width: 190px;
  height: 110px;
  padding: 10px 12px 16px 12px;
  text-align: left;
  background: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 5px 5px 0 rgba(67, 65, 65, 0.5);
  position: absolute;
  bottom: -60px;
  left: 25px;
  border-radius: 4px;
  display: none;
  transition: all .3s ease;
}

.navbarLogin .navbarLoged p {
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4f4b4b;
  position: relative;
  transition: all .3s ease;
}
.navbarLogin .navbarLoged p:nth-child(1)::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #dfdfdf;
  background-color: #dfdfdf;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
}
.navbarLogin .navbarLoged p a {
  color: #4f4b4b;
  transition: all .3s ease;
}
.navbarLogin .navbarLoged p a:hover,
.navbarLogin .navbarLoged p a:focus,
.navbarLogin .navbarLoged p a:active {
  color: #264383;
}
/*  */

/* NAVBAR RESPONSIVE */
.navbarRLogo {
  width: 100%;
  height: 100px;
  position: relative;
  display: none;
  transition: all .3s ease;
}
.navbarRLogo img {
  max-width: 80px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.navbar .navbarLoginResponsive {
  width: 300px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  z-index: 5;
}

.navbar .navbarLoginResponsive a.userLogin {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.navbar .navbarLoginResponsive a.userLogin .circleLogin {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  position: absolute;
  left: -25px;
  top: -10px;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive a.userLogin .circleLogin svg {
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive a.userLogin .circleLogin svg path {
  fill: #ffffff;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive a.userLogin:hover a,
.navbar .navbarLoginResponsive a.userLogin:active a,
.navbar .navbarLoginResponsive a.userLogin:focus a {
  color: #264383;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive a.userLogin:hover .circleLogin,
.navbar .navbarLoginResponsive a.userLogin:active .circleLogin,
.navbar .navbarLoginResponsive a.userLogin:focus .circleLogin {
  border: 2px solid #264383;
}
.navbar .navbarLoginResponsive a.userLogin:hover .circleLogin svg path,
.navbar .navbarLoginResponsive a.userLogin:active .circleLogin svg path,
.navbar .navbarLoginResponsive a.userLogin:focus .circleLogin svg path {
  fill: #264383;
}

.navbar .navbarLoginResponsive .navbarLoged {
  width: 190px;
  height: 110px;
  padding: 10px 12px 16px 12px;
  text-align: left;
  background: #ffffff;
  background-color: #ffffff;
  box-shadow: 0 5px 5px 0 rgba(67, 65, 65, 0.5);
  position: absolute;
  bottom: -80px;
  left: 25px;
  border-radius: 4px;
  display: none;
  transition: all .3s ease;
}

.navbar .navbarLoginResponsive .navbarLoged p {
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4f4b4b;
  position: relative;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive .navbarLoged p:nth-child(1)::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #dfdfdf;
  background-color: #dfdfdf;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
}
.navbar .navbarLoginResponsive .navbarLoged p a {
  color: #4f4b4b;
  transition: all .3s ease;
}
.navbar .navbarLoginResponsive .navbarLoged p a:hover,
.navbar .navbarLoginResponsive .navbarLoged p a:focus,
.navbar .navbarLoginResponsive .navbarLoged p a:active {
  color: #264383;
}
/*  */

/* NAVBAR HAMBURGUER */
.navbar .navbarHamb {
  width: 75px;
  height: 75px;
  padding: 10px 0 0 0;
  position: absolute;
  top: 0;
  left: 25px;
  bottom: 0;
  margin: auto;
  z-index: 5;
  display: none;
  transition: all .3s ease;
}
.navbar .navbarHamb div {
  width: 60px;
  height: 4px;
  background: #ffffff;
  background-color: #ffffff;
  margin: 9px 0 0 0;
  transition: all .3s ease;
}
.navbar .navbarHamb div:nth-child(2) {
  width: 50px;
}
.navbar .navbarHamb div:nth-child(3) {
  width: 40px;
}
.navbar .navbarHamb:hover div,
.navbar .navbarHamb:focus div {
  background: #4a90e2;
  background-color: #4a90e2;
}
.navbar .navbarHamb:hover div , .navbarHamb:active div , .navbarHamb:focus div {
  background: #4a90e2;
  background-color: #4a90e2;
}
/*  */

/* OVERLAY MODAL */
.overlay {
  width: 100%;
  height: 100%;
  opacity: 0.88;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background: #4f4b4b;
  background-color: #4f4b4b;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1000;
  display: none;
  transition: all .3s ease;
}
/*  */

/* MENSAJE EN CASO DE QUE NO ESTES LOGEADO */
.modalRestriction {
  width: 40vw;
  height: 50vh;
  padding: 25px 5% 19px 5%;
  border-radius: 8px;
  background: #ffffff;
  background-color: #ffffff;
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1001;
  overflow: hidden;
  display: none;
}
.modalRestriction .modalTitle {
  width: 100%;
  height: auto;
  padding: 50px 0 75px 0;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.modalRestriction .modalTitle h1 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #4a90e2;
  padding: 0 0 0 0!important;
  margin: 0 0 0 0!important;
  transition: all .3s ease;
}

.modalRestriction .modalOptions {
  width: 100%;
  height: auto;
  padding: 0 0 75px 0;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.modalRestriction .modalOptions .btnEnviar {
  font-size: 19px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  width: auto;
  height: 48px;
  padding: 13px 67px 12px 67px;
  border-radius: 24px;
  background: #009639;
  background-color: #009639;
  border: 1px solid #009639;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
}
.modalRestriction .modalOptions .btnEnviar:hover,
.modalRestriction .modalOptions .btnEnviar:active,
.modalRestriction .modalOptions .btnEnviar:focus {
  background: #4a90e2;
  background-color: #4a90e2;
  border: 1px solid #4a90e2;
}
/*  */

/* CLOSE MODAL MENSAJE EN CASO DE QUE NO ESTES LOGEADO */
.modalRestriction .closeModal {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 5;
  transition: all .3s ease;
}
.modalRestriction .closeModal svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s ease;
}
.modalRestriction .closeModal svg path {
  fill: #264383;
  transition: all .3s ease;
}
.modalRestriction .closeModal:hover svg path {
  fill: #009639;
}
/*  */

/* Sidebar Main */
.sidebarMain {
  width: 100%;
  height: 0;
  background: #fcd249;
  background-color: #fcd249;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 998;
  display: none;
}
.sidebarInner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 0 0 0;
}
.sidebarContent {
  width: 100%;
  position: absolute;
  bottom: 2px;
  top: 50px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 100px 0 0 0;
  text-align: center;
  transition: all .3s ease;
}

.sidebarContent .navbarProfile {
  width: 100%;
  height: auto;
  padding: 25px 0 0 0;
  text-align: center;
  display: none;
  transition: all .3s ease;
}
.sidebarContent .navbarProfile img {
  max-width: 100px;
  height: auto;
  position: relative;
  transition: all .3s ease;
}
.sidebarContent .navbarProfile h1 {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #264383;
  padding: 0 0 0 0!important;
  margin: 5px 0 0 0!important;
  transition: all .3s ease;
}

.sidebarContent ul li {
  line-height: 75px;
  position: relative;
  cursor: pointer;
  transition: all .3s ease;
}
.sidebarContent ul li::after {
  content: '';
  width: 0;
  height: 2px;
  background: #ffcc6a;
  background-color: #ffcc6a;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}
.sidebarContent ul li a {
  font-size: 60px;
  color: #ffffff;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  transition: all .3s ease;
}
.sidebarContent ul li a.activePage , .sidebarContent ul li a:hover ,
.sidebarContent ul li a:focus {
  color: #4a90e2;
}
.sidebarContent ul li:hover::after {
  width: 70%;
  background: #4a90e2;
  background-color: #4a90e2;
}
.sidebarFooter {
  width: 100%;
  height: 2px;
  background: #fcd249;
  background-color: #fcd249;
  position: absolute;
  padding: 0 0 0 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/*  */
