﻿
body {
    margin: 3em;
}

/* Custom nav-tabs */
.tab-content {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    display: block;
    border-radius: 0 0 0.25em 0.25em;
    padding: 10px;
    /*margin: 10px 0px;*/
}

    .tab-content .tab-pane {
        text-align: left;
        /*padding: 0px 5px;*/
        margin: 0px 0px 20px 0px;
    }

        .tab-content .tab-pane h3 {
            margin: 0;
        }

.cd-breadcrumb {
    padding: 6px 7px;
    margin: 0;
    background-color: transparent;
    border-radius: 0.25em 0.25em 0 0;
}

    .cd-breadcrumb.nav-tabs {
        border-left: 1px solid #ddd;
        border-top: 1px solid #ddd;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }

        .cd-breadcrumb.nav-tabs > li.active > a, .cd-breadcrumb.nav-tabs > li.active > a:hover, .cd-breadcrumb.nav-tabs > li.active > a:focus {
            color: #ffffff;
            background-color: #144677;
            border: 0px solid #144677;
            cursor: default;
        }

        .cd-breadcrumb.nav-tabs > li > a {
            margin-right: inherit;
            line-height: inherit;
            height: 48px;
            border: inherit;
            border-radius: inherit;
            border-color: #edeff0;
        }

    .cd-breadcrumb li {
        display: inline-block;
        float: left;
        margin: 0.5em 0;
    }

        .cd-breadcrumb li::after {
            /* this is the separator between items */
            display: inline-block;
            content: "»";
            margin: 0 0.6em;
            color: tint(#144677, 50%);
        }

        .cd-breadcrumb li:last-of-type::after {
            /* hide separator after the last item */
            display: none;
        }

        .cd-breadcrumb li > * {
            /* single step */
            display: inline-block;
            font-size: 1.4rem;
            color: #144677;
        }

        .cd-breadcrumb li.current > * {
            /* selected step */
            color: #144677;
        }

    .cd-breadcrumb a:hover {
        /* steps already visited */
        color: #144677;
    }

    .cd-breadcrumb.custom-separator li::after {
        /* replace the default arrow separator with a custom icon */
        content: "";
        height: 16px;
        width: 16px;
        vertical-align: middle;
    }

    .cd-breadcrumb li {
        margin: 1.2em 0;
    }

        .cd-breadcrumb li::after {
            margin: 0 1em;
        }

        .cd-breadcrumb li > * {
            font-size: 1.6rem;
        }

    .cd-breadcrumb.triangle li {
        position: relative;
        padding: 0;
        margin: 0 4px 0 0;
    }

        .cd-breadcrumb.triangle li:last-of-type {
            margin-right: 0;
        }

        .cd-breadcrumb.triangle li .octicon {
            margin-right: 10px;
        }

        .cd-breadcrumb.triangle li > * {
            position: relative;
            padding: 0.8em 0.8em 0.7em 2.5em;
            color: #333;
            background-color: #edeff0;
            /* the border color is used to style its ::after pseudo-element */
            border-color: #edeff0;
        }

        .cd-breadcrumb.triangle li.active > * {
            /* selected step */
            color: #ffffff;
            background-color: #144677;
            border-color: #144677;
        }

        .cd-breadcrumb.triangle li:first-of-type > * {
            padding-left: 1.6em;
            border-radius: 4px 0 0 4px;
        }

        .cd-breadcrumb.triangle li:last-of-type > * {
            padding-right: 1.6em;
            border-radius: 0 0.25em 0.25em 0;
        }

    .cd-breadcrumb.triangle a:hover {
        /* steps already visited */
        /* color: #ffffff;
        background-color: #144677;
        border-color: #144677;
        text-decoration: none;*/
    }

    .cd-breadcrumb.triangle li::after, .cd-breadcrumb.triangle li > *::after {
        /*
      li > *::after is the colored triangle after each item
      li::after is the white separator between two items
  */
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        content: "";
        height: 0;
        width: 0;
        /* 48px is the height of the <a> element */
        border: 24px solid transparent;
        border-right-width: 0;
        border-left-width: 20px;
    }

    .cd-breadcrumb.triangle li::after {
        /* this is the white separator between two items */
        z-index: 1;
        -webkit-transform: translate(4px, 0);
        -ms-transform: translate(4px, 0);
        -o-transform: translate(4px, 0);
        transform: translate(4px, 0);
        border-left-color: #ffffff;
        /* reset style */
        margin: 0;
    }

    .cd-breadcrumb.triangle li > *::after {
        /* this is the colored triangle after each element */
        z-index: 2;
        border-left-color: inherit;
    }

    .cd-breadcrumb.triangle li:last-of-type::after, .cd-breadcrumb.triangle li:last-of-type > *::after {
        /* hide the triangle after the last step */
        display: none;
    }

/*.form-row {
    margin-bottom: 80px !important;
}*/

.edu-main-button {
    /* float: right !important;*/
    text-align: right;
    /*padding-top:10px;*/
}

.edu-menu-web {
    display: block;
}

.edu-menu-mob {
    display: none;
}

/* typical phone screen resolution */
@media only screen and (max-width : 667px) {
    /* .edu-menu-web {
        display: none;
    }*/

    /* .edu-menu-mob {
        display: block;
    }*/
}
/* landscape orientation */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : landscape) {
    /* .edu-menu-web {
        display: none;
    }

    .edu-menu-mob {
        display: block;
    }*/
}
/* portrait orientation */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : portrait) {
    /*.edu-menu-web {
        display: none;
    }

    .edu-menu-mob {
        display: block;
    }*/
}


.edu-mandatory::after {
    content: ' *';
    color: red;
    font-weight: bold;
}

/* =================== LOADER ================ */

.ajax-loader-div1 {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999;
    background-color: #000000;
    opacity: 0.7;
}

.ajax-loader-div2 {
    position: fixed;
    top: 50%;
    left: 50%;
    text-align: center;
}

    .ajax-loader-div2 .img1 {
        height: 150px;
        width: 150px;
        margin-top: 100px;
    }

    .ajax-loader-div2 .img2 {
        height: 100px;
        width: 100px;
    }

/* update panel */

.ajax-loader2-div1 {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999;
    background-color: #000000;
    opacity: 0.7;
}

.ajax-loader2-div2 {
    position: fixed;
    top: 10%;
    left: 50%;
    text-align: center;
}

    .ajax-loader2-div2 .img1 {
        height: 150px;
        width: 150px;
        margin-top: 100px;
    }

    .ajax-loader2-div2 .img2 {
        height: 100px;
        width: 100px;
    }


/*@media print {
    body * {
        visibility: hidden;
    }

    .print-container, .print-container * {
        visibility: visible;
    }

    .print-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        border: none;
        padding: 20px;
        box-sizing: border-box;
    }
}
*/

/* ===================== BROWSE IMAGE ========================== */

/*.upload-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
}

#fu_Photo {
    display: none;
}

.preview {
    margin-top: 20px;
}

    .preview img {
        max-width: 100%;
        max-height: 300px;
        border-radius: 10px;
        display: none;
    }*/
