
  .price__wrapper.type2 .price__header{
    background: #FFFFFF;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #3E4F5D;
  }
  
  .price__wrapper.type2 .price__line{
    padding: 4px 4px 4px 16px;
  }
  .price__wrapper.type2 .price__body .price__line{
    margin: 4px 0;
    cursor: pointer;
    transition: color .25s ease-out, background-color .25s ease-out;
  }
  .price__wrapper.type2 .price__body .price__tit{
    font-size: 14px;
  }
  .price__wrapper.type2 .price__body .price__line:nth-child(2n){
    background-color: #fff;
  }
  .price__wrapper.type2 .price__body .price__line:nth-child(2n+1){
    background-color: #F1FAFF;
  }
  .price__body-block{
    display: flex;
    align-items: center;
    background: rgba(0, 6, 143, 0.05);
    border-radius: 67px;
    padding: 0 4px 0 16px;
    font-size: 14px;
    line-height: 22px;
    color: #3F4F5D;
    font-weight: bold;
    transition: color .25s ease-out, background-color .25s ease-out;
  }
  .price__body-btn{
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff;
    background-color: #FF192F;
    border-radius: 67px;
    width: 108px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    margin-left: 12px;
    outline: none;
    transition: color .25s ease-out, background-color .25s ease-out;
    font-family: "Roboto";
  }
  .price__body-btn:hover,
  .price__body-btn:focus{
    outline: none;
  }
  .price__wrapper.type2 .price__body .price__line:hover{
    background-color: #FF192F;
  }
  .price__wrapper.type2 .price__body .price__line:hover .price__tit,.price__wrapper.type2 .price__body .price__line:hover .price__body-block{
    color: #fff;
  }
  .price__wrapper.type2 .price__body .price__line:hover .price__body-btn{
    color: #FF192F;
    background-color: #fff;
  }
  .price__wrapper.type2 .price__body .price__line:hover .price__body-block{
    background: rgba(255, 255, 255, 0.15);
  }
  @media (max-width: 767px) {
    .price__wrapper.type2 .price__body .price__line{
      flex-direction: column;
      justify-content: center;
      padding: 8px 4px;
    }  
    .price__wrapper.type2 .price__body .price__body-block{
      width: 100%;
      justify-content: space-between;
      margin: 15px 0 0;
    }  
  }