.subscription-option-wrapper{
    margin: 10px 0;
}

.select-boxs{
    display: flex;
    grid-gap: 10px;
    padding: 10px 0;
    width: 350px;
}
.select-box{
    height: 90px;
    color: #737373;
}

.select-box-input {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #cccccc;
    background-color: white;
    -webkit-appearance: none; /*to disable the default appearance of radio button*/
    -moz-appearance: none;
}

.select-box:hover .select-box-input { /*no need, if you don't disable default appearance*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); /*to remove the square border on focus*/
}

.select-box-input:checked { /*no need, if you don't disable default appearance*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #dad6d666;
}

/*.select-box-input:checked ~ span:first-of-type {*/
    /*color: white;*/
/*}*/

.select-box-des:first-of-type {
    position: relative;
    top: -95px;
    font-size: 14px;
    text-align: center;
    padding: 0 50px 0 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.plan-amount{
    font-size: 22px;
    font-weight: 600;
    line-height: 50px;
    color: #8e8e8e;
    border-right: 1px solid #BBB;
    min-width: 100px;
    text-align: left;
}

/*.select-box-des {*/
    /*position: relative;*/
    /*top: -10px;*/
/*}*/

.un-select-plan{
    font-style: italic;
    color: #ff0000;
    cursor: pointer;
}

.radio-inline{
    padding-right: 5px;
}

.select-box-des-child{
    padding-left: 30px;
}

