/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/*Espacio vertical en los listados de íconos del sitio web (widget elementor)*/
li.elementor-icon-list-item.elementor-inline-item {
    margin-bottom: 15px;
}

/*Quitar borde de la etiqueta a focus*/
*:focus {
    outline: none;
}

/*Fondo negro en la versión mobile de la bandera en el header*/
#barra-superior-bandera{
    background-color: #0000000;
}

@media only screen and (max-width: 600px) {
  #barra-superior-bandera {
    background-color: #000000;
  }
}

/*icono scrolldown*/
.mouse {
  margin: 0 auto;
  display: block;
      border-radius: 50px;
  border: 2px solid #fff;
  height: 75px;
  width: 40px;
  position: relative;
}

.move {
  position: absolute;
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%,10px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%,40px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%,40px);
    opacity: 0;
  }
}