﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

li.nav-item.disabled {
    background: #efefef;
}

.button-submit.disabled {
    background-color: #E7A28D;
    cursor: default;
}

    .button-submit.disabled:hover {
        background-color: #E7A28D;
        cursor: default;
    }

.text-primary {
    color: #E7A28D;
}

.input-group-input {
    border: solid 1px green;
    position: relative;
}

    .input-group-input input[type=text] {
        border: none;
        width: 100%;
        padding-right: 123px;
    }

    .input-group-input .input-group-prepend {
        position: absolute;
        right: 4px;
        top: 4px;
        bottom: 4px;
        z-index: 9;
    }

.dnodes-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.dnodes-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 40%;
}

.close-dnodes-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-dnodes-modal:hover,
.close-dnodes-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.plans-wrapper {
    display: flex;
    flex-direction: row;
}
.plans-wrapper.subscriptions-plans {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.plans-wrapper.popup-plans {
    justify-content: center;
    gap: 20px;
}
.plan-wrapper {
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 320px;
    padding: 20px;
    border: 1px solid #C0C0C0;
    border-radius: 6px;
}

.plan-wrapper p {
    margin: 0;
}  

.plan-upgrade-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-functionality-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-functionality-element{
    display: flex;
    flex-direction: row;
    gap: 4px;
}
.movable-box{
    z-index: 9;
    background-color: white;
    border: 1px solid #d3d3d3;
    padding: 20px;
    cursor: move;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.movable-box h5{
    font-size: 18px;
}
.movable-box h6{
    font-size: 16px;
}
.movable-box p{
    font-size: 14px;
}
.movable-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.movable-box-close-button {
    cursor: pointer;
    padding: 4px;
    border-radius: 2px;
}
.movable-box-close-button:hover {
    background: #E5EEF1;
}
.movable-box-header h5 {
    margin: 0;
}
.movable-box-header > div {
    display: flex;
    flex-direction: row;
    gap:  26px;
    align-items: center;
}
.element-plus-icon{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
} 
.info-icon {
    cursor: pointer;
}

.info-icon:hover {
    background-color: #E5EEF1;
    border-radius: 2px;
}

.quantity-container {
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    border: 1px solid #C0C0C0;
    border-radius: 0.5rem;
}

.quantity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.quantity-text {
    flex: 1;
}

.quantity-title {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.quantity-controls {
    display: flex;
    gap: 0.375rem;
}

.quantity-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    font-weight: 500;
    border: 1px solid #C0C0C0;
    background-color: #fff;
    color: #374151;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.quantity-button:disabled {
    color: #D0D0D0;
    border: 1px solid #D0D0D0;
}

.quantity-input {
    display: inline-block;
    width: 1.5rem;
    background-color: transparent;
    border: none;
    color: #374151;
    text-align: center;
    border-radius: 0;
    padding: 0;
    font-size: 0.875rem;
    outline: none;
}

.plan-upgrade-title{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    height: 28px;
}

.plan-upgrade-title h5 {
    margin: 0;
}

#mouse-actions-widget {
    position: fixed;
    left: 0;
}
.file-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin: 6px 0;
    padding: 0 12px;

}
.file-option:hover {
    background-color: #E5EEF1;
    border-radius: 4px;
}
.file-option p {
    margin: 0;
}

#settings{
    margin-right: 30px;
}

#current-file-options-container {
    position: relative;
    width: 100%;
    height: 53px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left:40px;
    z-index: 1;
    background-color: #fafafa;
    border-bottom: 1px solid #ccc;
}

#file-option-left-wrapper, #file-option-right-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.current-plan-label {
    padding: 2px 8px;
    background:  #E5EEF1;
}

.saving-wrapper {
    width: 167px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    animation: spin 1s linear infinite;
}

.flex-container {
    display: flex;
}

.flex-container:hover {
    cursor: pointer;
}

@keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

.file-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

#export-file-dropdown.toggle {
    .dropdown-arrow {
        transform: rotate(180deg);
    }
}

