
.delphi_html {

}

.delphi-method-item {
    background: aliceblue;
    padding: 10px;
    margin-bottom: 10px;
}

.delphi-method-item-comment TEXTAREA {
    width: 100%;
    height: 70px;
}

.delphi-method-item:not(.selected) > DIV:not(.delphi-method-item-title) {
    display: none;
}

.delphi-method-item:not(.selected) .delphi-method-item-title {
    cursor: pointer;
}

.delphi-method-item.selected DIV {
    display: block !important;
}

.delphi-method-item:not(.valued) .delphi-method-item-title {
    font-weight: bold;
}

.delphi-method-item-inputs {
    text-align: center;
}

.selected {
    background: aquamarine;
}

/*
.uacf7-step {
    display: flex;
    flex-wrap: wrap;
}

.uacf7-step > .delphi-method-item {

    width: 50%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ccc;
}
*/

.wpcf7-form-control-wrap {
    display: block;
}


.delphi-method-item-summary {
    float: right;
}

.delphi-method-item.valued .delphi-method-item-summary:before {
    content: 'You have selected:';
    margin-right: 10px;
}

.delphi-method-item:before {
    content: "▶";
    font-size: 80%;
    float: left;
}

.delphi-method-item.selected:before {
    content: "▼";
    font-size: 100%;
    float: left;
}

#quick_login_form {
    margin: 10px auto 50px auto;
    text-align: center;
}

.wpcf7-form.init {
    /*display: none;*/
}

@keyframes yellowFade {
    0% {
        background-color: initial;
    }
    30% {
        background-color: initial;
    }
    50% {
        background-color: #e84a2f;
    }
    100% {
        background-color: initial;
    }
}

.yellow-background {
    animation: yellowFade 1s ease-out;
}

.home #arcontactus {
    display: none !important;
}

.delphi_post_content, .TESTING, .FILL, .expert_email, .delphi_move_to_url, .delphi-method-item-extras, .delphi-method-item-comment {}

BUTTON.spinner {
    position: relative;
}

BUTTON.spinner.spinning:after {
    content: "?";
    position: absolute;
    /*top: 50%;*/
    right: -30px; /* Adjust as needed */
    /*transform: translateY(-50%);*/
    width: 20px; /* Adjust as needed */
    height: 20px; /* Adjust as needed */
    border: 3px solid rgba(0, 0, 0, 0.1); /* Adjust as needed */
    border-top-color: #333; /* Adjust as needed */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


.delphi-content {
    display: none;
}

.orbit-spinner, .orbit-spinner * {
    box-sizing: border-box;
}

.orbit-spinner {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    perspective: 800px;
    margin: auto;
}

.orbit-spinner .orbit {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.orbit-spinner .orbit:nth-child(1) {
    left: 0%;
    top: 0%;
    animation: orbit-spinner-orbit-one-animation 1200ms linear infinite;
    border-bottom: 3px solid var(--primarybtnbg);
}

.orbit-spinner .orbit:nth-child(2) {
    right: 0%;
    top: 0%;
    animation: orbit-spinner-orbit-two-animation 1200ms linear infinite;
    border-right: 3px solid var(--primarybtnbg);
}

.orbit-spinner .orbit:nth-child(3) {
    right: 0%;
    bottom: 0%;
    animation: orbit-spinner-orbit-three-animation 1200ms linear infinite;
    border-top: 3px solid var(--primarybtnbg);
}

@keyframes orbit-spinner-orbit-one-animation {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes orbit-spinner-orbit-two-animation {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes orbit-spinner-orbit-three-animation {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}


.delphi_testing {
    position: fixed;
    width: 100%;
    height: 90px;
    background: #e84a2f;
    margin: auto;
    top: 30px;
    left: 0;
    font-weight: bolder;
    color: white;
    text-align: center;
    z-index: 100001;
}

#bottom_btns {
    text-align: center;
}


.delphi-method-item-inputs .wpcf7-list-item:first-of-type INPUT[type=radio]:before {
    content: 'Least pertinent';
    margin-right: 30px;
    white-space: nowrap;
    float: right;
    margin-top: -4px;
    color: #443736;
}

.delphi-method-item-inputs .wpcf7-list-item:last-of-type INPUT[type=radio]:after {
    content: 'Most pertinent';
    margin-left: 35px;
    white-space: nowrap;
    float: left;
    margin-top: -4px;
    color: #443736;
}