img {
    max-width: 100%;
    height: auto;
}

/* New Styles */
.bubble-wrapper {
    display: block;
    position: absolute;
    width: 100%;
    height: 600px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: all 1s ease-in;
    /* background: rgb(0, 0, 0); */
    opacity: 1;
}

.bubble-fade-out {
    animation: 1s linear .1s bubblefadeout;
}

.bubble-fade-in {
    animation: 1s linear .1s bubblefadein;
}

.bubble-wrapper.responsive {
    display: none;
}

.bubble-outer {
    position: absolute;
    transform: translate3d(10%, 10%, 100px);
    transition: translate3d 1s ease-in;
    transform-style: preserve-3d;
}

.bubble-inner {
    display: block;
    /* background-image: url('../src/img/ellipse.png'); */
    border: 0;
    background: rgba(0, 0, 0, 0);
    /* opacity: 0%; */
    height: 150px;
    width: 250px;
    /* animation: .5s linear .1s answerbubblefadein; */

    /* animation: bubble-bloat 2s timing-linear infinite normal none; */
}

.bubble-text {
    position: absolute;
    font-size: 1.8em;
    text-shadow: 2px, 2px;
    font-family: 'Dosis';
    top: 65%;
    left: 50%;
    text-align: center;
    text-shadow: 2px 2px #2f403e;
    /* color: #a69342; */
    color: #b8a965;
    transform: translate(-50%, -50%);
}

@keyframes bubbletextfadein {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes bubbletextfadeout {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}

#bubble-question {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    height: 250px;
    width: 350px;
    top: 40%;
    left: 50%;
    transition: opacity 1s ease-in;
    transform: translate(-50%, -50%);
}

.question-fade-in {
    animation: questionbubblefadein 1s normal linear forwards;
}

.question-fade-out {
    animation: questionbubblefadeout 1s normal linear forwards;
}

@keyframes questionbubblefadein {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes questionbubblefadeout {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}

#bubble-question-text {
    position: absolute;
    font-family: 'Dosis';
    font-size: 2.4em;
    text-shadow: #000 3px 3px;
    top: 40%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: 1s linear .1s questiontextfadein;
    color: #b8a965;
}

@keyframes questiontextfadein {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}



/* Unknown if these are being used */
.button-ellipse {
    position: absolute;
    background-image: url('../img/ellipse.png');
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    height: 250px;
    width: 350px;
    opacity: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 1; */
}

/* #question-ellipse {
    width: 500px;
    height: auto;
} */

.bubble-answer-boundry {
    position: absolute;
    transform: translate3d(10%, 10%, 100px);
    transition: translate3d 1s ease-in;
}



/* .ellipse {
    width: 250px;
    height: 150px;
} */

.bubble-answer {
    display: none;
    background-image: url('../src/img/ellipse.png');
    border: 0;
    background: rgba(0, 0, 0, 0);
    /* opacity: 0%; */
    height: 150px;
    width: 250px;
    /* animation: .5s linear .1s answerbubblefadein; */

    /* animation: bubble-bloat 2s timing-linear infinite normal none; */
}

@keyframes answerbubblefadein {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes bubblebloat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#bubble-answer1 {
    position: absolute;
    /* top: 60%;
    left: 11%; */
    transform: translate3d(1px, 1px, 1px);
    transition: translate3d 1s ease-in;
    animation: bubblebloat 2s linear 10ms infinite;
}

