/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #1797be33;
    margin-bottom: 3px;
    color: #1797be;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 16px;
    vertical-align: middle;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
    background-color: #1797be22;
}

.panel {
    /*min-width: 100%;*/
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    /*padding: 5px;*/
    /*max-height: 0;*/
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    justify-content: center;
    font-size: .75em;
    /*margin-left: 500px;*/
    /*font-weight: lighter;*/
    /*color: #1797be;*/
    /*background-color: white;*/
    display: inline-block;
    transition: all 0.5s;
    /*padding: 5px 5px;*/
    /*border-radius: 100px;*/
    /*border: 1px solid #1797be;*/
}

.inputfile:focus + label,
.inputfile + label:hover {
    /*color: white;*/
    background-color: #eeeeee;
    /*border: 1px solid white;*/
}

.inputfile:focus + label {
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label {
    cursor: pointer; /* "hand" cursor */
}

.content-heading {
    justify-content: center;
}

.remove-row {
    background: none;
    border: none;
    margin-left: 0.35em;
    transition: color 0.2s;
    font-size: 18px;
}

.remove-row:hover {
    color: #1797be;
    cursor: pointer;
}

.row-wrapper {
    margin-top: 10px;
}

.new-instr {
    margin-right: 20px;
}

.new-instr, .new-data {
    padding-left: 0.35em;
    padding-right: 0.35em;
    width: 30%;
}

.add-step, .submit-button {
    margin-top: 10px;
    border-radius: 100px;
    color: #1797be;
    background-color: white;
    border: 1px solid #1797be;
    transition: all 0.2s;
    font-weight: lighter;
}

.add-step:hover, .submit-button:hover {
    color: #1797be88;
    border: 1px solid #1797be88;
    cursor: pointer;
}

.new-textfield {
    border: 1px solid black;
}

.big-spinner {
    text-align: center;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    color: #1797be;
}

.loop {
    position: relative;
    top: 0;
    left: 0;
}

.lightning {
    position: relative;
    top: 0;
    left: 0;
}

#script-div {
    font-family: "Courier New", Courier, monospace;
    white-space: pre-line;
}

#response {
    font-family: Verdana, Geneva, sans-serif;
}