﻿/*Main wrapper of pills and arrows*/
.pills-wrapper {
    /*position: fixed;
    top: 70px;
    width: 100%;
    z-index: 8;
    background-color: #fcfcfc;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.13);
    height: 40px;*/
    position: fixed;
    top: 58px;
    width: 100%;
    z-index: 8;
    background-color: #fcfcfc;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.20);
    height: 35px;
}

    .pills-wrapper * {
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Chrome/Safari/Opera */
        -khtml-user-select: none; /* Konqueror */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none;
    }

    /*Effect of fading*/
    .pills-wrapper > .fading-left {
        position: absolute;
        height: 100%;
        width: 40px;
        left: 0px;
        top: 0px;
        background: linear-gradient(to left, transparent, #FCFCFC, #FCFCFC, #FCFCFC);
        z-index: 8;
    }

    .pills-wrapper > .fading-right {
        position: absolute;
        height: 100%;
        width: 40px;
        right: 0px;
        top: 0px;
        background: linear-gradient(to right, transparent, #FCFCFC, #FCFCFC, #FCFCFC);
        z-index: 8;
    }

    /*Arrow for left and right navigation*/
    .pills-wrapper > #pills-goleft,
    .pills-wrapper > #pills-goright {
        position: absolute;
        top: 8px;
        z-index: 8;
        font-size: 25px;
        color: black;
        animation-duration: 3s;
        animation-delay: 1.2s;
        animation-iteration-count: infinite;
        transition: all ease-in 200ms !important;
        text-align: center;
        width: 30px;
        display: none;
        z-index: 8;
    }

    .pills-wrapper > #pills-goleft {
        left: 0px;
    }

    .pills-wrapper > #pills-goright {
        right: 0px;
    }

    .pills-wrapper.scrollable:hover > #pills-goleft,
    .pills-wrapper.scrollable:hover > #pills-goright {
        color: rgba(44,66,70,0.9);
        transition: all ease-in 500ms !important;
        display: block;
    }

    /*Container of the pills*/
    .pills-wrapper > .pills-container {
        padding-left: 0px;
        padding-right: 0px;
        min-height: 10px;
        width: 100%;
        background-color: transparent;
        height: 40px;
    }

    .pills-wrapper > .pills-container {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
        white-space: nowrap;
        font-size: 0px;
    }

        .pills-wrapper > .pills-container.scrolling .tooltip {
            display: none !important;
        }

        /*Pills*/
        .pills-wrapper > .pills-container > a {
            /*font-family: 'Montserrat' !important;
            font-size: 10.5px !important;
            font-weight: 500;
            letter-spacing: -0.3px;
            text-align: center !important;
            box-shadow: 0px 0px 0px rgba(0,0,0,0);
            outline-width: 0px !important;
            margin: 0 auto;
            margin-left: 0px;
            margin-right: 0px;
            white-space: nowrap;
            overflow-x: hidden;
            text-overflow: ellipsis;
            color: rgba(44,66,70,0.5);
            display: inline-block;
            height: 40px;
            width: auto;
            max-width: 180px;
            padding-top: 13.5px;
            padding-left: 12px;
            padding-right: 12px;
            border-bottom: solid 0px rgba(44,66,70,0.5);
            position: relative;*/
            font-family: 'Montserrat' !important;
            font-size: 10.5px !important;
            font-weight: 500;
            letter-spacing: -0.3px;
            text-align: center !important;
            box-shadow: 0px 0px 0px rgba(0,0,0,0);
            outline-width: 0px !important;
            margin: 0 auto;
            margin-left: 0px;
            margin-right: 0px;
            white-space: nowrap;
            overflow-x: hidden;
            text-overflow: ellipsis;
            color: rgba(44,66,70,0.5);
            display: inline-block;
            height: 35px;
            width: auto;
            max-width: 180px;
            padding-top: 10.5px;
            padding-left: 12px;
            padding-right: 12px;
            /* transition: ease-out 100ms; */
            border-bottom: solid 0px rgba(44,66,70,0.5);
            position: relative;
            overflow-y: hidden;
        }

            .pills-wrapper > .pills-container > a:first-child {
                margin-left: 40px;
            }

            .pills-wrapper > .pills-container > a:last-child {
                margin-right: 40px;
            }

            .pills-wrapper > .pills-container > a:hover,
            .pills-wrapper > .pills-container > a:focus {
                color: rgba(44,66,70,0.5);
                border-bottom: solid 3px rgba(44,66,70,0.5);
                /*transition: ease-in-out 100ms;*/
            }

            .pills-wrapper > .pills-container > a:focus {
                outline: dotted 0px rgba(0,0,0,0.3) !important;
            }

            .pills-wrapper > .pills-container > a.active {
                color: rgba(44,66,70,0.9);
                border-bottom: solid 3px rgba(44,66,70,0.8);
                transition: ease-in-out 100ms;
            }

            /*Close pill*/
            .pills-wrapper > .pills-container > a > svg {
                position: absolute;
                right: 0px;
                font-size: 23px;
                background: linear-gradient(to right, transparent, #FCFCFC, #FCFCFC, #FCFCFC);
                width: 0px;
                padding: 5px;
                padding-left: 0px !important;
                padding-right: 0px !important;
                text-align: right;
                top: 4px;
                overflow: hidden;
                display: inline-block;
                /*transition: all ease-in-out 150ms;*/
                color: transparent;
                padding-bottom: 0px;
                padding-top: 5px;
            }

            .pills-wrapper > .pills-container > a:hover svg {
                width: 20px;
                padding: 5px;
                padding-right: 2px !important;
                /*transition: all ease-in-out 150ms;*/
                color: rgba(44,66,70,0.5);
            }

@media(max-width:767px) {
    .pills-wrapper > .fading-left {
        border-right: solid 1px rgba(0,0,0,0.1);
        background: #FCFCFC;
        width: 30px;
        z-index: 7;
    }

    .pills-wrapper > .fading-right {
        border-left: solid 1px rgba(0,0,0,0.1);
        background: #FCFCFC;
        width: 30px;
        z-index: 7;
    }

    .pills-wrapper > #pills-goleft,
    .pills-wrapper > #pills-goright {
        color: rgba(44,66,70,0.9);
        animation-duration: 1ms;
        animation-delay: 0s;
        animation-iteration-count: initial;
        z-index: 9;
        cursor: pointer;
        top: 0px;
        height: 40px;
        padding-top: 8px;
        display: block;
    }

    .pills-wrapper > .pills-container > a {
        display: none;
    }

        .pills-wrapper > .pills-container > a:first-child {
            margin-left: 0px;
        }

        .pills-wrapper > .pills-container > a:last-child {
            margin-right: 0px;
        }

        .pills-wrapper > .pills-container > a.active {
            display: block !important;
            width: 100%;
            max-width: 100%;
            border-bottom-color: transparent;
            padding-left: 35px;
            padding-right: 35px;
            cursor: default;
        }

    .pills-wrapper > .pills-container > .tooltip {
        display: none !important;
    }

    .pills-wrapper > .pills-container > a.active svg {
        display: none;
    }
}

