/**
 * se limita el tamaño del contenedor principal
 */
 .example-container{
    max-width: 800px !important;
}
/**
 * margen de separacion de los div
 */
.example-container .mat-form-field + .mat-form-field {
    margin-left: 10px;
}
/**
 * tamaño maximo de div en 2 columnas
 */ 
.example-full-width{
    width: 49%;
}
/**
 * tamaño maximo de div en 1 columna
 */ 
.example-full-width2{
    width: 99%;
}
/**
 * tamaño de botones
 */
.button {
    width:100%;
    display:block;
}
/**
 * centrar div con margen abajo
 */
.center-div{
    display: inherit;
    text-align: center;
    margin-bottom: 10px;
}
/**
 * centrar texto
 */
.text-xs-center {
    text-align: center;
}
/**
 * estilos para alineacion de captcha
 */
.g-recaptcha {
    display: inline-block;
    margin-bottom: 15px;
}
/**
 * margen abajo
 */
.margin-space{
    margin-bottom: 10px;
}

/**
 * ajustes para responsive en celulares y pantallas pequeñas
 */ 
@media (max-width: 480px){
    .example-container .mat-form-field {
        display: contents;
    }
}
/**
 * se limita el tamaño del contenedor principal
 */
@media (max-width: 600px){
    .example-container .mat-form-field + .mat-form-field {
        margin-left: 0;
    }
      
    .example-full-width {
        width: 100%;
    }
}

.wrapper-progressBar {
    width: 100%
}

/**
 * se limita el tamaño del contenedor principal
 */
 @media (max-width: 600px) {
    .example-container .mat-form-field+.mat-form-field {
      margin-left: 0;
    }
    .example-full-width {
      width: 100%;
    }
  }
  
  /**
   * se limita el tamaño del contenedor principal
   */
  .example-container {
    max-width: 800px !important;
  }
  
  /**
   * se centra el div 
   */ 
  .login-form-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /**
   * tamaño maximo de div en 2 columnas
   */
  .example-full-width {
    width: 49%;
  }
  /**
   * mensaje informativo
   */ 
  .attention {
    background: #fff;
    width: 89%;
    margin-top: 0px;
  }
  /**
   * texto en mensaje
   */ 
  .attention .comment {
    width: 50%;
    margin: auto;
    padding: 10px;
  }
  /**
   * texto grande centreado en mensaje
   */ 
  .attention .comment p {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: x-large;
  }
  /**
   * texto mediano y centrado
   */ 
  .attention .comment h4 {
    color: rgb(17, 2, 2);
    margin: 0 0 10px 0;
    text-align: center;
    font-size: medium;
  }
  /**
   * clase para espacio de imagen
   */ 
  .attention .comment img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  /**
   * borde y color en textos
   */
  #tele {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
  }
  /**
   * borde y color en textos
   */
  #bold {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
  }
  /**
   * borde y color en textos
   */
  #bold2 {
    font-size: xx-large;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
  }
  /**
   * fondo del mensaje
   */
  .bubbleAtt {
    position: relative;
    /* background: rgb(244, 244, 244); */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-left: 20px;
  }
  /**
   * permite 4 imagenes por grid para las imagenes de los videos
   */
  .wrapper-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
  /**
   * permite 1 imagen por grid para las imagenes de los videos
   */
  .wrapper-img2{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  /**
   * margenes y separacion entre imagenes de video
   */
  .img {
    margin: 10px 10px 10px 10px;
    padding: 10px 10px 10px 10px;
  }
  
  /**
   *ajustes de secciones para tamaño de letra
   */
  section div:nth-child(1), section div:nth-child(3) {
    color: #fff;
    font-size: 20px;
  }
  /**
   *ajustes de secciones para margen superior
   */
  section div:nth-child(1) {
    margin-top: 20px;
  }
  /**
   *ajustes de secciones para ajustarse al tamaño del contenedor
   */
  section div:nth-child(2) {
    width: 100%;
  }
  /**
   * se centra contenido
   */ 
  .center {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  /**
   * se centra el div 
   */ 
  .center-div {
    display: inherit;
    text-align: center;
    margin-bottom: 10px;
  }
  /**
   * borde para los videos
   */
   .border1{
    border: 3px solid rgb(41, 136, 214);;
    border-radius: 6px;
  }
  /**
   * ajustes para responsive en celulares y pantallas pequeñas
   */
  @media (max-width: 480px) {
    /**
     * permite 1 imagenes por grid para las imagenes de los videos
     */
    .wrapper-img2{
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 20px;
    }
  }

.progressBar li {
    list-style-type: none;
    float: left;
    width: 33%;
    position: relative;
    text-align: center;
}

.progressBar li:before {
    content: " ";
    line-height: 30px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    background-color: white
}

.progressBar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #ddd;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressBar li:first-child:after {
    content: none;
}

.progressBar li.active {
    color: dodgerblue;
}

.progressBar li.active:before {
    border-color: dodgerblue;
    background-color: dodgerblue
}

.progressBar .active:after {
    background-color: dodgerblue;
}

.myButton {	
  background-color:#2780cd;
	border-radius:28px;
	border:1px solid #ffffff;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:7px 34px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
	background-color:#1a5487;
}
.myButton:active {  
	position:relative;
	top:1px;
}

.myButton:disabled {
  background-color:#424446;
	position:relative;
	top:1px;
}
