body, #interview-container {
    /*background-color: #e7e7e7;*/
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
}

video {
    pointer-events: none;
}

#interview-container .row {
    background-color: #fff;
    padding: 5px;
}

#interview-container .row:not(:first-of-type):not(:last-of-type) {
    padding-top: 0;
    padding-bottom: 0;
}

#interview-container .row:nth-of-type(2) {
    padding-top: 5px !important;
}

#interview-container .row > [class^=col-] {
    padding: 0;
}

#interview-container .video-container {
    position: relative;
    padding-top: 56.25%;
    border-bottom: 5px solid #218247;
    overflow: hidden;
}

#interview-container .interview-overlay {
    position: absolute;
    overflow: hidden;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 0;*/
    height: 100%;
    opacity: 0;
    background-color: #fff;
    pointer-events: none;
}

#interview-container .interview-overlay video {
    opacity: 0;
}

#interview-container .interview-overlay video.active {
    opacity: 1;
}


/*#interview-container .video{
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease-in-out;
  position: absolue;
  top:0;
}

#interview-container  video.active{
  opacity: 1;
  pointer-events: all;
}
*/

#interview-container .video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

#interview-container .interview-question-active {
    width: 100%;
    height: 100%;
    display: table;
}

#interview-container .interview-question-active > p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#interview-container .media-item {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;
    pointer-events: none;
}

#interview-container video, #interview-container img {
    width: 100%;
    transition: all .5s ease-in-out;
}

#interview-container .media-item.active {
    opacity: 1;
    pointer-events: all;
}

#interview-container .interview-question {
    cursor: pointer;
    float: left;
    padding: 10px 20px;
    background-color: #fff;
    color: #000000;
    outline: none;
    border: none;
    transition: all 0.5s ease-in-out;
    width: 100%;
    display: block;
    position: relative;
    text-align: left;
    padding-left: 10%;
}


#interview-container .col-md-6:nth-child(odd) {
    padding-right: 0;
}

#interview-container .col-md-6:nth-child(even) {
    padding-left: 0;
}

#interview-container .col-md-6:nth-child(odd) .interview-question:before, #interview-container .col-md-6:nth-child(even) .interview-question:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #218247;
	color: #fff;
    right: 0;
    top: 0;
}

#interview-container .col-md-6:nth-child(even) .interview-question:before {
    left: -1px;
}

#interview-container .row:not(:nth-child(2)) .interview-question:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #218247;
	color: #fff;
    left: 0;
    top: 0;
}

@media screen and (max-width: 991px) {
  .col-md-6:not(:last-of-type) {
    border-bottom: 1px solid #218247 !important;
  }
}

#interview-container .interview-question.reset-button {
    background-color: #218247;
    color: #fff;
    padding-left: 0;
    text-align: center;
    margin-top: 15px;
}

#interview-container .interview-question.play-all {
    background-color: #218247;
    color: #fff;
    padding-left: 0;
    text-align: center;
    margin-top: 50px;
}

#interview-container .interview-question:disabled {
    opacity: 0.5;
    cursor: auto;
}

#interview-container .interview-question:not(.reset-button):not(.play-all):hover {
    /*background-color: rgba(59,89,140,0.5);*/
    background-color: #f3f3f3;
}

#interview-container .interview-question:disabled:hover {
    background-color: #fff;
    color: #218247;
}

#interview-container .interview-question:not(.reset-button):not(.play-all).active {
    background-color: #218247;
    color: #fff;
}


#interview-container .interview-question .overlay-text {
    display: none;
}


#interview-container .interview-question .text {
    position: relative;
}


#interview-container .interview-question.active .text > span {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    transform: translate3d(-100%, -50%, 0);
    left: -20px;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    background-image: url(../library/icon.png);
    display: block;
}

#interview-container .interview-question.active.is-playing .text > span {
    background-image: url(../library/icon_pause.png);
}

#interview-container .question-container {
    margin-top: 20px;
}

@media screen and (max-width: 991px) {
    #interview-container .col-md-6 .interview-question:before {
        display: none;
    }

    #interview-container .col-md-6 .interview-question:after {
        display: none;
    }


    #interview-container .row-eq-height .col-md-6:not(:nth-last-child(2)) .interview-question {
        border-bottom: solid 1px #218247;
    }

    /*  #interview-container .row-eq-height .col-md-6:not(:nth-last-child(2)) .interview-question{
       border:none;
      }*/
}

#interview-container > .container {
	margin: 0;
	/*padding: 0;*/
}