/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/


@import url(“../uncode/style.css”);

aside label {font-size:1.1em;}



.pulse {
  animation: pulse-animation 2.4s infinite;
	border-radius:50%;
  justify-content: space-evenly;
  align-items: center;
	width:80px;
	height:80px;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 34px rgba(255, 255, 255, 0);
  }
}

.am-underline {display: block;width: 120px;border-bottom: 6px solid #0903D4;
margin-top: 10px;}

.am-underline-white {
    display: block;
    width: 120px;
    border-bottom: 6px solid #fff;
    margin-top: 10px;
}

.glink {    padding: 8px 0 8px 0;
    display: inline-block;}
a.glink:hover {color:#fff!important;opacity:0.75;}
a.glink span {
    margin-right: 10px;
    font-size: 14px;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}