/*=== PROSPECT STATUS INDICATOR ===*/
.ss-prospect-status-indicator {
    border-radius: 8px;
    width: 100%;
    background-color: #D0D7DD;
    height: 14px;
    position: relative;
    display: inline-block;
}

.ss-prospect-status-indicator:after
{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    content: '';
    border-radius: 8px 0px 0px 8px;
    border: 1px solid transparent;
}

.ss-prospect-status-indicator[data-status="Open"]:after { width: 15%; background-color: #F4F7F9; }
.ss-prospect-status-indicator[data-status="Pre-Production"]:after { width: 15%; background-color: #F6A623; }
.ss-prospect-status-indicator[data-status="Shoot"]:after { width: 30%; background-color: #F6A623; }
.ss-prospect-status-indicator[data-status="Post-Production"]:after { width: 40%; background-color: #F6A623; }
.ss-prospect-status-indicator[data-status="Client Review"]:after { width: 50%; background-color: #83D791; }
.ss-prospect-status-indicator[data-status="Validation"]:after { width: 70%; background-color: #83D791; }
.ss-prospect-status-indicator[data-status="Changes Requested"]:after { width: 90%; background-color: #83D791; }
.ss-prospect-status-indicator[data-status="Approved"]:after { width: 100%; background-color: #83D791; border-radius: 8px; }
.ss-prospect-status-indicator[data-status="Cancelled"]:after { width: 100%; background-color: #FFF0ED; border: 1px solid #FF6D4A; border-radius: 8px; }
.ss-prospect-status-indicator[data-status="Deleted"]:after { width: 100%; background-color: #FFF; border: 1px solid #D0D7DD; border-radius: 8px; }


/*=== RESPONSIVE VIDEO ===*/

.ss-responsive-video {
    position: relative;
    padding-bottom: 24%; /* Default to 16:9 */
}

.ss-responsive-video.ss-responsive-video--4x3 {
    padding-bottom: 31.25%;
}

.ss-responsive-video .video {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
}

/*=== LOADER ===*/

/* Chrome bug showing border: https://stackoverflow.com/questions/6013071/removing-the-image-border-in-chrome-ie9 */
.ss-loader {
    display: inline-block;
    padding: 40px;
    width: 0px;
    height: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ss-loader--medium {
    padding: 32px;
}

.ss-loader--small {
    padding: 24px;
}

.ss-loader--x-small {
    padding: 18px;
}

.ss-loader--xx-small {
    padding: 12px;
}

.ss-loader--text-small {
    padding: 8px;
}


@-webkit-keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.ss-shimmer {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;

    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: shimmer;
    -webkit-animation-timing-function: linear;
}

.ss-shimmer--box {
    height: 50px;
    width: 50px;
}

.ss-shimmer--circle {
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

.ss-shimmer--line {
    height: 10px;
    margin: 5px 0px;
    width: 100%;
}