html, body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.login-logo {
    width: 300px;
    margin: 30px 0px 30px 0px;
}

input, select, textarea, .form-control {
    box-shadow: none;
    border-radius: 1px;
}

    .form-control:disabled {
        background-color: #2c447b;
        opacity: 1;
    }

.btn {
    border: 0px;
    font-weight: 400;
    text-shadow: none;
    font-family: sans-serif;
    padding: 7px 18px;
}

.btn-primary {
    background-color: #27457f;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #1f3765;
        color: #ffffff;
    }

.btn-secondary {
    background-color: #eaeaea;
    color: #333333;
}

    .btn-secondary:hover {
        background-color: #cccccc;
        color: #333333;
    }

.btn.disabled, .btn[disabled], .btn.disabled:hover, .btn[disabled]:hover {
    background-color: #eaeaea;
    color: #333333;
}

.login-error-msg {
    font-weight: bold;
    color: red;
    font-size: 14px;
}

.main-header {
    padding: 10px 50px 10px 50px;
    background-image: linear-gradient(270deg, rgb(52, 60, 76), rgb(36, 43, 54) 50%, rgb(29, 29, 29));
    font-family: Bahnschrift;
    font-size: 14px;
    font-weight: 400;
}

.builder-logo {
    height: 42px;
}

.builder-user {
    margin-left: auto;
    text-align: right;
    font-size: 18px;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.builder-user:hover {
    cursor: pointer
}

.secondary-header {
    padding: 5px 50px 5px 50px;
    background-color: #2e3542;
    font-family: Bahnschrift;
    font-size: 14px;
    font-weight: 400;
}

.builder-create {
    padding: 10px;
    background: transparent;
    color: #fff;
    border-radius: 3px;
    border: 2px solid white;
}

.main-container {
    display: flex;
    height: calc(100vh - 98px);
}

.main-table-container {
    width: 100%;
    margin: 50px 10% 250px 10%;
    overflow: auto;
}

.table-responsive {
    height: 100%;
}

tbody tr:hover {
    background-color: #eaeaea;
}

.dropdown-menu a:hover {
    cursor: pointer;
}

.dropdown-menu a:active {
    background-color: #eaeaea;
}

.dashboard-container {
    display: flex;
    width: 100%;
    overflow-y: auto;
    background-color: #f7f7f7;
    font-family: Bahnschrift;
}

.dashboard-icon-ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 120px;
    left: 30px;
    list-style: none;
}

.dashboard-wrapper {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-row {
    display: block;
}

.dashboard-item {
    height: 450px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}

.dashboard-item-header {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    border-bottom: 2px solid rgba(46, 53, 66, 0.1);
}

.dashboard-item-body {
    width: 100%;
    padding: 20px;
}

.dashboard-text {
    width: 200px;
    height: 95px;
    margin-right: 20px;
    font-size: 18px;
    word-break: break-word;
    text-align: center;
    border-left: 10px solid #27457f;
}

.dashboard-canvas {
    width: 800px
}

.main-builder-container {
    height: 100%;
    background-color: #363f4d;
}

.loader-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    z-index: 1;
}

.spinner-border {
    margin-right: auto;
    margin-left: auto;
}

.builder-container {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    font-family: Bahnschrift;
    font-size: 18px;
    font-weight: 200;
}

.builder-icon-ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 20px;
    left: 30px;
    list-style: none;
}

.builder-icon-ul > li {
    margin-bottom: 30px;
    text-align: center;
}

.builder-icon {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    line-height: 100%;
    font-weight: 100;
    background-color: #fff;
    border-radius: 25px;
    border: none;
    color: #333333;
    font-size: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

    .builder-icon:hover {
        opacity: 0.75;
        cursor: pointer;
    }

    .builder-icon:active {
        opacity: 1;
    }

.span-icon {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.span-play {
    font-size: 12px;
}

.span-home {
    font-size: 20px;
}

.builder-tab-container {
    display: none;
    cursor: auto;
    width: 400px;
    min-height: 100vh;
    position: absolute;
    padding: 0px;
    background-color: #fff;
    margin-top: 0px;
    top: 0px;
    right: 0px;
    z-index: 1;
    box-shadow: 0 0 10px 0 rgba(33,33,33,.2);
    -webkit-box-shadow: 0 0 10px 0 rgba(33,33,33,.2);
}

.tab-header {
    padding: 20px 40px 0px 40px;
    width: 100%;
    height: 90px;
    background-color: #435064;
    color: #c9dfe4;
}

.tab-name-input {
    width: 320px;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #242b36;
    color: #c9dfe4;
    outline: none;
}

.id-label {
    font-size: 14px;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}

.tab-body-container {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.tab-body {
    width: 360px;
    height: 100%;
    margin: 20px;
}

.tab-d-inline-flex {
    display: inline-flex;
}

.tab-label {
    width: 100px;
    padding-bottom: 10px;
    vertical-align: middle;
    font-size: 18px;
}

.tab-textarea {
    height: 200px !important;
    resize: none;
}

.textarea-url {
    height: 60px !important;
    resize: none;
}

.tab-parameters-right, .tab-variables-right {
    text-align: right;
}

.tab-parameters-right {
    width: 246px;
}

.tab-variables-right {
    width: 257px;
}

.input-parameter {
    width: 100px;
}

.span-add {
    color: rgba(39, 69, 127, 0.75);
}

    .span-add:hover {
        cursor: pointer;
        color: rgba(39, 69, 127, 1)
    }

.d-input-parameter:hover > .span-delete {
    color: #e85e6c;
}

.span-delete {
    margin-top: 10px;
    margin-left: 3px;
    color: transparent;
    opacity: 0.75;
}

    .span-delete:hover {
        cursor: pointer;
        color: #e85e6c;
        opacity: 1;
    }

.tab-textarea, .tab-select, .tab-input, .tab-list-btn {
    width: 244px;
}

.tab-d-btn {
    margin-left: 116px;
    padding-bottom: 10px;
}

.tab-footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    margin: 20px;
    padding: 20px 0px 0px 20px;
}

.modal-header, .modal-body, .modal-footer {
    border: 0;
    border-radius: 0;
}

#modal_error .modal-header, #modal_delete .modal-header {
    background: #e85e6c;
    color: white;
}

#modal_change .modal-header, #modal_create .modal-header, #modal_implement .modal-header, #modal_clone .modal-header, #modal_edit .modal-header, #modal_save .modal-header, #modal_script .modal-header {
    background-color: #435064;
    color: white;
}

#modal_implement .modal-dialog {
    max-width: 900px !important;
}

.modal-readonly {
    height: 5.5em !important;
    overflow: hidden;
    resize: none;
}

.builder-cm-container {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    width: 180px;
    font-family: Bahnschrift;
    font-size: 16px;
    font-weight: 200;
}

.cm__item {
    display: none;
    cursor: pointer;
    padding: 4px 10px 4px 24px;
}

    .cm__item:hover {
        background-color: #e5e5e5;
    }

.cm__divider {
    display: none;
    border-bottom: 1px solid #eee;
    margin: 10px 0;
}
