.test-box{
    background: #fff;
    padding: 20px;
    width: 60%;
    margin: 100px auto;
    border: 1px solid #cacad3;
    box-shadow: 0 1px 2px 1px hsla(0,0%,42.7%,.14);
}
.test-box h1{
    margin: 0 0 18px 0;
    font-size: 25px;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.test-box ul{
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 25px;
}
.test-box ul li{
    font-size: 16px;
    line-height: 1.7;
}
.test-box .start-now{
    border-radius: 0px;
    outline: none;
    background: #f14045 !important;
    border-color: #f14045 !important;
    font-size: 18px;
    letter-spacing: 0.5px;    
}
.test-box button{
    background-position-x: 15%;
}
.test-box button:hover{
    background-size: 150%;
    transition-duration: 0.3s;
    transform: scale(1.1);
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
.test-box ul li:before {
    content: '✓';
    font-size: 22px;
    font-weight: 600;
    margin-right: 7px;
    color: #343a93;
}
@media only screen and (max-width: 600px) {
    .test-box{
        width: 100% !important;
    }
    .test-box h1{
        font-size: 18px;
    }
    .test-box ul{
        padding-left: 8px;
    }
    .test-box ul li{
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    .test-box h2 p{
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }
}