body, html {
    width: 100%;
    height: 100%;
    font-family: 'trebuchet', sans-serif !important;
    background-color: white;
}

.text-style {
    font-size: 13px !important;
    line-height: 13px;
    color: #305f6a;
    font-family: 'trebuchet', sans-serif !important;
}
p {
    color: #305f6a !important;
    font-size: 13px;
}
.field-help {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/help-icon.png);
    cursor: pointer;
    vertical-align: bottom;
    margin-right: 2px;
}
.ui-tooltip {
    max-width: 300px;
    color: #aebfc3;
    font-size: 13px;
    border-radius: 5px;
    background-color: rgba(6,60,74,0.25);
    line-height: 18px;
    border: none;
    padding: 0;
}

.ui-tooltip.button-tooltip {
    max-width: 354px;
}

.ui-tooltip.map-tooltip {
    max-width: 306px;
}

.ui-tooltip .ui-tooltip-content {
    padding: 25px;
    margin: 10px;
    background: #063c4a;
}

    .ui-tooltip .headline {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 11px;
        line-height: 21px;
        text-transform: uppercase;
        color: #5ab3e8;
        margin-bottom: 18px;
        position: relative;
    }

        .ui-tooltip .headline img {
            float: left;
            margin-right: 10px;
        }

.ui-tooltip p {
    margin-bottom: 10px;
}

.ui-tooltip p:last-child {
    margin-bottom: 0;
}

    .ui-tooltip .close-popup {
        position: absolute;
        right: 0;
        top: 0;
        width: 14px;
        height: 14px;
    }
/*.field-help.right-align {
    margin-right: 0;
    margin-left: 2px;
}*/

#input-container {
    border: 2px solid #8fa8ae;
    height: 15%;
}

#user-input {
    font-size: 15px;
    text-align: center;
    width: 83%;
    height: 52px;
    border: none;
    outline: none;
    color: #305f6a !important;
}
#response-container {
    width: auto;
    margin-top: 5%;
    left: 5%;
    right: 5%;
    margin-bottom: 5%;
    overflow-y: auto;
    text-align: center;
    opacity: 1;
    position: absolute;
    max-height: 220px;
}
/*#response-container::-webkit-scrollbar {
    height: 5px;
}*/

#wave {
    position: absolute;
    /*top: calc(85% - 53.97px);*/
    left: 47%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.75s;
    bottom: 45%;
}

@keyframes waveAnimation {
    0% {
        transform: translateX(-50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0;
    }
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-bottom: 16px solid blue;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 30%;
    bottom: 50%;
    left: 0;
    right: 0;
    margin: auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
