
:root {
    /* Primary */
    --bg-AAA-primary-color: #367e3d;
    --bg-AAA-secondary-color: #93ae3c;
    --bg-AAA-tertiary-color: #18351c;
}

div.pipeline{
    color: white;
    margin-bottom: 25px;
    padding: 15px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    background: #fcfff4;
    background: -moz-linear-gradient(45deg, #fcfff4 0%, #f7f4e8 40%, #eae9e3 100%);
    background: -webkit-linear-gradient(45deg, #fcfff4 0%, #f7f4e8 40%, #eae9e3 100%);
    background: linear-gradient(45deg, #fcfff4 0%, #f7f4e8 40%, #eae9e3 100%);
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

div.pipeline hr{
    color: #3e457c;
    opacity: 1;
}

div.description{
    margin-top: 10px;
}


#pipelineImg{
    max-width: 100%;
    border-radius: 0.75rem;
}

#pipelineImg:hover{
    transform: translate(-1px, -1px);
    transition: 0.2s;

}

div.pipeline p, div.pipeline ul{
    font-family: 'Gotham-Book', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: black;
}

div.pipeline h2{
    line-height: 28px;
    font-size: 30px;
    padding-bottom: 10px;
    color: #343d83;
    /* text-shadow: 1px 2px 2px rgba(0,0,0,0.2); */
    margin-top: 0.5rem;
}

div.pipeline h3, div.pipeline h4{
    color: #343d83;
    /* text-shadow: 1px 2px 2px rgba(0,0,0,0.2); */
    font-family: 'Gotham-Black', sans-serif;
}

div.pipeline h5{
    color: black;
}

div.pipeline img {
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.5)
}

#page {
    background: transparent;
}

#main-wrapper {
    position: relative;
    background: transparent;
}

#main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(85, 178, 167, 1) 0%, rgba(76, 83, 134, 1) 64%);
    height: 100%;
    width: 100%;
    z-index: -1;
}

div.pipelineImgBackdrop{
    background-color: white;
    padding: 8px;
    border-radius: 1rem;
}

.pipeline .btn-success{
    background: linear-gradient(135deg, rgba(85, 178, 167, 1) 15% , #219d5b 69%, rgba(76, 83, 134, 1) 109%);
    color: white;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.8);
    text-decoration: none !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
    margin: 0.5rem 0;
}

.pipeline .btn-success:hover{
    text-decoration: none;
    transform: translate(-1px, -2px);
    transition: 0.2s;
}

.pipeline.btn.disabled, .pipeline.btn.disabled:hover{
    transform: unset;
    transition: unset;
    opacity: 0.8;
}

.pipeline>.row{
    margin-top: 1rem;
}

.pipelineCPE{
    padding: 1rem;
    border-radius: 0.4rem;
    margin: 0 0 1rem 1rem;
    background-color: #ffffff;
    box-shadow: -1px -1px 5px rgba(0,0,0,0.2), 1px 1px 5px rgba(0,0,0,0.2);
}

div.speaker{
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 1rem;
    margin: 1rem 0;
    border-radius: 0.4rem;
    background-color: white;
    box-shadow: -1px -1px 5px rgba(0,0,0,0.2), 1px 1px 5px rgba(0,0,0,0.2);
    align-items: end;
    position: relative;
    flex-wrap: wrap;
}

div.speaker.moderator::before{
    content: 'Moderator';
    top: 0.5rem;
    left: 1rem;
    position: absolute;
    color: #737373;
}

div.speaker:not(.moderator)::before {
    content: 'Presenter';
    top: 0.5rem;
    left: 1rem;
    position: absolute;
    color: #737373;
}

.speaker img{
    margin: 0.5rem;
    width: 120px;
    height: 133px;
    object-fit: cover;
    object-position: center center;
}

.speaker .speakerText{
    margin-top: 2rem;
}

div#videoWrapper {
    padding: 1rem;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.8), inset -1px -1px 5px rgba(0,0,0,0.3);
    background: var(--bg-AAA-primary-color);
    background: -moz-linear-gradient(-45deg, var(--bg-AAA-primary-color) 0%, var(--bg-AAA-secondary-color) 100%);
    background: -webkit-linear-gradient(-45deg, var(--bg-AAA-primary-color) 0%, var(--bg-AAA-secondary-color) 100%);
    background: linear-gradient(135deg, var(--bg-AAA-primary-color) 0%, var(--bg-AAA-secondary-color) 100%);
    margin-bottom: 1rem;
}

div#videoWrapper>video-js, div#videoWrapper>div:first-child{
    border: 1px solid black;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}


@media only screen and (max-width: 600px){
    .container{
        max-width: 100%;
        padding: 0.25rem
    }

    div.pipeline{
        padding: 0.5rem;
    }

    div.pipelineCPE{
        margin: 0.5rem;
    }
}