/*
    slideText CSS styles
*/

.slidetext {
    cursor: pointer;
    margin-bottom: 5px;
    color: #00801B;
    display: inline-block;
}

.slidetext .question {
    display: inline-block;
    position: relative;
}
.slidetext .question h4 {
    color: #00801B;
}

.slidetext .question .toggle-arrow {
    position: absolute;
    top: calc(50% - 5px);
    right: -20px;
    height: 0;
    width: 0;
    border-left: 12px solid #E9811A;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transition: transform 0.5s;
}

.slidetext .question .toggle-arrow.opened {
    border-left-color: #00801B;
    color: #00801B;
    transform: rotate(90deg);
    transition: transform 0.5s;
    -webkit-animation: .toggle-arrow 0.8s 1; /* Chrome, Safari, Opera */
    animation: .toggle-arrow 0.8s 1; /* Standard syntax */
}

* Chrome, Safari, Opera */
@-webkit-keyframes .toggle-arrow {
    from {border-left-color: #E9811A;color: #E9811A;}
    to {border-left-color: #00801B; color: #00801B;}
}
/* Standard syntax */
@keyframes .toggle-arrow {
    from {border-left-color: #E9811A;color: #E9811A;}
    to {border-left-color: #00801B; color: #00801B;}
}

.slidetext .answere {
    background : url(logo.png) left top no-repeat;
    background-position: 5px 10px;
    padding    : 5px 5px 5px 30px;
    display: none;
    color: #575757;
    border-left: 1px solid #E9811A;
}

/* NOTICE message */
.slidetext-notice {
    display: table;
    margin: 2px 0;
    border: 1px solid #777;
    background-color: #eee;
}
.slidetext-notice div {
    display: table-cell;
    padding: 2px 6px;
    color: white;
    background-color: #777;
    height: inherit;
}
.slidetext-notice span {
    display: table-cell;
    padding: 2px 4px;
    color: #777;
}

/* SUCCESS message */
.slidetext-success {
    display: table;
    margin: 2px 0;
    border: 1px solid #2a0;
    background-color: #efe;
}
.slidetext-success div {
    display: table-cell;
    padding: 2px 6px;
    color: white;
    background-color: #2a0;
    height: inherit;
}
.slidetext-success span {
    display: table-cell;
    padding: 2px 4px;
    color: #2a0;
}

/* ERROR message */
.slidetext-error {
    display: table;
    margin: 2px 0;
    border: 1px solid #f33;
    background-color: #fee;
}
.slidetext-error div {
    display: table-cell;
    padding: 2px 6px;
    color: white;
    background-color: #f33;
    height: inherit;
}
.slidetext-error span {
    display: table-cell;
    padding: 2px 4px;
    color: #f33;
}