.wspack_list {
    display:flex;
    gap:30px;
}
.wspack {
    border:1px solid;
    padding:10px;
}
.gw_expired .section-packages {display:none;}


.wspack{
    position: relative;
    padding-bottom: 70px;
}
.wspack_btn{
    position: absolute;
    bottom:10px;
    left:10px;
    padding:7px 10px;
    background: #000;
    color:#fff;
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all ease 0.3s;
}
.btn_loading{
    padding-right:30px;
    opacity: 0.5;
}
.btn_loading:before{
    content: '';
    position: absolute;
    top:50%;
    right:10px;
    width:12px;
    height:12px;
    border:1px solid #fff;
    border-radius: 50%;
    margin-top:-6px;
    border-bottom:1px solid #000;
    animation: rotate360 1.5s linear infinite;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn_loading_success{
    padding-right:30px;
}
.btn_loading_success:before{
    content: '✓';
    position: absolute;
    top:50%;
    right:10px;
    width:16px;
    height:16px;
    margin-top:-8px;
    line-height: 1;
    font-size: 16px;
}