.subscribe-box {
    background: #fff;
    /* border: 1px solid #dedede; */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 21px 50px 0px rgba(145, 148, 160, 0.15);
}

.features-card{
    background: #fff;
    border: 1px solid #dedede;
    padding: 25px;
    border-radius: 10px;
}

.align-items{
    align-self:center;
}

.button-width{
    width: 556px;
    align-self: center;
}

.button-container{
    align-items: center;
}

.scroll{
    overflow-x: auto !important;
    white-space: nowrap; 
    padding-top:30px;
}


.scroll::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #dbdbdb;
    border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb:hover{
    background: #C9C9C9;
}

.scroll::-webkit-scrollbar-track{
    background: #ffffff;
    border-radius: 5px;
    /* box-shadow: inset 7px 10px 12px #f0f0f0; */
}

.plan-card{
    display: inline-block;
    padding: 30px 20px 10px 25px;
    border-radius: 16px;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
    width: 300px;
    height: 175px;
}

.plan-name{
    font-size: 18px;
    font-weight: 700;
    color: #44415a;
    display: inline-block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    line-break: strict;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    white-space: normal;
}

.plan-card-body-wrapper{
    display: table-cell;
    vertical-align: middle;
}

.plan-card-body {
    display: flex;
}

.loader:not([hidden]) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.loader::after {
    content: "";
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #f25a41;
    border-radius: 100%;
    will-change: transform;
    animation: spin 1s infinite linear
  }


@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  


.radio-button{
    margin-right: 20px;
}

.radio { 
   display:none;
} 

.strike-price{
    font-size: 25px;
    font-weight: 600;
    color: #979797;
    font-family: Arial, Helvetica, sans-serif;
}

.price{
    font-size: 30px;
    color: #353535;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.offer{
   
    padding:7px;
    border:2px solid #FFEFD7;
    height:42px;
    min-width:162px;
    align-items: center; 
    border-radius: 50px;
    background: white;
    box-shadow: 0px 4px 4px rgba(255, 149, 1, 0.25);
    align-self: center;
}

.offer-container{
    text-align: center;
    position: absolute;
    top: -25px;
    margin: auto;
    left: 0;
    right: 0;
    width: 70%;
}

.icon{
    margin-left: 10px;
}

.offer-text{
    font-size: 12px;
    color: #FF9501;
    font-weight: 800;
    margin-left: 3px;
    margin-right: 3px;
}


.radio-input { 
   width: 20px;
   height:20px;
   border: 2px solid #353535;
   padding:2px;
   border-radius: 50%;
   box-sizing: border-box;
 } 

.radio-input::after { 
    content :"";
    width:100%;
    height:100%;
    display:block;
    background: linear-gradient(90deg, #05C5D9 0%, #5FD590 100%);
    border-radius: 50%;
    transform: scale(0);
} 

.radio:checked + .radio-input::after {
    transform: scale(1);
}


.current-session{
    background: #F4F1FF;  
}

.launch-offer{
    background: #FFFBF1;
    border: 1px solid #EAC054;
}

.next-session{
    background: #E3FFFB;
}

.benefits-list-style {
    padding-left: 20px;
}
.benefits-list-style li {
    list-style: disc;
    list-style-position: outside;
    padding: 7px 0;
    display: list-item !important;
    margin-bottom: 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: #44415a;
}

.benefits-text{
    font-size: 22px;
    font-weight: 700;
    color: #44415a;
}

@media (min-width: 320px) and (max-width: 767px) {

    .subscribe-box{
        padding:0px !important;
        background:none !important;
        border-radius: 0;
        box-shadow: 0px 0px 0px 0px !important;
    }

    .features-card{
        padding:0 !important;
        border:0 !important;
        background:none !important;
    }

    .plan-info-small{
        background: white;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .section-padding-50{
        padding-top: 0;
    }

    .plan-card{
        margin-right: 10px;
        width: 90%;
    }

    .features-card li{
        font-size: 15px;
        font-weight: 500;
    }

    .plan-card h5{
        font-size: 15px;
        font-weight: 800;
    }

    .offer-text{
        font-size: 10px;
        color: #FF9501;
        font-weight: 800;
        margin-left: 3px;
    }

    .radio-input { 
        width: 19px;
        height:19px;
        border: 2px solid #353535;
        padding:2px;
        border-radius: 50%;
        box-sizing: border-box;
        margin-top: 2px;
      } 
    
      .price{
        font-size: 30px;
        color: #353535;
        font-weight: 700;
        font-family: Arial, Helvetica, sans-serif;
    }

    .offer{
        padding:5px;
        border:2px solid #FFEFD7;
        height:42px;
        min-width:162px;
        align-items: center; 
        border-radius: 50px;
        background: white;
        box-sizing:border-box;
        box-shadow: 0px 4px 4px rgba(255, 149, 1, 0.25);
        align-self: center;
    }
    

    
}

@media (min-width: 480px) and (max-width: 767px) {

    .subscribe-box{
        background: #fff;
        padding:0px !important;
        background:none !important;
        border-radius: 0;
        box-shadow: 0px 0px 0px 0px !important;
    }

    .features-card{
        padding:0 !important;
        border:0 !important;
        background:none !important;
    }

    .plan-card{
        max-width :270px;
        padding:25px;
        padding-top: 30px;
    }

    .features-card li{
        font-size: 15px;
        font-weight: 500;
    }

    .plan-card h5{
        font-size: 15px;
        font-weight: 800;
    }

    .offer-text{
        font-size: 10px;
        color: #FF9501;
        font-weight: 800;
        margin-left: 3px;
    }

    .radio-input { 
        width: 19px;
        height:19px;
        border: 2px solid #353535;
        padding:2px;
        border-radius: 50%;
        box-sizing: border-box;
        margin-top: 2px;
      } 
    
    .price{
        font-size: 30px;
        color: #353535;
        font-weight: 700;
        font-family: Arial, Helvetica, sans-serif;
    }

    .offer{
        padding:5px;
        border:2px solid #FFEFD7;
        height:42px;
        min-width:162px;
        align-items: center; 
        border-radius: 50px;
        background: white;
        box-shadow: 0px 4px 4px rgba(255, 149, 1, 0.25);
        align-self: center;
    }
    

}