.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  /* border: 1px solid rgba(0,0,0,0.05); */
  width: 100%;
  gap: 20px;
  font-weight: 500;
}

.comparison-grid .cell {
  padding: 15px;
  text-align: center;
  /* border: 1px solid rgba(0,0,0,0.05); */
  background-color: rgba(255,255,255,0.3);
}
.comparison-grid .comparison-row{ display: grid;}
.comparison-grid .comparison-row.header-row{ position: relative;}
.comparison-grid .comparison-row.header-row:after{ content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1.5px;
  height: 90%;
  background: linear-gradient(to bottom, #003BB1, #00B2A9);}
.comparison-grid .comparison-row .cell:last-child{border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;}
.comparison-row.header-row .row-title:first-child{ padding: 15px; background: transparent; min-height: 94px; display: flex; align-items: end;}
.comparison-grid .row-title {
  text-align: left;
  font-weight: 500;
  background-color: rgba(255,255,255,0.3);
  position: sticky;
  padding: 0px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  left: 0;
  z-index: 2;
}
.comparison-grid .comparison-row .row-title .title_box{  background: #fff; border-radius: 50px; padding:10px 20px; min-height: 80px; text-align: center; display: flex; flex-direction: column; justify-content: center; font-size: 15px; line-height:20px; justify-content: space-between; font-weight: 600;}
.comparison-grid .comparison-row .row-title .title_box small{ color:#1C37FF; font-size: 10px; margin-top: 0px; text-transform: uppercase; font-weight: 600;}

.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1){   background: #1C37FF;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box:before{ content: ""; background: url("../images/softheon_logo_black.svg") center top no-repeat; width: 110px; position: relative; display: block; margin:3px auto 0px; height: 13px; margin-bottom: 0px;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box{ color: #1C37FF; font-size: 10px; text-transform: uppercase;}
.comparison-grid .comparison-row:nth-child(2) .cell{ background-color: #1C37FF;}
/* .comparison-grid .comparison-row:nth-child(2) .cell:last-child{border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;} */
.comparison-grid .header-row .cell {
  background:transparent;
  font-weight: 600;
  text-align: left;
  z-index: 1;
}

.full {
  display: inline-block;
  width: 31px;
  height: 31px;
  min-width: 31px;
  background: url("../images/circle_full.svg") center top no-repeat; 
}

.half {
  display: inline-block;
  width: 31px;
  height: 31px;
  min-width: 31px;
  background: url("../images/circle_half.svg") left top no-repeat; 
  /* border: 1px solid #fff; */
}

.empty {
  display: inline-block;
  width: 30px;
  height: 31px;
  min-width: 31px;
  background: url("../images/circle_cross.svg") center top no-repeat; 
}

/* Responsive for mobile */
@media (max-width: 1200px) {
  .comparison-grid {
    display: block;
  }
  .comparison-row {
    display: block;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    /* background: #fff; */
    margin-bottom: 15px;
    padding: 10px;
  }

  .comparison-row .cell {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    border: none;
    align-items: center;
  }
  .half{ min-width: 31px;}
  .comparison-grid .comparison-row .row-title .title_box{ background: transparent; min-height: initial;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1){ background-color: #fff;}
.comparison-grid .comparison-row:nth-child(2) .cell{ color: #fff;}
.comparison-grid .comparison-row .row-title .title_box{ margin: auto;}
  .comparison-grid .comparison-row .cell:last-child{ padding-bottom: 30px;}
  .comparison-grid .comparison-row .row-title .title_box small{ margin-top: 5px;}
.comparison-grid .comparison-row:nth-child(2) .cell:nth-child(1) .title_box::before{ margin-bottom: 5px;}
.comparison-grid .comparison-row .cell.row-title:before{ display: none;}


  .comparison-row .cell::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
    text-align: left;
  }

  .comparison-row .cell:nth-child(2){ padding-top: 30px;}

  .comparison-grid .row-title {
    position: relative;
    left: 0;
    background: #f9fbff;
  }

  .comparison-grid .header-row {
    display: none;
  }
}
