#ls-form input {
    width: 100%;
    height: 100%;
    padding
    border-radius: 5px;
}

#ls-form .input {
    height: 50px;
    width: 360px;
    max-width: 360px;
    margin: 0 auto 20px;
}

#ls-form .input.submit {
    width: 40%;
}

#ls-form .input a {
    display: block;
    border: 2px solid #0088cc;
    border-radius: 50%;
    width: 18px;
    color: #0088cc;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    box-shadow: none;
    position: relative;
    z-index: 2;
    margin: -36px 0 0 calc(100% - 30px);
    text-decoration: none;
}

#ls-form .input.show a,
#ls-form .input a:hover {
    color: #fff;
    background: #0088cc;
}

#ls-form .input .notification {
    display: none;
    position: relative;
    width: 250px;
    min-height: 50px;
    height: auto;
    line-height: 30px;
    padding: 9px 7px;
    margin: -36px 0 0 calc(100% + 5px);
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 3;
    box-shadow: 0 0 3px 3px rgba(200, 200, 200, 0.7); 
}

#ls-form .input .notification:after, 
#ls-form .input .notification:before {
    right: 100%;
    top: 25px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

#ls-form .input .notification:after {
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

#ls-form .input .notification:before {
    border-color: rgba(194, 225, 245, 0);
    border-right-color: #ccc;
    border-width: 13px;
    margin-top: -13px;
}

#ls-form .input.show .notification {
    display: block;
}

#ls-form input[type="number"] {
    -moz-appearance:textfield;
    background: #f5f5f5;
    border: none;
    padding: 0 1.2em;
}

#ls-form input[type="number"]::-webkit-outer-spin-button,
#ls-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#ls-form input::placeholder {
    color: rgba(129, 129, 129, 0.8);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

#ls-form input::-ms-input-placeholder {
    color: rgba(129, 129, 129, 0.8);
    text-transform: uppercase;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
}

#ls-form input[type="submit"] {
    background: #fff;
    color: #0088cc;
    border: #0088cc 2px solid;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    padding-left: 25px;
    border-radius: 5px;
}

#ls-form input[type="submit"]:hover {
    background: #0088cc;
    color: #fff;
}

.ls-results {
    display: none;
    border-top: 2px solid #0088cc;
    text-align: center;
    padding-top: 20px;
    margin-top: 10px;
}

.ls-results .caption {
    display: block;
    margin: 0 auto;
    color: #0088cc;
    font-size: 27px;
}

.ls-results br{
    display: none;
}

.ls-results p{
    margin: 0;
}

@media (max-width: 767px) {
    #ls-form .input {
        width: 100%;
        max-width: 100%;
    }

    #ls-form .input.show {
        margin-bottom: 50px;
    }

    #ls-form .input .notification {
        margin: 15px 0 0;
        width: 100%;
        text-align: center;
    }

    #ls-form .input .notification:after, 
    #ls-form .input .notification:before {
        right: initial;
        top: initial;
        bottom: 100%;
        left: calc(100% - 19px);
    }
    #ls-form .input .notification:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #fff;
        border-width: 10px;
        margin-left: -10px;
        margin-top: 0;
    }

    #ls-form .input .notification:before {
        border-color: rgba(194, 225, 245, 0);
        border-bottom-color: #ccc;
        border-width: 13px;
        margin-left: -13px;
        margin-top: 0;
    }

    #ls-form .input.submit {
        width: 70%;
    }
}

@media (max-width: 430px) {
    #ls-form .input.submit {
        width: 100%;
    }
}