﻿
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    height: 15px;
    width: 15px;
    opacity: 0.5;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.breadcrumb {
    padding: 0;
    margin-top: 0px !important;
    background: #D4D4D4;
    list-style: none;
    overflow: hidden;
    float: right;
    direction: rtl;
}

.breadcrumb > li + li:before {
  padding: 0;
}

.breadcrumb li {
   float: right;
}

    .breadcrumb li.active a {
        background: brown; /* fallback color */
        background: #f60;
    }

    .breadcrumb li.completed a {
        background: grey; /* fallback color */
        background: hsla(180, 8%, 69%, 1);
    }

    .breadcrumb li.active a:after {
        border-right: 30px solid #f60;
    }

    .breadcrumb li.completed a:after {
        border-right: 30px solid hsla(180, 8%, 69%, 1);
    }

.breadcrumb li a {
    color: white;
    text-decoration: none;
    padding: 10px 45px 10px 15px;
    position: relative;
    display: block;
    float: right;
}

.breadcrumb li a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-right: 30px solid hsla(0, 0%, 83%, 1);
    position: absolute;
    top: 50%;
    margin-top: -50px;
    right: 100%;
    z-index: 2;
}

.breadcrumb li a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
    border-bottom: 50px solid transparent;
    border-right: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-right: 1px;
    right: 100%;
    z-index: 1;
}

.breadcrumb li:first-child a {
   padding-right: 15px;
}

    .breadcrumb li a:hover {
        background: #687980;
        color: white !important;
    }

        .breadcrumb li a:hover:after {
            border-right-color: #687980 !important;
            color: white !important;
        }
