.widget-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    align-items: stretch;
}
@media only screen and (max-width: 844px) {
    .widget-grid{
      grid-template-columns: repeat(2,1fr);
    }
}
@media only screen and (max-width: 600px) {
    .widget-grid{
      grid-template-columns: repeat(1,1fr);
    }
}
.widget-grid input[type="checkbox"]{
    position: absolute;
    opacity:0;
    pointer-events: none;
}
.widget-grid label{
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    height:100%;
    width:100%;
    box-sizing: border-box;
    background-color:#F8FAF9;
    display:flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding:15px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    border:1px solid #b8bdb7;
}
.widget-grid figure{
    margin-bottom: 5px;
}
.widget-grid label.active{
    border-color:#ef153b;
}
.widget-grid label.active::before{
    content:'';
    width:16px;
    height:24px;
    background-image: url('../../../files/starway/images/theme/ribbon.png');
    background-repeat: no-repeat;
    position: absolute;
    top:-1px;
    right:20px;
}
/*.widget-grid label.active:after{
    content:'';
    position: absolute;
    width:100%;
    height:100%;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color:rgba(239,21,59,0.2);
    border:5px solid rgba(239,21,59,0.2);
}*/