@charset "UTF-8";

a {
    text-decoration: none;
}

.notification {
  background-color: whitesmoke;
  border-radius: 15px;
  padding: 0.25rem 2.5rem;
  position: relative;
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
}

.notification p {
    margin-block: 5px;
}


.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

.notification strong {
  color: currentColor;
}

.notification code,
.notification pre {
  background: white;
}

.notification pre code {
  background: transparent;
}

.notification > .delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}

.notification.is-white {
  background-color: white;
  color: #0a0a0a;
}

.notification.is-black {
  background-color: #0a0a0a;
  color: white;
}

.notification.is-light {
  background-color: whitesmoke;
  color: #363636;
}

.notification.is-dark {
  background-color: #363636;
  color: whitesmoke;
}

.notification.is-primary {
  background-color: #00d1b2;
  color: #fff;
}

.notification.is-link {
  background-color: #3273dc;
  color: #fff;
}

.notification.is-info {
  background-color: #209cee;
  color: #fff;
}

.notification.is-info {
    background-color: #adf;
    color: rgba(0, 0, 0, 0.8);
}

.notification.is-success {
  background-color: #73e79c;
  color: rgba(0, 0, 0, 0.8);
}

.notification.is-warning {
  background-color: #ffe993;
  color: rgba(0, 0, 0, 0.8);
}

.notification.is-danger {
  background-color: #ff3860;
  color: #fff;
}

