/* 
Theme Name:		 Screenr Child
Theme URI:		 http://childtheme-generator.com/
Description:	 Screenr Child is a child theme of Screenr, created by ChildTheme-Generator.com
Author:			 Me & Me
Author URI:		 http://childtheme-generator.com/
Template:		 screenr
Version:		 1.0.0
Text Domain:	 screenr-child
*/


/*
    Add your custom styles here
*/


.site-title {
  animation: rubberBand; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}


.wp-block-column .far:before {
	color: #e86240;
}

.wp-block-column {
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    margin-bottom: 15px;
	padding: 1em;
}

.my-custom-class {
	color: #e86240;
}

.site-footer .site-info .site-copyright {
    float: none !important;
}

.wpcf7-form label, .wpcf7-form input[type=text], .wpcf7-form input[type=email], .wpcf7-form textarea {
	width: 100%;
}

/* Tel. as links on mobile */
a[href^="tel"]:link,
a[href^="tel"]:visited, 
a[href^="tel"]:hover {
	text-decoration: none;
	color: #000;

	pointer-events: none;
	cursor: default;
}

/* Adjust px here (1024px for tablets maybe) */
@media only screen and (max-device-width: 1024px) { 
    a[href^="tel"]:link,
    a[href^="tel"]:visited,
    a[href^="tel"]:hover {
        text-decoration: underline;
        color: rgb(153, 93, 8);

        pointer-events: auto;
        cursor: pointer;
    }
}
/* Tel. as links on mobile */