.preloader{
  position: fixed; 
  left:0px;
  top:0px;
  height:100%;
  width: 100%;
  z-index:999999;
  background-color:#ffffff;
  background-position:center center;
  background-repeat:no-repeat;
  background-image:  url('../img/preloader.gif');
}

.justify {
  text-align: justify;
}

.bold {
  font-weight: bold;
}

.my-blue-text{
	color: #040959 !important;
}

/*.blue-gradient{
	background-image: linear-gradient(to right, #2028a4 , #040959);
} */

.width-100px {
  max-width: 100px;
}

.social-icons{
	max-width: 40px;
	margin-right: 7px;
}

.social-icons-2 {
    max-width: 35px;
    margin-right: 7px;
}


.menu-item {
	font-size: 16px;
}


#contacto hr {
  color: #d3d3d33b;;
}

.width-100 {
  width: 100%;
}

#logoMovil {
  max-height: 56px !important;
  max-width: 300px;
}

.border-grey {
  border: 1px solid #8080803d;
}

.font-size-30 {
  font-size: 30px; 
}

.width-fotosg {
  max-width: 70% !important;
  margin: 3rem 15%;
}



.blue-border-bottom {
  border-bottom: 1px solid #2028a4;
}


.menuVisible {
  display: block;
  position: fixed;
  top:155px;
  left: 2%;
  background-color: #fff;  
  width: 96%;
  padding: 1%;
  max-height: 500px;
  overflow: auto;
  z-index: 999;
}

.subMenu {
  border: none;
  font-size: 15px !important;
}

.subMenu:hover {
  border-bottom: 2px solid #2028a4;
}

.parallax-effect {
  padding-bottom: 35%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@-webkit-keyframes fadeInDown {
  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 fadeInDown {
  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);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated2 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.menu-active {
  background-color:  #040959 !important;
}

.menu-no-active {
  background-color: #000 !important;
}

#conciertoMovil1, #conciertoMovil2, #teatroMovil1, #teatroMovil2 {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: #040959 !important;
  font-weight: bold;
}


.upper{
  text-transform: uppercase;
}

.hover-line {
  text-decoration: none;;
}
.hover-line:hover {
  text-decoration: underline;
}

.sg-background {
  background-image: url('../img/foto-sg.jpg');
  background-size: cover !important;
  background-position: center top;
  background-repeat: no-repeat !important;
}

.calendario-bkg {
  display: block;
  padding-bottom: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.no-border {
  border: none !important; 
}

#twitter-widget-0 {
  width: 100% !important;
  margin: 2em 0px !important;
}

.scrolling-wrapper {  
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  white-space: nowrap;  
}

.scrolling-wrapper .card {
    display: inline-block;
    width: 100%;
    min-height: 250px;
    margin-right: 1rem;
  }

/* ******** Paddings and Margins **************/
.margin-bottom-0 {
	margin-bottom: 0;
}

.margin-top-0 {
  margin-top: 0px;
}

.margin-bottom-2rem {
  margin-bottom: 2rem;
}

.margin-bottom-1-5rem {
  margin-bottom: 1.5rem;
}

.margin-bottom-3rem {
  margin-bottom: 3rem;
}

.margin-3rem-0 {
  margin: 3rem 0px;
}

.margin-3-top {
  margin: 3rem 0px 0px 0px;
}

.margin-top-4 {
	margin-top: 4px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.padding-0 {
	padding: 0px !important;
}
.padding-top-1-5em {
	padding-top: 1.5em;
}

.padding-5-0 {
	padding: 5px 0px;
}

.padding-40 {
  padding: 40%;
}

/* ***************** Position ************** */
.Aligner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Grid {
  display:flex;
  flex-wrap:wrap;
  list-style:none;
  padding:0;
}

.Grid--right {
	display: flex;
	align-items: center;
	justify-content: right;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: right;
}

.Aligner--left {
  display: flex;
  align-items: center;
  justify-content: left;
}


.Grid--stretch {
  align-items:stretch
}

.Grid--end {
	align-items: flex-end;
}

.flex-auto {
	flex: auto;
}

.max-width-youtube {
  max-width: 39px !important;
}

.max-widht-youtube-header {
  max-width: 55px !important;
}

.max-widht-youtube-movil {
  max-width: 52px !important;
}