﻿
#toggleDiv a, #toggleDiv a:hover {
    text-decoration: none;
    color: white;
}

.feedback-container {
    display: none;
    position: fixed;
    bottom: -270px;
    height: 300px;
    right: 5%;
    width: 350px;
    z-index: 1000;
}

.answers-container {
    margin-top: 10px;
}

    .answers-container label {
        font-weight: 400;
    }

.feedback-ddl {
    margin-bottom: 10px;
}

.feedback-radio-buttons {
    font-size: 14px;
    margin-top: 0px;
    display: inline;
}

.feedback-radio-button-label {
    padding-left: 0px;
    margin-top: 2px;
    font-size: 14px;
    display: inline;
}

.thank-you-container {
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 14px;
    padding-left: 15px;
    padding-right: 15px;
    display: none;
    margin-bottom: 300px;
}

.easy-to-find-container {
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 14px;
    padding-left: 15px;
    padding-right: 15px;
    display: none;
    margin-bottom: 150px;
}

.email-section {
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 14px;
    padding-left: 15px;
    padding-right: 15px;
    display: none;
    margin-bottom: 250px;
}

.blue-button {
    background-color: #143A68;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-size: 12px;
    width: 100px;
    margin-top: 20px
}

.grey-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-size: 12px;
    letter-spacing: 2px;
    width: 75px;
}

.small-text-area {
    /*resize: none;
        height: 65px;
        padding: 5px;
        margin-bottom: 10px;*/
}

.hoping-to-find-container {
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 14px;
    padding-left: 15px;
    padding-right: 15px;
    display: none;
    margin-bottom: 30px;
}

.question-container {
    border-radius: 3px 0 0;
    background-color: #FFF;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.6);
    padding-bottom: 10px;
    font-size: 14px;
    margin-bottom: 30px;
}

.toggle-box {
    color: white;
    cursor: pointer;
    bottom: 0px;
    float: right;
    height: 30px;
    width: 112px;
    padding: 10px;
    border-radius: 3px 3px 0 0;
    background-color: #143A68;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.6);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 12px;
}

.filler-div {
    width: 60%;
    height: 30px;
    background-color: transparent;
}

.questionBlock {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: .5px;
    line-height: 14px;
    bottom: 0px;
    right: 20%;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
}

.slideOut {
    animation-name: slideOut;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slideOutHalf {
    animation-name: slideOutHalf;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slideIn {
    animation-name: slideIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@@keyframes slideIn {
    100% {
        bottom: -270px;
    }
}

@@keyframes slideOut {
    0% {
        bottom: -180px;
    }

    100% {
        bottom: 200px;
    }
}

@@keyframes slideOutHalf {
    0% {
        bottom: -270px;
    }

    100% {
        bottom: -180px;
    }
}