.main-container {
    /*background-color: transparent;
    width: 100%;
    height: calc(100% - 135px);
    position: fixed;
    top: 110px;
    z-index: 7;
    overflow-x: hidden !important;
    overflow-y: hidden !important;*/
    background-color: transparent;
    width: 100%;
    height: calc(100% - 125px);
    position: fixed;
    top: 93px;
    z-index: 7;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    background-color: white;
}

    /*.main-container > .pill-view {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: calc(100% - 8px);
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        display: none;
        text-align: left;
    }*/

    .main-container > .pill-view {
        animation-duration: 200ms;
        animation-delay: 0s;
    }

    .main-container > .pill-view {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow-x: hidden !important;
        overflow-y: scroll !important;
        display: none;
        text-align: left;
        overflow: hidden !important;
        padding: 0px !important;
    }

        .main-container > .pill-view.active {
            display: block;
        }

    .main-container > .pill-view {
        animation-duration: 200ms;
        animation-delay: 0s;
        padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

        .main-container > .pill-view > .pill-view-loading {
            font-size: 100px;
        }

        .main-container > .pill-view > .pill-view-breadcrumb {
            display: none;
            font-size: 12px;
            color: #97A0A4;
            font-family: "open sans";
            padding: 20px;
            padding-top: 5px;
            padding-bottom: 5px;
        }

            .main-container > .pill-view > .pill-view-breadcrumb.menu__breadcrumbs {
                padding: 0px;
                height: auto !important;
                background-color: transparent;
                padding-bottom: 0px;
                -webkit-touch-callout: none; /* iOS Safari */
                -webkit-user-select: none; /* Chrome/Safari/Opera */
                -khtml-user-select: none; /* Konqueror */
                -moz-user-select: none; /* Firefox */
                -ms-user-select: none; /* Internet Explorer/Edge */
                user-select: none;
            }

                .main-container > .pill-view > .pill-view-breadcrumb.menu__breadcrumbs a {
                    cursor: default;
                    font-weight: 100;
                    color: #97A0A4;
                    padding-top: 1px;
                }

                    .main-container > .pill-view > .pill-view-breadcrumb.menu__breadcrumbs a:hover {
                        cursor: default;
                        color: #97A0A4;
                    }

        .main-container > .pill-view > .pill-view-body {
            /*display: none;
            padding-top: 5px;*/
            position: absolute;
            height: 100%;
            width: 100%;
            padding: 0px;
        }


/*pill view loader*/
.cs-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.text-loader {
    font-size: 14px;
    font-family: "Open Sans";
    font-weight: 300;
    text-align: center;
    color: #75b6fc;
    width: calc(100% - 0px);
    position: absolute;
    top: calc(40% - 40px);
}

.cs-loader-inner {
    position: absolute;
    width: calc(100% - 0px);
    color: #75b6fc;
    text-align: center;
    top: calc(40% - 25px);
    line-height: 1px;
}

    .cs-loader-inner label {
        font-size: 20px;
        opacity: 0;
        display: inline-block;
    }

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 2.5s infinite ease-in-out;
    animation: lol 2.5s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 2.5s 100ms infinite ease-in-out;
    animation: lol 2.5s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 2.5s 200ms infinite ease-in-out;
    animation: lol 2.5s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 2.5s 300ms infinite ease-in-out;
    animation: lol 2.5s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 2.5s 400ms infinite ease-in-out;
    animation: lol 2.5s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 2.5s 500ms infinite ease-in-out;
    animation: lol 2.5s 500ms infinite ease-in-out;
}

