﻿
.labelGroup {    
    font-weight: 500 !important;
}

.invisible, .Invisible {
    display: none !important;
}

/*modals*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.75);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    text-align: center;
}

.close {
    font-size: 35px;
    opacity: 1;
}

    .close:hover, .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.helpbtn {
    font-weight: bold !important;
    padding: 0 12px !important;
    background: rgba(255,177,177,0.55) !important;
    font-size: 12px !important;
}
/*modals*/
/*button*/
.btn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid #e74c3c;
    border-radius: 0.6em;
    color: #e74c3c;
    cursor: pointer;
    display: flex;
    align-self: center;    
    font-size:12px;
    line-height: 1;
    margin: 10px;
    padding: 12px 20px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.btn:hover, .btn:focus {
    color: #fff;
    outline: 0;
}

.first {
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

    .first:hover {
        box-shadow: 0 0 40px 40px #e74c3c inset;
    }

.second {
    border-radius: 3em;
    border-color: #1abc9c;
    color: #fff;
    background-image: linear-gradient(to right, rgba(26, 188, 156, 0.6), rgba(26, 188, 156, 0.6) 5%, #1abc9c 5%, #1abc9c 10%, rgba(26, 188, 156, 0.6) 10%, rgba(26, 188, 156, 0.6) 15%, #1abc9c 15%, #1abc9c 20%, rgba(26, 188, 156, 0.6) 20%, rgba(26, 188, 156, 0.6) 25%, #1abc9c 25%, #1abc9c 30%, rgba(26, 188, 156, 0.6) 30%, rgba(26, 188, 156, 0.6) 35%, #1abc9c 35%, #1abc9c 40%, rgba(26, 188, 156, 0.6) 40%, rgba(26, 188, 156, 0.6) 45%, #1abc9c 45%, #1abc9c 50%, rgba(26, 188, 156, 0.6) 50%, rgba(26, 188, 156, 0.6) 55%, #1abc9c 55%, #1abc9c 60%, rgba(26, 188, 156, 0.6) 60%, rgba(26, 188, 156, 0.6) 65%, #1abc9c 65%, #1abc9c 70%, rgba(26, 188, 156, 0.6) 70%, rgba(26, 188, 156, 0.6) 75%, #1abc9c 75%, #1abc9c 80%, rgba(26, 188, 156, 0.6) 80%, rgba(26, 188, 156, 0.6) 85%, #1abc9c 85%, #1abc9c 90%, rgba(26, 188, 156, 0.6) 90%, rgba(26, 188, 156, 0.6) 95%, #1abc9c 95%, #1abc9c 100%);
    background-position: 0 0;
    background-size: 100%;
    transition: background 300ms ease-in-out;
}

    .second:hover {
        background-position: 100px;
    }

.third {
    border-color: #3498db;
    color: #fff;
    box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
    transition: all 150ms ease-in-out;
}

    .third:hover {
        box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
    }

.fourth {
    border-color: #f1c40f;
    color: #fff;
    background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
}

    .fourth:hover {
        background-position: 0;
    }

.fifth {
    border-color: #8e44ad;
    border-radius: 0;
    color: #8e44ad;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 150ms ease-in-out;
}

    .fifth:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 100%;
        background: #8e44ad;
        z-index: -1;
        transition: width 150ms ease-in-out;
    }

    .fifth:hover {
        color: #fff;
    }

        .fifth:hover:after {
            width: 110%;
        }

.sixth {
    border-radius: 3em;
    border-color: #2ecc71;
    color: #2ecc71;
    background-image: linear-gradient(to bottom, transparent 50%, #2ecc71 50%);
    background-position: 0% 0%;
    background-size: 210%;
    transition: background 150ms ease-in-out, color 150ms ease-in-out;
}

    .sixth:hover {
        color: #fff;
        background-position: 0 100%;
    }


/*<button class="btn first">Button 1</button>
<button class="btn second">Button 2</button>
<button class="btn third">Button 3</button>
<button class="btn fourth">Button 4</button>
<button class="btn fifth">Button 5</button>
<button class="btn sixth">Button 6</button>*/



/*datepicker*/

.calendar-custom th.datepicker-switch {
    font-weight: bold !important;
}

.datepicker table tr td {
    font-weight: bold;
}

    .datepicker table tr td.new, .datepicker table tr td.old {
        color: #a2988f !important;
        opacity: 1;
        font-weight: normal !important;
    }

        .datepicker table tr td.new:hover, .datepicker table tr td.old:hover {
            color: #fff !important;
            background-color: #a2988f !important;
            opacity: 1;
        }

    .datepicker table tr td.day:hover, .datepicker table tr td.focused {
        background: #36425b;
        color: #fff;
    }

    .datepicker table tr td.disabled.holiday {
        color: red;
        font-weight: normal !important;
    }

        .datepicker table tr td.disabled.holiday:hover {
            background-color: transparent;
        }

.calendar-btn span.plo2 {
    background: gray
}

.calendar-btn span.plo3 {
    background: red;
}

.datepicker table tr td.disabled {
    color: gray;
    font-weight: normal !important;
}

    .datepicker table tr td.disabled:hover {
        background-color: transparent;
    }

#slider {
    background: #363636;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
}

    #slider a {
        display: none;
        width: 100%;
    }

        #slider a.show {
            display: inline;
        }

