.freshbox-block-icon-box-wrapper {
border:1px dotted;
box-sizing:border-box;
transition: all 0.2s ease-in-out;
}
.freshbox-block-icon-box-wrapper:hover{
border:1px dotted white!important;
transition: all 0.2s ease-in-out;
}
.freshbox-block-icon-box.style-1 {
display:grid;
grid-template-columns: 1fr;
grid-template-areas:  "icon"
"title"
"seperator"
"description";
padding:50px;
box-sizing:border-box;
min-height: 260px;
}
.freshbox-block-icon-box.style-1 img {
height:30px;
width:auto;
grid-area: icon;
justify-self: center;
align-self: center;
}
.freshbox-block-icon-box.style-1 h4 {
text-align: center;
text-transform: none;
margin-top: 24px;
font-size: 20px;
grid-area: title;
justify-self: center;
align-self: center;
}
.freshbox-block-icon-box.style-1 hr {
display:none;
position: relative;
bottom:12px;
margin: auto;
z-index: 1;
-webkit-mask-image: url(//www.biancaneveboutique.com/wp-content/themes/turez/assets/icons/zigzag.svg);
height: 9px;
width: 95px;
grid-area: seperator;
justify-self: center;
align-self: center;
}
.freshbox-block-icon-box.style-1 .icon-box-description {
grid-area: description;
justify-self: center;
align-self: center;
text-align:center;
}
.freshbox-block-icon-box.style-2 {
display:grid;
grid-template-columns: 100px 1fr;
grid-template-areas:  "icon title"
"icon description";
padding:30px;
border-style:solid!important;
box-sizing:border-box;
}
.freshbox-block-icon-box.style-2 img {
height:80px;
width:auto;
grid-area: icon;
justify-self: start;
align-self: start;
}
.freshbox-block-icon-box.style-2 h4 {
text-transform: none;
margin-top: 0;
margin-bottom: 8px;
grid-area: title;
justify-self: start;
align-self: start;
}
.freshbox-block-icon-box.style-2 hr {
display:none;
}
.freshbox-block-icon-box.style-2 .icon-box-description {
grid-area: description;
justify-self: center;
align-self: start;
text-align: start;
}