option:checked .current-choice,
.custom-selectopt:checked + .custom-option .current-choice {
    display:none;
}

option .current-choice,
.custom-option .current-choice {
    padding-left:1em;
    font-size:0.8em;
    color: #b5b4fc;
}

.text-input-container {
    display:flex;
}

.text-input,
.number-input  {
    padding:.25em 0 .25em 1em;
    background-color: #1f1f20;
    width:100%;
    color: #f6f6f6;
    outline: transparent;
    box-shadow: none;
    border: 1px solid #28282c;
}

span.input-ext {
    margin-left:1em;
}

.activate-input-container .choice {
    opacity: 0.2;
    padding: 0 .5em 0 .5em;
    margin:.25em 0 .25em 0;
    cursor: pointer;
}

.activate-input-container .choice.selected {
    opacity: 1;
}

dl.input-row dt, dl.input-row dd {
    margin:.25em 0 .25em 0;
    padding:0;
}

.form-container {
    width:100%;
    height:100%;
}

.button.submit-form {
    color:#8f8ee7;
    cursor: pointer;
}

.button.submit-form:hover {
    color:#3d3be6;
}

.button.submit-form.disabled,
.button.reset-form.disabled {
    color:#3f3f42 !important;
    cursor: default;
}

.button.submit-form:disabled,
.button.reset-form:disabled {
    display:none;
}

.description-textarea {
    padding:.5em 0 0 1em;
    background-color: #1f1f20;
    color: #f6f6f6;
    width:100%;
    height:6em;
    resize: none;
    border: 1px solid #28282c;
    outline: transparent;
}

.container-fluid.create-item-form {
    padding: 1em 2em 1em 2em;
}

.create-item-form .activate-input-container,
.create-item-form .activate-input-header {
    display:none;
}

.select-input-container {
    display: flex;
}

.select-input-container select.default-select-input {
    padding:.25em 0 .25em .75em;
    background-color: #1f1f20;
    color:#f6f6f6;
    border: 1px solid #28282c !important;
    width: 100%;
    outline:none;
}

.select-input-container select.default-select-input .select-option {
    border: 1px solid #28282c !important;
}

.placeholder-option {
    color: #797676;
}

.select-option.current-option {
    font-weight: bold;
    color: #b5b4fc;
}

.row.submit-form-row {
    padding-top: 2em;
}

.custom-select-input {
    padding:0;
    margin:0;
    display:flex;
    flex-direction: column;
    width:100%;
    cursor: pointer;
    position: absolute;
    z-index:98;
}

.custom-select-input.scroll-reset {
    display: flex;
    z-index: 98;
    overflow-y: auto;
}

.custom-option {
    padding:0 0 0 1em;
    margin:0;
    min-height:2em;
    max-height: 2em;
    display:flex;
    align-items:center;
    background:#1f1f20;
    position:absolute;
    top:0;
    width: 100%;
    pointer-events:none;
    z-index:97;
    order:2;
    transition:background .4s ease-in-out;
    overflow:hidden;
    margin-bottom: 0;
    cursor: pointer;
    border: 1px solid #28282c;
}

.custom-option:hover {
    background:#2e2e30;
}

.custom-select-input:focus {
    display:flex;
    max-height:12em;
    overflow-y: auto;
    z-index:99;
    border: 1px solid #3a3a41;
}

.custom-select-input:focus .custom-option {
    position:relative;
    pointer-events:all;
}

.selectopt {
    opacity:0;
    position:absolute;
    left:-99999px;
}

.selectopt:checked + .custom-option {
    order: 1;
    background:#1f1f20;
    border-top:none;
    position:relative;
    z-index:98;
}

.selectopt:checked + .custom-option:after {
    content:'';
    width: 0; 
    height: 0; 
    background-color: #1f1f20;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    position:absolute;
    right:10px;
    top:calc(50% - 2.5px);
    pointer-events:none;
    z-index:3;
}

.selectopt:checked + .custom-option:before {
    position:absolute;
    right:0;
    height: 40px;
    width: 40px;
    content: '';
    background:#1f1f20;
}

.custom-select-input-container {
    position:relative;
    height:2em;
}

.custom-select-input .placeholder-option.hidden {
    display:none;
}

.custom-select-input .custom-selectopt:checked + .custom-option span.currect-choice {
    display:none;
}

.custom-select-input .custom-selectopt + .custom-option  span.currect-choice {
    margin-left:1em;
}

form .response-placeholder.spinner:before {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: #3d3be6;
  display: flex;
  position: relative;
  top: 60%;
  left: 80%;
}

form .response-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
}

form .response-placeholder .response-icon {
  display: flex;
  position: relative;
  left: 40%;
  top: 30%;
}

div.row.input-row {
    flex:1;
}

.custom-radio-button {
    display: none;
}

.custom-selectopt[disabled],
.custom-selectopt[disabled] + .custom-option,
.custom-radio-button[disabled],
.custom-radio-button[disabled] + .custom-radio-label {
    display: none;
}

.custom-radio-button + .custom-radio-label {
    display: flex;
    margin: 0 .5em 0 0;
    padding: .5em;
    background-color: #1f1f20;
    border: 1px solid #2c2c28;
    border-radius: 2px;
    cursor:pointer;
    font-size: 14px;
}

.custom-radio-button + .custom-radio-label img {
    max-width:4em;
    pointer-events: none;
}

.custom-radio-select {
    display: flex;
    justify-content: flex-start;
}

.custom-radio-button + .custom-radio-label:hover {
    background-color: #252525;
}

.custom-radio-button:checked + .custom-radio-label {
    border-bottom: 2px solid #6765db !important;
    margin-bottom: -1px;
}

.custom-radio-button[hidden],
.custom-radio-button[hidden] + .custom-radio-label {
    display: none;
}

.inputrow.hiddenInputContainer[hidden] {
    display: none;
}