.supertag ol {
    padding-left: 15px;
    text-align: left;
    font-weight: 300 !important;
}

/*datepicker*/

/* Default jquery-loading styles */
.loading-overlay {
    display: table;
    opacity: 0.9;
}

.loading-overlay-content {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 1.15em;
    font-weight: bold;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.loading-overlay.loading-theme-light {
    background-color: #fff;
    color: #000;
}

.loading-overlay.loading-theme-dark {
    background-color: #000;
    color: #fff;
}


/*Bread Crums*/

.steps {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
    margin: 0px;
    list-style: none;
    font-family: sans-serif;
}

    .steps li {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        padding: 0px 20px;
        position: relative;
    }

        .steps li div {
            position: relative;
            padding: 1px 0px;
            background: #cccccc;
            box-sizing: border-box;
            transform: scale(0.999999);
            transition: all 0.3s ease;
            cursor: pointer;
        }

            .steps li div span {
                display: block;
                transition: all 0.3s ease;
            }

                .steps li div span:nth-child(1) {
                    position: absolute;
                    left: 100%;
                    top: 0px;
                    border-top: 20px solid transparent;
                    border-bottom: 20px solid transparent;
                    border-left: 20px solid #cccccc;
                }

                .steps li div span:nth-child(2) {
                    position: absolute;
                    right: 100%;
                    top: 0px;
                    border-bottom: 20px solid transparent;
                    border-right: 20px solid #cccccc;
                }

                .steps li div span:nth-child(3) {
                    position: absolute;
                    right: 100%;
                    bottom: 0px;
                    border-top: 20px solid transparent;
                    border-right: 20px solid #cccccc;
                }

                .steps li div span:nth-child(4) {
                    position: absolute;
                    right: 10px;
                    top: 50%;
                    height: 12px;
                    width: 12px;
                    margin-top: -6px;
                    border-radius: 100%;
                    background: transparent;
                    z-index: 2;
                    border: 1px solid #cccccc;
                }

                .steps li div span:nth-child(5) {
                    position: absolute;
                    left: 100%;
                    top: 1px;
                    border-top: 19px solid transparent;
                    border-bottom: 19px solid transparent;
                    border-left: 19px solid white;
                }

                .steps li div span:nth-child(6) {
                    position: absolute;
                    right: 100%;
                    top: 1px;
                    border-bottom: 19px solid transparent;
                    border-right: 19px solid white;
                    margin-right: -1px;
                }

                .steps li div span:nth-child(7) {
                    position: absolute;
                    right: 100%;
                    bottom: 1px;
                    border-top: 19px solid transparent;
                    border-right: 19px solid white;
                    margin-right: -1px;
                }

                .steps li div span:nth-child(8) {
                    display: block;
                    padding: 0px 15px;
                    position: relative;
                    height: 38px;
                    line-height: 38px;
                    background: white;
                    color: black;
                }

        .steps li:hover div {
            background: #ddd;
        }

            .steps li:hover div span:nth-child(1) {
                border-left-color: #ddd;
            }

            .steps li:hover div span:nth-child(2), .steps li:hover div span:nth-child(3) {
                border-right-color: #ddd;
            }

            .steps li:hover div span:nth-child(4) {
                background: white;
                border-color: #ddd;
            }

            .steps li:hover div span:nth-child(5) {
                border-left-color: #ddd;
            }

            .steps li:hover div span:nth-child(6), .steps li:hover div span:nth-child(7) {
                border-right-color: #ddd;
            }

            .steps li:hover div span:nth-child(8) {
                background: #ddd;
                color: black;
            }

        .steps li.active div {
            background: #2fbe6e;
        }

            .steps li.active div span:nth-child(1) {
                border-left-color: #2fbe6e;
            }

            .steps li.active div span:nth-child(2), .steps li.active div span:nth-child(3) {
                border-right-color: #2fbe6e;
            }

            .steps li.active div span:nth-child(4) {
                background: white;
                border-color: #2fbe6e;
            }

            .steps li.active div span:nth-child(5) {
                border-left-color: #2fbe6e;
            }

            .steps li.active div span:nth-child(6), .steps li.active div span:nth-child(7) {
                border-right-color: #2fbe6e;
            }

            .steps li.active div span:nth-child(8) {
                background: #2fbe6e;
                color: white;
            }

        .steps li:first-child {
            padding-left: 0px;
        }

            .steps li:first-child div {
                padding-left: 1px;
            }

                .steps li:first-child div span:nth-child(2), .steps li:first-child div span:nth-child(3), .steps li:first-child div span:nth-child(6), .steps li:first-child div span:nth-child(7) {
                    display: none;
                }

        .steps li:last-child {
            padding-right: 0px;
        }

            .steps li:last-child div {
                padding-right: 1px;
            }

                .steps li:last-child div span:nth-child(1), .steps li:last-child div span:nth-child(5) {
                    display: none;
                }
