*{
--links-grey:#1b2441cc;
}
.skeleton-loading {
background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
background-size: 200% 100%;
border-radius: 4px;
animation: skeleton-loading 2.5s infinite;
}
.skeleton-comp .post-image{
height: 300px;
width: 100%;
margin-bottom: 16px;
}
.skeleton-comp .post-data .post-title {
width: 100%;
height: 60px;
margin-bottom: 12px;
}
.skeleton-comp .post-data .post-date{
height: 30px;
width: 30%;
margin-bottom: 12px;
}
.skeleton-comp .post-data .post-content{
height: 150px;
width: 100%;
margin-bottom: 12px;
}
.w-100{
width: 100%;
}
.grid{
display: grid;
}
.gap-s{
gap: 10px 15px;
}
.grid-3-1{
grid-template-columns: repeat(3, 1fr);
}
.grid-4-1{
grid-template-columns: repeat(4, 1fr);
}
.yoast-seperator{
width: 20px;
height: 20px;
display: inline-block;
vertical-align: middle;
margin: 0px 5px;
}
.wpcf7-form .wpcf7-submit{
color: var(--losinj-blue) !important;
border-color: var(--losinj-blue);
}
.wpcf7-form .wpcf7-submit:hover{
color: #ffffff !important;
}
body > div.elementor > div.elementor-element {
z-index: 1;
} @keyframes skeleton-loading {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}