#bubble-answer2 {
    position: absolute;
    /* top: 18%;
    left: 75%; */
    /* transform: translate3d(75%, 18%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 2s linear 30ms infinite;
}

#bubble-answer3 {
    position: absolute;
    /* top: 21%;
    left: 8%; */
    /* transform: translate3d(8%, 21%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat .5s linear 50ms infinite;
}

#bubble-answer4 {
    position: absolute;
    /* top: 9%;
    left: 27%; */
    /* transform: translate3d(27%, 9%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 5s linear 60ms infinite;
}

#bubble-answer5 {
    position: absolute;
    /* top: 70%;
    left: 80%; */
    /* transform: translate3d(80%, 70%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 4s linear 80ms infinite;
}

#bubble-answer6 {
    position: absolute;
    /* top: 47%;
    left: 61%; */
    /* transform: translate3d(47%, 61%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 1.6s linear 1ms infinite;
}

#bubble-answer7 {
    position: absolute;
    /* top: 63%;
    left: 35%; */
    /* transform: translate3d(35%, 63%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 3s linear 90ms infinite;
}

#bubble-answer8 {
    position: absolute;
    /* top: 11%;
    left: 56%; */
    /* transform: translate3d(56%, 11%, 100px); */
    transform: translate3d(1px, 1px, 1px);
    transition: all 1s ease-in;
    animation: bubblebloat 2.3s linear 52ms infinite;
}

/* Answer Card */
#answer-card {
    display: none;
    flex-direction: column;
    height: auto;
    font-family: 'Dosis';
    background-color: #000000cc;
    padding: 10px;
    height: fit-content;
    width: 50em;
    transition: 0.8s;
    border: none;
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    transform: translate3d(35vh, 2vh, 110px);
}

/* On mouse-over, add a deeper shadow */
/* .card:hover {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 14px 24px 0 rgba(216, 214, 236, 0.582);
} */

.answer-title {
    position: relative;
    font-family: 'Dosis';
    font-size: 1.8em;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* top: 6%; */
    /* left: 50%; */
    text-align: center;
    text-shadow: 1px 1px #000;
    color: #a69342;
    /* transform: translate(-56%, -50%); */
}

.answer-split {
    display: flex;
    flex-direction: row;
}

.answer-content {
    position: relative;
    box-sizing: border-box;
    font-family: 'Dosis';
    font: 1.1em;
    line-height: 1.3em;
    margin: 20px;
    padding-left: 20px;
    text-shadow: 1px 1px #000000;
    width: 70%;
    text-align: left;
    color: var(--textcolor);
}

.answer-extensions {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 30;
}

.answer-extension {
    background-color: var(--textcolor);
    color: #000000cc;
    padding: 4px;
    margin: 4px;
    font-size: 1.3em;
    font-style: oblique;
    border: none;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#extended-answer {
    display: none;
    flex-direction: column;
    height: auto;
    font-family: 'Dosis';
    background-color: #000000cc;
    padding: 10px;
    height: fit-content;
    width: 64em;
    transition: 0.8s;
    border: none;
    position: absolute;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    transform: translate3d(30vh, 2vh, 120px);
}

.label-button-container {
    display: block;
    position: relative;
    left: 10%;
    width: 40%;
}

.card-contact {
    position: relative;
    font-family: inherit;
    font: 1.1em sans-serif;
    text-shadow: 1px 1px #000000;
    padding: 5px;
    margin: 10px;
    background-color: #2f403e;
    border: #252a2d;
    border-bottom: #000 2px 2px;
    width: 140px;
    text-align: center;
    color: #a69342;
}

.bubble.bubbleAnswer {
    font-family: inherit;
}

.closeCard {
    position: absolute;
    /* border-style: groove; */
    border: none;
    /* border-radius: 20%; */
    background: url("../img/close.svg") transparent no-repeat;
    top: 1%;
    right: 20px;
    width: 40px;
    height: 21px;
    font-size: 10px;
    /* color: #6aa0a6;
  background-color: #2f403e; */
}

.closeMarquee {
    position: absolute;
    border-style: groove;
    border: 0.1em;
    border-radius: 20%;
    background: url("../src/img/close_x.png") transparent;
    top: 1%;
    right: 20px;
    width: 35px;
    height: 35px;
    font-size: 10px;
    /* color: #6aa0a6;
  background-color: #2f403e; */
}