/* 
Theme Name: Frectaris Web Design
Theme URI: https://github.com/elementor/hello-theme/
Description: Tema hijo personalizado para Frectaris web design
Author: Frectaris
Author URI: https://www.frectaris.com/
Template: hello-elementor
Version: 1.0.3
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/*
    Add your custom styles here
*/

.box{
	animation: MoveUpDown 2s linear infinite;
}
@keyframes MoveUpDown{
	0%, 100%{
		bottom:0px;
	}
	50%{
		bottom: 10px;
	}
}

body::-webkit-scrollbar {
  width: 6px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
	opacity: 1;
}

body::-webkit-scrollbar-thumb {
  background-color: #242425;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
}