#image-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 6px;
    left: 10px;
}

#image-dropdown-content a {
    min-width: 160px;
}

#image-dropdown-content a:hover {
    background: #E5EEF1;
    border-radius: 6px;
}

#export-file-dropdown a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

#image-dropdown-content.toggle {
    display: block;
}

#saved-locally-text, #unsaved-changes-text {
    cursor: pointer;
}

#saved-locally:hover, #unsaved-changes-text:hover {
    text-decoration: underline;
}

#unsaved-changes-text, #saved-locally {
    display: flex;
    justify-content:center;
    align-items: center;
}

#upgrade-modal-content {
    width: 66%;
    max-width: 1100px;
    padding: 60px 40px;
    margin: 5% auto;
}

#info-and-plans-wrapper {
    display: flex;
    flex-direction: column;
}

#close-upgrade {
    margin-top: -40px;
}

.close-button {
    float: right;
}

.close-button:hover {
    background: #E5EEF1;
    border-radius: 4px;
    cursor: pointer;
}

.plan-upgrade-title{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    height: 28px;
}

.plan-upgrade-title h5 {
    margin: 0;
}

.upgrade-modal-button {
    height: auto !important;
    margin-top: auto;
    width: 100%;
    border-radius: 4px !important;
    font-weight: 500 !important;
    letter-spacing: 0.17px !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

#nav-bar-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
    cursor: pointer;
}

.nav-left-wrapper {
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
    margin-right: 20px;
    gap: 16px;
}

.nav-right-wrapper {
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 16px;
}

.navbar-item {
    padding: 4px 6px;
    border: none;
    background: none;
}

.navbar-item:hover {
    background-color: #E5EEF1;
    border-radius: 4px;
}

.navbar-item:focus {
    outline: none;
}

.login-signup-wrapper{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.signup-button{
    margin-right: 30px;
    padding: 4px 16px;
    border-radius: 4px;
    background: #C8512D;
    border: 1px solid transparent;
    color: #FFF;
}

.signup-button:hover{
    background: #A64326
}

.login-button{
    background:none;
    border:none;
    cursor:pointer;
}

.login-button:hover{
    text-decoration: underline;
}

.dropdown{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    padding: 4px 6px;
}

.dropdown-content{
    display: none;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 6px;
    cursor: pointer;
}

.help-dropdown-content {
    position: absolute;
    right: 0;
}

.help-dropdown-content a {
    min-width: 258px;
}

.help-dropdown-content.toggle {
    display: block;
}

.account-dropdown-content{
    position: absolute;
    right: 0;
}

.account-dropdown-content a{
    min-width: 170px;
}

#account-dropdown:hover, #file-dropdown:hover{
    background-color: #E5EEF1;
    border-radius: 4px;
}

#account-dropdown.toggle{
    .dropdown-arrow-account{
        transform: rotate(180deg);
    }
}

.dropdown-arrow-accordion {
    margin-left: auto;
}

.dropdown-content a:hover {
    background:  #E5EEF1;
    border-radius: 6px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    width: fit-content;
    display: flex;
    gap: 12px;
}

.account-dropdown-content.toggle {
    display: block;
}

.help-accordion {
    display: flex;
}

.help-accordion-content {
    display: none;
}

.help-accordion-content.toggle {
    display: block;
}

.help-accordion-content a {
    padding: 12px 16px 12px 52px;
}

.help-accordion.toggle {
    .dropdown-arrow-accordion{
        transform: rotate(180deg);
    }
}

.file-button.toggle{
    .dropdown-arrow{
        transform: rotate(180deg);
    }
}

.file-dropdown-content.toggle {
    display: block;
}

#file-dropdown-content {
    position: absolute;
    left: 0;
}

#file-dropdown-content a {
    min-width: 240px;
}

.file-dropdown-content.toggle {
    display: block;
}

.dropdown-content a p {
    margin: 0;
    color: black;
    width: fit-content;
}

