.mainBase {
    display: flex;
    flex-direction: column;
}

.firstContainer {
    display: flex;
    /* flex-direction: row; */
    /* height: 89vh; */
    width: 100%;
}

.secondContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.primaryBase {
    display: flex;
    /* height: 48rem; */
    width: 100%;
    padding-top: 8px;
    padding-left: 8px;
    padding-right: 2px;
    padding-bottom: 8px;
}

.primaryInner {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    width: 100%;
}

.webGlBase {
    height: 100%;
    width: 100%;
    padding-bottom: 2px;
}

.webGlIframe {
    height: 100%;
    width: 100%;
}

.textFormBase {
    /* position: absolute; */
    /* bottom: 3.2rem; */
    width: 100%;
    padding-top: 2px;
    /* right: 1rem; */
    /* left: 1rem; */
    /* margin: 0 auto; */
    /* justify-content: center; */
}

.textFormInner {
    display: flex;
    flex-direction: row;
    padding: 4px;
    /* margin: 8px; */
    /* border: solid 1px #b4b4b4; */
    border-radius: 10px;
    /* background-color: rgba(255, 255, 255, 0.5); */
    background-color:whitesmoke;
    /* box-shadow: 2px 2px 6px gray; */
}

.secondaryBase {
    display: flex;
    padding-top: 8px;
    padding-left: 2px;
    padding-right: 8px;
    padding-bottom: 8px;
    z-index: 1;
}

.secondaryInner {
    height: 100%;
    width: 100%;
    border: solid 1px #b4b4b4;
    border-radius: 10px;
    background-color: whitesmoke;
    box-shadow: 2px 2px 6px gray;
}

.commentAreaBase {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 4px;
    /* margin: 0.5rem; */
}

.commentItem {
    width: 100%;
    word-break: break-word;
    padding: 4px;
}

.commentItem:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

textarea {
    resize: none;
    max-height: 500px;
}

/* 1. declare transition */
.fade-move,
.fade-enter-active,
.fade-leave-active {
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

/* 2. declare enter from and leave to state */
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
  transform: scaleY(0.01) translate(30px, 0);
}

/* 3. ensure leaving items are taken out of layout flow so that moving
      animations can be calculated correctly. */
.fade-leave-active {
  position: absolute;
}

@media (min-width: 0px) {
    .firstContainer {
        flex-direction: column;
        height: 89vh;
    }

    .primaryBase {
        height: 60%;
        padding-right: 8px;
    }

    .secondaryBase {
        height: 40%;
        width: 100%;
        padding-left: 8px;
    }
}

@media (min-width: 768px) {
    .firstContainer {
        flex-direction: row;
        height: 89vh;
    }

    .primaryBase {
        height: 100%;
        padding-right: 2px;
    }

    .secondaryBase {
        height: 100%;
        width: 25rem;
        padding-left: 2px;
    }
}