.error-loading-view {
    width: 480px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -240px;
    margin-top: 50px;
}

    .error-loading-view:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

.error-loadingview-img {
    float: left;
    text-align: right;
    width: 150px;
    padding-top: 30px;
}

    .error-loadingview-img img {
        width: 100px;
    }

.error-loadingview-text {
    float: right;
    width: 300px;
}

@media (max-width:767px) {
    .error-loading-view {
        width: 100%;
        margin: 0px;
        left: 0px;
        margin-top: 30px;
    }

    .error-loadingview-img {
        float: none;
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
    }

    .error-loadingview-text {
        float: none;
        text-align: center;
        width: 100%;
        padding: 30px;
        padding-top: 5px;
    }
}

.pillview-breadcrum-options {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    display: none !important;
}

    .pillview-breadcrum-options a {
        padding: 5px;
        margin: 0 !important;
        border-radius: 100px;
        float: right;
        text-align: center;
        transition: ease-in-out 300ms;
    }

        .pillview-breadcrum-options a:hover svg {
            color: #3F51B5;
            transition: ease-in-out 300ms;
        }

    .pillview-breadcrum-options svg {
        color: #75B6FC;
    }



/******/

.pill-view-breadcrumb {
    display: none !important;
}

.pill-view.active {
    overflow: hidden !important;
}