.help-button {
    padding: 4px 6px;
}

.help-button:hover {
    background-color: #E5EEF1;
    border-radius: 4px;
    cursor: pointer;
}

#help-dropdown.toggle{
    .dropdown-arrow{
        transform: rotate(180deg);
    }
}

#visit-support-page-from-help-menu {
    border-top: solid;
    border-color: #E6E6E6;
    border-width: 1px 0;
    text-decoration: underline;
}

.tabs-wrapper {
     position: relative;
     display: flex;
     flex-direction: row;
     align-items: center;
     height: 48px;
     overflow: auto;
     scrollbar-width: none; /* Firefox */
 }

/* For WebKit-based browsers (Chrome, Safari) */
.tabs-wrapper::-webkit-scrollbar {
    width: 0; /* Make the scrollbar invisible */
}

.ul-tabs {
    height: 48px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    border: none;
    margin: 0;
    align-items: end;
}

.ul-tabs li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ul-tabs li:hover {
    cursor: pointer;
    background-color: #EAEAEA;
}

.tab {
    float: left;
    height: 45px;
    width: 150px;
    max-width: 150px;
    border: 2px solid #EAEAEA;
    border-radius: 8px 8px 0 0;
    padding: 12px 12px 12px 12px;
}

.tab,
.tab a {
    transition: all .25s;
}

.tab a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
}

.tab a:hover {
    text-decoration: none;
}

.tab.tabClosed,
.tab.tabClosed a:first-child {
    margin-right: 0;
    border-width: 0;
}

.tab.tabClosed {
    width: 0 !important;
}

.tab.tabClosed a {
    opacity: 0;
}

.tab:hover {
    background: #fff;
}

.tab.selected {
    border-bottom: none;
    background: #F9F9F9;
}

#add-tab {
    float: left;
    height: 45px !important;
    width: 45px !important;
    min-width: 30px !important;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#add-tab:hover {
    background-color: #EAEAEA;
    border-radius: 50%
}

.movable-box-table {
    width: 100%;
}

.movable-box td {
    padding: 8px 8px;
    font-size: 14px;
}

.movable-box tr:has(>td) {
    border: solid;
    border-color: #E6E6E6;
    border-width: 1px 0;
}

.movable-box tr {
    padding: 8px;
    font-size: large;
}

.movable-box th {
    padding: 16px 8px;
}

#keyboard-actions-box {
    position: absolute;
    top: 20%;
    right: 2%;
    width: 290px
}

.modal-table-part {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: solid;
    border-color: #E6E6E6;
    border-width: 1px 0;
}

.modal-table-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-top: solid;
    border-color: #E6E6E6;
    border-width: 1px 0;
}

.modal-table-row p{
    margin: 0;
}

#help-menu-arrow {
    position: absolute;
    top: 0px;
    right: 60px;
    z-index: 2;
}

#settings-arrow{
    position: absolute;
    top: 10px;
    right: 35px;
    z-index: 2;
}

.help-wrapper{
    position: relative;
}

.mouse-actions-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 5;
    margin-left: 26px;
}

#mouse-actions-widget {
    position: relative;
    background: none;
    border:  none;
    border-radius: 50%;
    padding: 15px;
    z-index: 5;
}

#mouse-actions-widget:hover {
    background: #e5eef2;
}

#mouse-actions-widget:focus {
    outline: none;
}

#mouse-actions-box {
    position: absolute;
    left: 0;
    top: -1px;
    width: 400px;
}

#mouse-box-icon {
    cursor: pointer;
    border-radius: 2px;
}

#mouse-box-icon:hover {
    background: #E5EEF1;
    border-radius: 50%;
}

#toolbar-arrow {
    position: absolute;
    top: 60px;
    left: -140px;
    z-index: 2;
}

#toolbar-arrow.open {
    display: none;
}

#tree-arrow {
    position: absolute;
    top: 0;
    right: 110px;
    z-index: 2;
}

