@font-face {
    font-family: Lato;
    src: url(Lato-Regular.ttf);
}

@font-face {
    font-family: Lato-Light;
    src: url(Lato-Light.ttf);
}

* {
    font-family: 'Lato', sans-serif;
}

/* to override the Bootstrap bold on these elements */
label {
    font-weight: 400;
}

/* Disable number spinner on large screens */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

h1 {
    font-size: 44px;
    font-family: 'Lato', sans-serif;
    color: #000000;
}

.container {
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header {
    margin: 0;
}

input {
    border-radius: 0;
    border: 2px solid #ccc;
    padding: 6px 4px 4px 10px;
    transition: all 0.2s ease-out;
}
  input[type="text"]:focus, textarea:focus {
    box-shadow: none !important;
    border:2px solid rgba(14, 88, 135, 0.9);
    outline: none;
    transition: all 0.2s ease-out;
}

.inputs-box {
    margin: 0 auto;
    background: #E9E9E9;
    border-radius: 10px;
    padding: 20px 0;
}

.inner-wrapper {
    background: #ffffff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 0;
}

.inner-wrapper input {
    min-width: 220px;
    font-size: 20px;
}

.inner-wrapper span {
    font-size: 20px;
}

.floatlabel {
    position:relative;
}

.floatlabel input {
    -webkit-appearance: none;
    color:#333;
    padding:10px 12px 10px 25px;
}

.floatlabel label.label {
    position:absolute;
    top:14px;
    left:20px;
    transition:all 0.2s ease-out;
    background:#fff;
    color:#999;
    font-size:18px;
    cursor:text;
    font-weight: 400;
}

.floatlabel label.label.floatlabel-shift {
    top:-7px;
    left:12px;
    padding:0 4px;
    font-size:14px;
    color:#999;
    font-weight: 400;
}

.floatlabel label.label.floatlabel-active {
    color: rgba(14, 88, 135, 0.9);
}

.dollar-sign {
    position: absolute;
    top: 12px;
    left: 12px;
}

.output-label {
    font-family: "Lato";
    font-size: 20px;
    line-height: 32px;
    color: #2C3E50;
    font-weight: light;
}

.output-amount {
    font-size: 24px;
    line-height: 26px;
    color: #000;
}

.top-two {
    margin-bottom: 41px;
}

.description {
    color: rgb(102, 102, 102);
    font-size: 22px;
    line-height: 35px;
}

@media (max-width: 325px) {
    .left-form {
        padding-left: 5px;
    }
    .inner-wrapper input {
        width: 268px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-right: 5px;
        margin-top: 15px;
    }

    .header {
        padding-left: 10px;
    }

    #fieldHint {
        font-size: 14px;
    }
    
    h1 {
        font-size: 28px;
    }

    .left-form {
        margin-bottom: 15px;
    }
    
    .inputs-box {
        padding: 12px 0;
    }

    .gray-wrapper {
        padding-right: 8px;
        padding-left: 8px;
    }

    .top-two {
        margin-bottom: 35px;
    }

    .output-amount {
        font-size: 22px;
    }

    .output-label {
        font-size: 24px;
    }

    .percent-sign {
        left: 238px;
    }

    .description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .output-label {
        font-size: 20px;
    }

    .output-amount {
        font-size: 24px;
    }

    .top-two {
        margin-bottom: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .top-two {
        margin-bottom: 28px;
    }
}