/* menu */

    .auth .lds-ellipsis div {
        background-color: #3D4F95;
    }

    .auth .lds-ellipsis {
        margin-top: 100px;
    }

    .menu-column {
        width: 100%;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .user-profile-btn {
        position: absolute;
        top: 64px;
        right: 64px;
        height: 48px;
        width: 48px;

        border-radius: 16px;
        font-size: 24px;
        line-height: 48px;
        text-align: center;
        text-decoration: none;
        
        background: #3D4F95;
        color: #EEF1FB;
        border: 1px solid #333;

        cursor: pointer;
        z-index: 10;
    }
    .user-profile-btn:hover,
    .user-profile-btn:focus, /* For keyboard navigation */
    .user-profile-btn:active /* For tap on mobile */ {
        background: #5771D5;
        border-color: #666;
    }


    .user-profile-links {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      right: calc(64px - 16px);
      top: calc(64px + 32px);
      border-radius: 10px;
    }

    .user-profile-links a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .user-profile-links a:hover {
      background-color: #f1f1f1;
      border-radius: 10px;
    }

    .user-profile-container:hover .user-profile-links,
    .user-profile-container:focus .user-profile-links, /* For keyboard navigation */
    .user-profile-container:active .user-profile-links /* For tap on mobile */ {
      display: block;
    }


    .brand-title {
        text-align: center;
        font-size: 24px;

        background: #3D4F95;
        color: #EEF1FB;

        height: 40px;
        line-height: 40px;
        margin-bottom:40px;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    .menu-greeting {
        text-align: center;
        font-size: 45px;
        margin-bottom:10px;
    }
    .menu-new {
        text-align: center;
        position: relative;

        transition: height 0.3s ease-in-out; 
        height: auto;
    }
    .menu-new input,
    .menu-new [name='goal'] {
        width: 100%;
        line-height: 26px;
        font-size: 16px;
        border-radius: 10px;
        border: 1px solid #CCC;
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .menu-new input::placeholder,
    .menu-new [name='goal']::placeholder {
        font-size: 12px;
    }
    .menu-new input:focus,
    .menu-new [name='goal']:focus {
        outline: none !important;
    }
    .menu-button-start {
        position:absolute;
        right: 20px;
        bottom: 10px;
        padding: 5px 25px;
        border-radius: 10px;
        border: 1px solid #333;
        cursor: pointer;
        color: #EEF1FB;

        background: #3D4F95;
        border-color: #333;
    }
    .menu-button-start:hover {
        background: #5771D5;
        border-color: #666;
    }
    .menu-intro-container {
        position:relative;
        padding: 25px;
        margin-top: 45px;
        border: 1px solid #5771D5;
        border-radius: 10px;
        background: #ebeae0;
        display: flex;
        flex-direction: row;
        align-content: flex-start;
        justify-content: space-around;
    }
    .menu-intro-title {
        position:absolute;
        padding: 5px;
        left: 20%;
        right: 20%;
        top: -15px;
        text-align: center;
        border: 1px solid #5771D5;
        border-radius: 10px;

        background: #3D4F95;
        color: #EEF1FB;
    }
    .menu-intro-item {
        padding: 10px 5px;
        cursor: pointer;
        border-radius: 10px;
        border: 1px solid #0000;
    }
    .menu-intro-item:hover {
        background: #f1efe9;
        border: 1px solid #CCC;
    }
    .menu-intro-item a {
        background: #f7f8fd;
        color: #161C35;
    }
    .menu-intro-item-title {
        text-align: center;
    }
    .menu-intro-item-image {
        text-align: center;
        -background: #ccc;
        width: 150px;
        height:  150px;
        border-radius: 10px;
    }
    .menu-previous {
        border-top: 1px solid #CCC;
        margin-top: 40px;
        position: relative;
        padding-top: 15px;
    }
    .menu-previous-label {
        position: absolute;
        top: -10px;
        left: 40%;
        right: 40%;
        text-align: center;
        background: #f5f4ef;
        padding: 2px 10px;
        color: #666;
        font-size: 80%;
        text-transform: lowercase;
    }
    .menu-previous-label.wide-label {
        left: 20%;
        right: 20%;
        font-weight: bold;
        text-transform: unset;
    }
    .menu-previous-container {
        width: 100%;
    }
    .menu-previous-item {
        border: 1px solid #CCC;
        margin: 15px auto;
        border-radius: 10px;
        padding: 10px 45px 10px 25px;
        position: relative;
        cursor: pointer;
        display: block;
        color: #161C35;
    }
    .menu-previous-item:hover {
        background: #fff;
        border: 1px solid #5771D5;
    }
    .menu-previous-item-label {

    }
    .menu-previous-item-status {
        position: absolute;
        right: 10px;
        top: 15px;
        font-size:  50%;
    }
    .menu-item-tag {
        position: absolute;
        font-size: 50%;
        background: #3D4F95;
        color: #EEF1FB;
        padding: 2px 10px;
        border-radius: 5px;
        top: -7px;
        left: 10px;
    }
    .menu-item-tag-invert {
        border: solid 1px #5771D5;
        background: #f7f8fd;
        color: #161C35;
    }
/* request */



    .brand-title {
        text-align: center;
        font-size: 24px;

        background: #3D4F95;
        color: #EEF1FB;

        height: 40px;
        line-height: 40px;
        margin-bottom:40px;

        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 999;
    }
    .conversation-container {
        width: 100%;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }
    .workspace {
        --conversation-margins: 125px;
    }
    .workspace > .conversation-container {
        margin-top: -100px;
    }

    .conversation-container .conversation-title {
        text-align: center;
        font-size: 24px;

        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .conversation-container .conversation-title:after {
        content: "⏷";
        margin-left: 20px;
        padding: 2px 10px;
        border: 1px solid #CCC0;
    }
    .conversation-container .conversation-title-no-menu.conversation-title:after {
        content: "";
        padding: 0;
        margin: 0;
    }

    .conversation-box {
        position: relative;
    }
    .conversation-box.content-info {
        border: solid 1px #5771D5;
        background: #f7f8fd;
        color: #161C35;
        border-radius: 10px;
    }
    .conversation-box.content-request {
        background: #3D4F95;
        color: #EEF1FB;

        margin-right: var(--conversation-margins);
    }
    .conversation-box.content-response,
    .conversation-box.content-indented {

        margin-left: var(--conversation-margins);
    }
    .conversation-box.content-response {
        background: #5771D5;
        color: #EEF1FB;        
    }

    .conversation-box.content-response .table,
    .conversation-box.content-request .table {
        color: #EEF1FB;
    }

    .conversation-box .title {
        font-weight:  bold;
        font-size: 24px;
    }

    .conversation-box .conversation-content {
        font-size: 14px;
    }

    .conversation-box .controls > .btn {
        display: inline-block;
        flex-grow: 1;
    }

    .conversation-box .controls {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }

    .conversation-box .prompt .btn {
        float: right;
        display: inline-block;
        margin: 0;
        padding: 5px 20px;
        font-size: 75%;
    }

    .conversation-box .prompt {

    }

    .conversation-box .table .btn {
        width: unset;
        padding: 2px 5px;
        font-size: 75%;
    }

    .conversation-box .table input {
        width: 100%;
    }
/* results */

    .conversation-content > .btn {
        width: 100%;
        font-size: 75%;
    }

    .converastion-break {
        border-top: 1px solid #CCC;
        margin-top: 40px;
        position: relative;
        padding-top: 15px;
    }

    .converastion-break-label {
        position: absolute;
        top: -10px;
        left: 40%;
        right: 40%;
        text-align: center;
        background: #f5f4ef;
        padding: 2px 10px;
        color: #666;
        font-size: 80%;
    }


    .conversation-content.conversation-content-row {
        display: flex;
        flex-direction: row;
        align-content: flex-start;
        justify-content: space-around;
        margin-top: 10px;
    }

    .conversation-visualization:hover {
        background: #f1efe9;
        border: 1px solid #CCC;
    }

    .conversation-visualization {
        padding: 10px 5px;
        cursor: pointer;
        border-radius: 10px;
        border: 1px solid #0000;
    }
    .conversation-visualization .conversation-visualization-label {
        text-align: center;
        margin-top: 10px;
        font-size: 16px;
    }
    .conversation-visualization .conversation-visualization-content {
        text-align: center;
        -background: #ccc;
        width: 150px;
        height: 150px;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
    }




    .conversation-title-container {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .conversation-title-links {
      display: none;
      position: relative;
      background-color: #f9f9f9;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      right: -135px;
      border-radius: 10px;
      top: -10px;
      width: 175px;
    }

    .conversation-title-links a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .conversation-title-links a:hover {
      background-color: #f1f1f1;
      border-radius: 10px;
    }

    .conversation-title-container:hover .conversation-title-links {
      display: inline-block;
      float: right;
      text-align: center;
    }
    
    .conversation-title-container:hover .conversation-title:after {
        background: #f1efe9;
        border: 1px solid #CCC;
        border-radius: 10px;
        z-index: 99999;
        position: relative;
    }



.conversation-status-scheduled .btn-change,
.conversation-status-active .btn-change,
.conversation-status-gathering .btn-change,
.conversation-status-analyzing .btn-change,
.conversation-status-complete .btn-change {
    display: none !important;
}


.response-content-block {
    margin: 10px 0;
}
.response-content-block .response-title {
    font-weight: bold;
    font-size: 120%;
}
.response-content-block .response-content {
    -white-space: pre-line;
}
.response-content-block .response-content p {
    white-space: pre-line;
}


    .response-content-block.response-foldable .response-title {
        cursor: pointer;
        border-bottom: 1px solid #0000;
    }
    .response-content-block.response-foldable .response-title:hover:after {
        -border-bottom: 1px solid #5771D566;
        color: #5771D5;
    }
    .response-content-block.response-foldable .response-title:after {
        -content: "⏷";
        content: "\23F7";
        margin-left: 10px;
    }
    .response-content-block.response-foldable.response-folded .response-title:after {
        -content: "⏵";
        content: "\23F5";

    }

    .response-content-block.response-foldable.response-folded .response-content {
        display: none;
    }

    .conversation-box-tag {
        position: absolute;
        font-size: 50%;
        background: #3D4F95;
        color: #EEF1FB;
        padding: 2px 10px;
        border-radius: 5px;
        top: -7px;
        left: 10px;
    }
    .conversation-box-tag-invert {
        border: solid 1px #5771D5;
        background: #f7f8fd;
        color: #161C35;
    }


.conversation-box[step="points"] .conversation-content .point-entry:nth-child(-n+3) .btn-remove {
    display: none;
}


.menu-new-context {
    display: none;
    font-size: 13px;
    text-align: left;
    margin: 0px 120px 0px 20px;
    position: absolute;
    bottom: 10px;
    line-height: 16px;
}
.menu-new-context input,
.menu-new-context select {
    display: inline;
    width: unset;
    line-height: unset;
    padding: 2px 10px;
    border:none;
    margin: 5px;
    font-size: 13px;
    /* width: 100px; */
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid #CCC;
}

.menu-new.show-menu-new-context textarea {
    margin-bottom: 55px;
} 
.show-menu-new-context .menu-new-context {
    display: block;
}
.show-menu-new-context .menu-button-start {
    bottom: 15px;
}
.menu-new-context select {
    font-size: 13px;
}


table.striped tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.align-top tbody td {
    vertical-align: top;
}


.response-content h1,
.response-content h2,
.response-content h3 {
    font-size: 100%;
}

.response-content {
    margin-left: 15px;
}

.response-content ul {
    padding-left: 15px;
    margin-left: 15px;
}


.button-group {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
}
.button-group .btn {
    display: inline-block;
    flex-grow: 1;
    background-color: #FFF3;
}

.button-group .btn.active {
    background-color: #0003;
    color: white;
}

.button-group .btn:hover {
    background-color: #FFF6;
}
.button-group .btn.active:hover {
    background-color: #0003;
}
.button-group .btn.active div:first-child:before {
    content: "\2714";
    margin-left: -25px;
    position: absolute;
}

.conversation-visualization-content img,
.menu-intro-item-image img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    vertical-align: middle;
    margin-top: 22px;
}


table tr.topic-header {
    
}
table tr.topic-header td > div {
    background-color: #f2f2f2;
    padding: 5px 0;
}

table tr.topic-header:not(:first-child) td {
    padding: 0;
    padding-top: 20px;
}


.topic-header {
    background-color: #055e29;
    color: white;
    width:  100%;
    border-radius: 5px;
    text-align: center;
    padding: 5px 10px;
}

.topic-header.topic-unique {
    background-color: #ffe993;
    color: #161C35;
}

.topic-cluster {
    background-color: #5771D5;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}



#workbook-content tr:last-child th {
    border-bottom: 2px solid;
}
.tingle-modal-box {
    -width: 80%;
    max-width: 600px;
}




.conversation-box .alignment-controls {
    justify-content: space-between;
}

.conversation-box .controls.alignment-controls > .btn {
    flex-grow: 0;
}

.content-response-completed .conversation-content textarea:not(:focus) {
    padding: 5px;
    border: 1px dotted #EEF1FB;
    border-radius: 3px;
    background-color: #0003;
    font-style: italic;
    white-space: pre-line;
    color: #EEF1FB;
}


.conversation-box .controls.alignment-controls > .btn-edit {
    display: none;
}
.conversation-box.content-response-completed .controls.alignment-controls > .btn-edit {
    display: inline-block;
}
.conversation-box.content-response-completed .controls.alignment-controls > .btn-next {
    display: none;
}


.btn.btn-general, .conversation-box .controls > .btn.btn-generate {
    font-size: 150%;
    font-weight: bold;
    width: unset;
    padding: 10px;
    border: 1px solid white;
}

.conversation-box .controls > .btn.btn-generate:hover {
    border: 1px solid #000A;
}

.btn.btn-general {
    font-size: 100%;
    color: #EEF1FB;
    background: #5771D5;
    border: 1px solid #161C35;
}
.btn.btn-general:hover {
    background: #8093df;
}

.menu-item-goal .menu-previous-item-status {
    top: 8px;
    text-align: right;
}


.blurred {
  filter:url(#blurred);
  -webkit-filter: blur(3px);  
  filter: blur(3px);  
}




.tingle-modal-box__footer .legend {
    float: right;
}

.tingle-modal-box__footer .legend .legend-item {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}
#visualization svg text {
    -font-size: 1.25vw;
    font-size: 12px;
}


.tool-title {

}
.tool-description {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;    
}
.tool-underline {
    border-bottom: 1px solid #CCC;
}
.tool-table {
    font-size: 14px;
}


.spacer-margin-top {
    margin-top: 15px;
}
.spacer-margin-top-ex {
    margin-top: 35px;
}
.spacer-margin-bottom {
    margin-bottom: 15px;
}
.spacer-margin-bottom-ex {
    margin-bottom: 35px;
}
.spacer-padding-top {
    padding-top: 15px;
}
.spacer-padding-top-ex {
    padding-top: 35px;
}
.spacer-padding-bottom {
    padding-bottom: 15px;   
}
.spacer-padding-bottom-ex {
    padding-bottom: 35px;   
}
.internal-padding {
    padding: 15px;
}
.internal-padding-ex {
    padding: 35px;
}



.invterted-text {
    padding: 15px;
    border-radius: 10px;
    background: #3D4F95;
    color: #EEF1FB;
}

.cluster-summary-group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
}

.cluster-summary-group > .conversation-box {
    flex: 1 1 45%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:  300px;
    margin: 0;
}
.cluster-summary-group > .conversation-box .conversation-content {
    line-height: 1.5;
}
.conversation-summary {
    line-height: 1.5;
    text-align: justify;
}


@media screen and (orientation: portrait) {
    .menu-column {
        width: unset;
        flex-direction: column;
    }
    .workspace {
        padding: 20px;
        padding-top: 125px !important;
    }
    .menu-intro-item-image {
        width: unset;
    }
    .menu-intro-title {
        font-size: 12px;
        left: 10%;
        right: 10%;
        top: -13px;
    }
    .menu-intro-item {
        flex-grow: 1;
    }
    .menu-new input, .menu-new [name='goal'] {
        margin-bottom: 50px;
    }
    .menu-new-context {
        bottom: 0px;
        font-size: 10px;
    }
    .menu-new.show-menu-new-context textarea {
        margin-bottom: 70px;
    }
    .menu-new-context select {
        font-size: 10px;
    }
    .menu-previous-label {
        left: 20%;
        right: 20%;
    }


    .menu-new-context {
        bottom: -10px;
    }
    .menu-new-context > span:first-child {
        display: block;
    }
    .menu-new-context select {
        margin-left: 0;
        padding-left: 0;
    }

    .conversation-content.conversation-content-row {
        flex-direction: column;
    }

    .tingle-modal-box {
        width: 100%;
    }
    .tingle-modal {
        overflow-y: auto;
    }
    .user-profile-btn {
        right: 16px;
    }

    .tingle-modal-box__footer .legend {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 5px;
        column-gap: 5px;
        text-align: center;
    }
    .tingle-modal-box__footer .legend .legend-item {
        flex-grow: 1;
    }
    #visualization svg text {
        font-size: 12px;
    }

    .workspace {
        --conversation-margins: 30px;
    }

    .conversation-visualization-content img,
    .menu-intro-item-image img {
        width: unset;
        height: 125px;
    }
}


.pinned-top {
    position: fixed;
    z-index: 5;
    border-radius: 0;
    top: 20px;
    left: 0;
    right: 0;
}

.pinned-top.notification {
    font-size: 70%;
}


.markdown-smaller * {
    font-size: 100%;
    font-weight: normal;
}



.character-icon {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border: solid 1px #5771D5;
    background: #3D4F95;

    border-radius: 100%;
    width: 45px;
    height: 45px;

    position: absolute;
    bottom: -15px;
    left: -10px;
}
.character-icon img {
    height: 30px;
}


.conversation-box .character-icon {
    position: absolute;
    bottom: -15px;
    left: -10px;
}
.conversation-box .character-icon img {
    height: 30px;
}




.feedback-wrapper {
    position: relative;
}

.feedback-wrapper > .conversation-box {
    display: none;
}

.feedback-wrapper > .feedback-teaser {
    position: absolute;
    transition: transform .1s;

    -left: calc(var(--conversation-margins) * -1);
    left: -25px;
    top: -100px;
}

.feedback-teaser .label {
    -width: calc(var(--conversation-margins) - 25px);
    background: #3D4F95;
    height: 100%;
    padding: 10px;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    margin-bottom: 35px;

    margin-left: 20px;
}

.feedback-teaser .title {
    font-size: 14px;
    color: white;
}
.feedback-teaser .message {
    font-size:10px;
    color: white;
}
.feedback-teaser img {
    width: 25px;
    height: 25px;
}
.feedback-wrapper > .feedback-teaser:hover,
.feedback-wrapper > .conversation-box .character-icon:hover {
    _transform: scale(1.05);
    cursor: pointer;
}
.feedback-wrapper > .feedback-teaser:hover .label {
    _transform: translateX(-3px);
}
.feedback-wrapper > .feedback-teaser:hover .label,
.feedback-wrapper > .feedback-teaser:hover .character-icon {
    border: 1px solid #5771D5;
}


.feedback-wrapper.active > .conversation-box {
    display: block;
    margin-bottom: 20px;
}
.feedback-wrapper.active > .feedback-teaser {
    display: none;
}


.feedback-teaser > .label img {
    display: none;
}
.feedback-teaser > .label span {

}

@media screen and (orientation: portrait) {
    .feedback-teaser > .label img {
        display: block;
    }
    .feedback-teaser > .label div {
        display: none;
    }
    .feedback-wrapper > .feedback-teaser {
        left: -5px;
    }
    .feedback-teaser .label {
        padding: 5px;
        border-radius: 5px;

        border-bottom-left-radius: 0;
        margin-bottom: 25px;
        margin-left: 10px;
    }

    .character-icon {
        width: 35px;
        height: 35px;
    }
    .feedback-teaser img {
        width: 25px;
        height: 25px;
    }

    .conversation-title-container:hover .conversation-title-links {
        right: -30px;
    }
}




/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ccc;
  color: #ccc;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}
.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ccc;
  color: #ccc;
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}


.conversation-box .conversation-content > .dot-pulse {
    margin: 20px auto;
}


input[type="color" i]::-webkit-color-swatch-wrapper {
    padding: 2px;
}

.input-group > input[type="color"] {
    height: 35px;
    padding: 3px;
}






.tingle-modal-box__content > .legend {
    height: 30px;
}

.legend .legend-item {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}
.legend .legend-left {
    position: absolute;
    left: 5%;
}
.legend .legend-center {
    position:absolute;
    left: 36%
}
.legend .legend-right {
    position: absolute;
    right: 5%;
}








        /*
        .pipeline {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .pipeline-step {
            border: 1px solid #ccc;
            padding: 20px;
            position: relative;
            flex: 1;
        }
        */

        .pipeline {
            display: flex;
            align-items: stretch;
        }
        .pipeline-step {
            border: 3px solid #ccc;
            padding: 20px;
            margin-right: 35px;
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 10px;
        }

        .pipeline-step .title {
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 150%;
            text-align: center;
        }
        .pipeline-step dl {
            margin: 0;
        }
        .pipeline-step dt {
            font-weight: bold;
        }
        .pipeline-step dd {
            margin: 0 0 10px 0;
        }

        .pipeline-step::after {
            content: '';
            position: absolute;
            top: 0;
            right: -31px;
            width: 30px;
            height: 100%;
            background-color: #ccc;
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            border-left: 1px solid #ccc;
        }
        .pipeline-step:last-child {
            margin-right: 0;
        }
        .pipeline-step:last-child::after {
            content: none;
        }
        /*
        .pipeline-step::after {
            content: '>';
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            font-size: 24px;
            color: #888;
        }
        .pipeline-step:last-child::after {
            content: '';
        }
        */

.large-select {
    font-size: 24px;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border-radius:10px;
    border: 3px solid #CCC;
    color: #333;
}

.tingle-modal .modal-content input,
.tingle-modal .modal-content select {
    display: block;
    width: 100%;
    /* max-width: 300px; */
    margin: 5px 0;
}
.tingle-modal .modal-content label {
    display: block;
    width: 100%;
}
.tingle-modal .modal-content input[type='checkbox'] {
    display: inline;
    max-width: 50px;
    width: auto;
    margin-right: 10px;
}