#undo-redo-arrow {
    position: absolute;
    top: -10px;
    left: 100px;
    z-index: 2;
}

#variables-arrow {
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: 2;
}

.administer-sub-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

.admin-sub-right-side {
    margin-top: 73px;
}

.admin-button {
    width: 244px;
    text-align: center;
}

.remove-button{
    position: relative;
    right:  50px;
    width: fit-content;
    height: fit-content;
    padding: 0;
}

.remove-button:hover {
    background-color: #E5EEF1;
}

#administer-sub-header h3{
    margin: 0;
}

.administer-sub-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

li.administer-sub-list-item:not(:last-child) {
    margin-bottom: 10px;
}

#administer-sub-input-messages {
    height: 30px;
}

#administer-sub-info-box {
    width: 350px;
    position: absolute;
}

#customer-portal-info-box{
    max-width: 350px;
    position: absolute;
}

#change-admin-content-wrapper {
    display: flex;
    flex-direction: column;
}

#change-admin-save {
    width: 62px;
    margin: 0px auto;
}

#change-admin-modal-content {
    max-width: 600px;
}

#change-admin-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.inputfield-administer-sub {
    padding: 5px 10px;
    border-radius: 6px;
}

.inputfield-administer-sub.invalid-email {
    border: 2px solid red;
}

#become-admin-button {
    height:  fit-content;
    margin: 0 auto;
}

#become-admin-info-box {
    width: 350px;
    position: absolute;
}

.subscriptions-plan-wrapper {
    height: 600px !important;
}

.subscriptions-plan-wrapper a {
    color: #cf5f3c !important;
    font-weight: bold;
    cursor: pointer !important;
}

.subscriptions-plan-wrapper a:hover {
    text-decoration: underline !important;
}

td,
th {
    padding: 10px;
}

.become-admin-wrapper {
    background: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}

#become-admin-plan-details {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 1620px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#become-admin-plans-radio-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#become-admin-save-percentage {
    margin-left: 260px;
    display: inline-flex;
}

#become-admin-terms-and-conditions-professional {
    margin-top: 80px;
}

#become-admin-paymentButton {
    width: 100%;
}

#become-admin-stripe-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 80px;
}

.stripe-link:hover {
    cursor: pointer;
}

.quantity-container {
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    border: 1px solid #C0C0C0;
    border-radius: 0.5rem;
}

.quantity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.quantity-text {
    flex: 1;
}

.quantity-title {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.quantity-controls {
    display: flex;
    gap: 0.375rem;
}

.quantity-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    font-weight: 500;
    border: 1px solid #C0C0C0;
    background-color: #fff;
    color: #374151;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.quantity-button:disabled {
    color: #D0D0D0;
    border: 1px solid #D0D0D0;
}

.quantity-input {
    display: inline-block;
    width: 1.5rem;
    background-color: transparent;
    border: none;
    color: #374151;
    text-align: center;
    border-radius: 0;
    padding: 0;
    font-size: 0.875rem;
    outline: none;
}

#become-admin-quantity-error-message {
    visibility: hidden;
    margin-left: 8px;
    color: #dc3545;
    font-size: 13px;
}

.plan-upgrade-title{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    height: 28px;
}

.plan-upgrade-title h5 {
    margin: 0;
}

#become-admin-summary-wrapper {
    margin-top: 93px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#select-plan-professional-wrapper {
    width: 100%;
    height: 100%;
    padding: 70px 70px 30px 70px;
    display: flex;
    flex-direction: row;
}

#plans-radio-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#save-percentage {
    margin-left: 260px;
    display: inline-flex;
}

#terms-and-conditions-professional {
    margin-top: 80px;
}

#paymentButton {
    width: 100%;
}

#or-back-wrapper {
    margin-top: 8px;
}

#stripe-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 80px;
}

.stripe-link:hover {
    cursor: pointer;
}

.quantity-container {
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    border: 1px solid #C0C0C0;
    border-radius: 0.5rem;
}

