:root {
    --box-shadow: 3px 3px 15px #C4C4C4;
    --alexa-blue: #31c4f3;
    --bt-gray-dark: #343a40;
}

.no-select {
    user-select: none;
}

.default-shadow {
    box-shadow: var(--box-shadow);
}

.default-outline {
    border: 1px solid #C4C4C4;
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.default-transition-duration {
    transition-duration: 100ms;
}

.longer-transition-duration {
    transition-duration: 150ms;
}

.border-button {
    border-radius: 8px;
    border: solid gray 1px;
    color: gray;
}

.border-button a {
    color: gray;
}

.border-button:hover {
    border: solid var(--alexa-blue) 1px;
    color: var(--alexa-blue);
}

.border-button:hover > a {
    color: var(--alexa-blue);
    text-decoration: none;
    cursor: default;
}

.big-button {
    width: 80%;
    font-size: 24px;
    border-radius: 15px;
    background-color: var(--bt-gray-dark);
    border-color: transparent;
    color: white;
}

.big-button:hover {
    background-color: #16181e;
    color: lightgray;
}

.no-focus:focus {
    outline: 0;
}

.blockingOverlay {
    background-color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-content: center;
}

.blockingOverlay > div {
    color: var(--bt-gray-dark);
    display: inline-block;
    position: absolute;
    margin-right: -50%;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%)
}

@media screen and (max-width: 999px) or (max-height: 611px) {
    .sizeOverlay {
        display: block;
    }
}

@media screen and (min-width: 1000px) and (min-height: 612px) {
    .sizeOverlay {
        display: none;
    }
}

.nav-item:hover {
    background-color: gray;
}

.project-title {
    border: solid transparent;
    border-width: 0 0 1px 0;
}

.project-title:hover {
    border: solid gray;
    border-width: 0 0 1px 0;
}

.editor {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    background-color: white;
}

.tab-button {
    background-color: transparent;
    border-radius: 8px;
    border: 0;
}

.tab-button:focus {
    outline: 0;
}

.tab-button:hover {
    background-color: lightgray;
}

.active-tab-button {
    background-color: var(--bt-gray-dark);
    color: white;
}

.active-tab-button:hover {
    background-color: var(--bt-gray-dark);
    color: lightgray;
}

#testview {
    z-index: 10000;
    position: fixed;
    display: block;
    width: 600px;
    height: 100%;
    top: 48px;
    right: -600px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    background-color: white;
}

.hover-rotate:hover {
    transform: rotate(90deg);
}

.hover-zoom:hover {
    transform: scale(1.1);
}

#chatview {
    background-color: white;
    border-radius: 8px;
    height: calc(100% - 200px);
    box-shadow: inset 0 0 15px #dadada;
    float: bottom;
    display: flex;
}

.scrollable {
    overflow-y: scroll;
}

.send-button:hover {
    transform: scale(1.1);
}

#tabs {
    background-color: lightgray;
}

#tabs:hover > div > p {
    width: 140px;
}

#tabs div:hover > p {
    color: gray;
}

#tabs div:hover > .hover-zoom {
    transform: scale(1.1);
}

#tabs div:hover > .hover-rotate {
    transform: rotate(90deg);
}

.triangle-pointer {
    display: none;
    position: absolute;
    left: 2px;
}

.active-tab > .triangle-pointer {
    display: block;
}

.blocklyMainBackground {
    stroke-width: 0;
}

.modal {
    z-index: 11000;
}

#speechBubblesContainer {
    width: 100%;
    display: inline-block;
}

.speechBubble0 {
    background-color: var(--alexa-blue);
    border-radius: 8px;
    color: white;
    display: inline-block;
    max-width: 300px;
}

.speechBubble1 {
    background-color: var(--bt-gray-dark);
    border-radius: 8px;
    color: white;
    display: inline-block;
    max-width: 300px;
}

.speechBubble2 {
    background-color: gray;
    border-radius: 8px;
    color: white;
    width: 100%;
    text-align: center;
}

#generatingServiceOverlay p {
    position: absolute;
    top: calc(50% - 75px);
    width: 100%;
    text-align: center;
    color: white;
    font-size: 30px;
}