body {
  background-image: url("../gmsupport/background1.png");
  background-repeat: repeat;
  
}

.button {
  border-radius: 6px;
  transition: all 0.5s;
}

.button span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover:not([disabled]) span {
  padding-right: 25px;
}

.button:hover:not([disabled]) span:after {
  opacity: 1;
  right: 0;
}

.button:disabled {
  cursor:not-allowed;
}



.bigButton {
  border-radius: 15px;
  font-size: 18px;
  transition: all 0.5s;
}

.bigButton span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.bigButton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: 0.5s;
}

.bigButton:hover:not([disabled]) span {
  padding-right: 25px;
}

.bigButton:hover:not([disabled]) span:after {
  opacity: 1;
  right: 0;
}

.bigButton:disabled {
  cursor:not-allowed;
}



.mediumButtonC {
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.5s;
}


.mediumButtonC {
  border-radius: 10px;
  font-size: 14px;
  opacity: 1;
}

.mediumButtonC:hover:not([disabled]) {
  opacity: 0.7;
}


.mediumButton {
  border-radius: 10px;
  font-size: 14px;
}

.mediumButton span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.mediumButton span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: 0.5s;
}

.mediumButton:hover:not([disabled]) span {
  padding-right: 25px;
}

.mediumButton:hover:not([disabled]) span:after {
  opacity: 1;
  right: 0;
}

.mediumButton:disabled {
  cursor:not-allowed;
}


.buttonEsp {  
  transition: all 0.5s;
}

.buttonEsp span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonEsp span:before {
  content: '\00ab';
  position: absolute;
  opacity: 0;
  left: -20px;
  transition: 0.5s;
}

.buttonEsp:hover:not([disabled]) span {
  padding-left: 25px;
}

.buttonEsp:hover:not([disabled]) span:before {
  opacity: 1;
  left: 0;
}

.buttonEsp:disabled {
  cursor:not-allowed;
}




* {box-sizing: border-box}

.mySlides {display: none; border: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prevSlide, .nextSlide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  color:black;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.nextSlide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevSlide:hover, .nextSlide:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dotSlide {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dotSlide:hover {
  background-color: #717171;
}

/* Fading animation */
.slidefade {
  -webkit-animation-name: slidefade;
  -webkit-animation-duration: 1.5s;
  animation-name: slidefade;
  animation-duration: 1.5s;
}

@-webkit-keyframes slidefade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes slidefade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prevSlide, .nextSlide {font-size: 11px}
}