.quantity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.quantity-text {
    flex: 1;
}

.quantity-title {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.quantity-controls {
    display: flex;
    gap: 0.375rem;
}

.quantity-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    font-weight: 500;
    border: 1px solid #C0C0C0;
    background-color: #fff;
    color: #374151;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

.quantity-button:disabled {
    color: #D0D0D0;
    border: 1px solid #D0D0D0;
}

.quantity-input {
    display: inline-block;
    width: 1.5rem;
    background-color: transparent;
    border: none;
    color: #374151;
    text-align: center;
    border-radius: 0;
    padding: 0;
    font-size: 0.875rem;
    outline: none;
}

#quantity-error-message {
    visibility: hidden;
    margin-left: 8px;
    color: #dc3545;
    font-size: 13px;
}

.plan-upgrade-title{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    height: 28px;
}

.plan-upgrade-title h5 {
    margin: 0;
}

#summary-wrapper {
    margin-top: 93px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.summary-page-buttons{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#interactive-tutorial {
    width: 410px;
    height: 600px;
    position: fixed;
    top: 150px;
    left: 0;
    z-index: 5;
    margin: 70px 30px 30px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    background: #efefef;
    border: 2px solid #EAEAEA;
}

#interactive-tutorial-quit {
    max-width: fit-content;
    margin: 20px 20px 20px auto;
}

#interactive-tutorial-quit:hover{
    cursor: pointer;
    background-color: #E5EEF1;
}

#interactive-tutorial-text {
    text-align: left;
    margin: 30px;
    font-size: 1.25rem;
    line-height: 1.2;
    height: 400px;
    overflow: auto;
    border-radius: 8px;
}

.tutorial-button:hover {
    cursor: pointer;
}

#tutorial-navigation-line {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.tutorial-text-opacity{
    opacity: 0.2;
}

#summary-page-modal {
    display: none;
}

.summary-page-modal-content {
    width: 50%;
    max-width: 600px;
    padding: 30px 30px;
    display: flex;
    flex-direction:  column;
    gap: 32px;
}

.landing-page-option {
    background-color: #4E6E7E;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    width: 300px;
}

.arrow-right {
    float: right;
}

#visit-support-page {
    text-decoration: underline;
    cursor: pointer;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
}

#landing-page-header {
    width: 100%;
    text-align: center;
    color: #172026;
    font-size: 61px;
    font-family: Roboto;
    font-weight: 300;
    word-wrap: break-word;
}

#landing-page-subtitle {
    width: 100%;
    text-align: center;
    color: #172026;
    font-size: 24px;
    font-family: Roboto;
    font-weight: 400;
    word-wrap: break-word;
}

.landing-page-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 320px;
    max-height: 220px;
    overflow: auto;
    align-items: center;
}

.landing-page-container-header {
    color: #172026;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 600;
    letter-spacing: 0.08px;
    word-wrap: break-word;
    margin: auto;
}

#landing-page-modal-wrapper {
    height: 500px;
    width: 50%;
    max-width: 1000px;
    padding: 66px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#close-landing-page {
    margin-top: -40px;
}

.landing-page-container-header-wrapper {
    display: flex;
    flex-direction: column;
    width: 320px;
}

.landing-page-content{
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.landing-page-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#visit-support-page-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#last-line-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.d3-context-menu {
    scrollbar-width: none !important; /* Firefox */
}

.img-and-p-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.p-without-margin {
    margin: 0 !important;
}

.tutorial-button-container {
    display: flex;
    flex-direction: column;
    width: 225px;
    gap: 10px;
}

.prev-tutorial-btn {
    width: 100%;
    background-color: #999999;
    color: #FFFFFF;
    border-radius: 3px;
    border: none;
    padding: 3px;
}

.next-tutorial-btn {
    width: 100%;
    background-color: #506e80;
    color: #FFFFFF;
    border-radius: 3px;
    border: none;
    padding: 3px;
}