html,
body {
    height: 100%;
}

body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    overflow: hidden;
}

/* setup container styles */
.bubble-container {
    position: fixed !important;
    top: 100%;
    left: 100%;
    -webkit-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    border: 1px black solid;
    width: 99%;
    height: 99% !important;
    max-height: 100%;
    z-index: 2;
    overflow: hidden;
    /*box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);*/
    background: #F3F3F3; /*rgba(36, 79, 114, 0.95);*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
}

.bubble-container.active {
    display: block;
}

.bubble-wrap {
    position: absolute;
    top: 105px;
    bottom: 47px;
    left: 0;
    right: 0;
    padding: 10px calc(17px + 10px) 30px 10px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
}

input::-webkit-calendar-picker-indicator {
    opacity: 100;
}

#question_tag {
    display: block;
}

@media screen and (max-width: 768px) {
    #question_tag {
        /*display: none;*/
    }
}

@media screen and (max-width: 400px) {
    .showq-button {
        left: 200px !important;
    }

    .trendq-button {
        left: 45px !important;
    }

    .input-wrap textarea {
        width: 83% !important;
    }
}

@media screen and (max-width: 341px) {
    .showq-button {
        left: 165px !important;
    }

    .trendq-button {
        left: 25px !important;
    }

    .input-wrap textarea {
        width: 80% !important;
    }
}