﻿/* Mutilevel Dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

        /*
    Now handling it via angular way
    .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}*/
        .dropdown-submenu > .dropdown-menu.open {
            display: block;
        }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none !important;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            right: 99%;
            /*margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;*/
        }

        .dropdown-submenu.pull-left > a:after {
            float: left;
            margin-left: -10px;
            -ms-transform: rotate(180deg); /* IE 9 */
            -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
            transform: rotate(180deg);
        }

/*------------------------------------------------------*/
/*  Column Grid
/*------------------------------------------------------*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}



.scrollup {
    position: fixed;
    width: 32px;
    height: 32px;
    bottom: 80px;
    right: 48%;
    z-index: 99999;
}

.scrolldown {
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
}

/* the wrapper element that will become the outer circle */
.arrow-wrap {
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 5em;
    margin-left: -5em;
    background: #111;
    width: 10em;
    height: 10em;
    padding: 4em 2em;
    border-radius: 50%;
    font-size: 0.5em;
    display: block;
    /*box-shadow:0px 0px 5px 0px #333;*/
    opacity: 0.6;
}

    .arrow-wrap.ng-hide {
        opacity: 0;
    }
/* a triangle to make the main part of the arrow. Adjust the border-color to fit your needs */
.arrow {
    float: left;
    position: relative;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 3em 3em 0 3em;
    border-color: #ffffff transparent transparent transparent;
    -webkit-transform: rotate(360deg); /* added for better anti-aliasing on webkit browsers */
}

    /* a pseudo element arrow placed on top of the other one with the same color as the wrapper */
    .arrow:after {
        content: '';
        position: absolute;
        top: -3.2em;
        left: -3em;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 3em 3em 0 3em;
        border-color: #111 transparent transparent transparent;
        -webkit-transform: rotate(360deg); /* added for better anti-aliasing on webkit browsers */
    }


@-webkit-keyframes arrows {
    0% {
        top: 0;
    }

    10% {
        top: 20%;
    }

    20% {
        top: 0;
    }

    30% {
        top: 20%;
    }

    40% {
        top: -20%;
    }

    50% {
        top: 20%;
    }

    60% {
        top: 0;
    }

    70% {
        top: 20%;
    }

    80% {
        top: -20%;
    }

    90% {
        top: 20%;
    }

    100% {
        top: 0;
    }
}


.arrow-wrap .arrow {
    -webkit-animation: arrows 2s infinite;
    -webkit-animation-delay: 2s;
}

#fixed-bottom-message {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/*
 * --------------------------------------------------
 * Corner Ribbon
 *--------------------------------------------------
 */
/* The ribbons */
.corner-ribbon-wrapper {
    position: absolute;
    overflow: hidden;
    bottom: 0px;
    left: 15px;
    width: 49px;
    height: 60px;
    z-index: 9;
}

.corner-ribbon {
    width: 95px;
    background: #e43;
    position: absolute;
    top: 25px;
    left: -50px;
    text-align: center;
    line-height: 10px;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
    /* Custom styles */

    .corner-ribbon.sticky {
        position: fixed;
    }

    .corner-ribbon.shadow {
        box-shadow: 0 0 3px rgba(0,0,0,.3);
    }

    /* Different positions */

    .corner-ribbon.top-left {
        top: 25px;
        left: -50px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .corner-ribbon.top-right {
        top: 25px;
        right: -50px;
        left: auto;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .corner-ribbon.bottom-left {
        top: auto;
        bottom: 25px;
        left: -50px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .corner-ribbon.bottom-right {
        top: auto;
        right: -50px;
        bottom: 25px;
        left: auto;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    /* Colors */

    .corner-ribbon.white {
        background: #f0f0f0;
        color: #555;
    }

    .corner-ribbon.black {
        background: #333;
    }

    .corner-ribbon.grey {
        background: #999;
    }

    .corner-ribbon.blue {
        background: #39d;
    }

    .corner-ribbon.green {
        background: #2c7;
    }

    .corner-ribbon.turquoise {
        background: #1b9;
    }

    .corner-ribbon.purple {
        background: #95b;
    }

    .corner-ribbon.red {
        background: #e43;
    }

    .corner-ribbon.orange {
        background: #ec0;
    }

    .corner-ribbon.yellow {
        background: #ec0;
    }


/*** Point Table ***/
.points_table {
    margin-bottom: 30px;
    width: 100%;
}



    .points_table > thead {
        background: #283949;
        color: #fff;
    }

        .points_table > tbody > tr > td, .points_table > thead > tr > th {
            float: left;
            border-bottom-width: 0;
        }


        .points_table > tbody > tr > td, .points_table > tbody > tr > th, .points_table > tfoot > tr > td, .points_table > tfoot > tr > th, .points_table > thead > tr > td, .points_table > thead > tr > th {
            padding: 8px;
            min-height: 25px !important;
            line-height: 22px !important;
        }

.points_table {
    margin-bottom: 0;
}

.odd {
    background: #ffffff;
    /*color: #000;*/
}

.even {
    background: #f3f3f3;
    /*color: #000;*/
}

.points_table_scrollbar {
    /*height: 612px;*/
    overflow-y: scroll;
}

    .points_table_scrollbar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
        border-radius: 10px;
        background-color: #444444;
    }

    .points_table_scrollbar::-webkit-scrollbar {
        width: 1%;
        min-width: 5px;
        background-color: #F5F5F5;
    }

    .points_table_scrollbar::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #D62929;
        background-image: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4) 50%, transparent, transparent)
    }

.div-clickable {
    cursor: hand;
    cursor: pointer;
}

.nac-preview-table .ta-editor.form-control.programe-desc-height, .ta-scroll-window.form-control.myform1-height {
    min-height: 150px;
    height: auto;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
}

.nac-preview-table .form-control.programe-desc-height > .ta-bind {
    height: auto;
    min-height: 150px;
    padding: 6px 12px;
}
/*
 * --------------------------------------------------
 * 1. General Elements
 *--------------------------------------------------
 */
.headerOffset {
    padding-top: 84px;
}

.img-fit-to-div img {
    max-height: 100%;
    max-width: 100%;
}

.navbar-top .userMenu {
    padding-left:0;
}

.navbar-nav > li > a {
    font-size: 13px;
}

.banner {
    padding-top: 15px;
}

.home-houses .img-responsive {
    min-width: 100%;
}

.home-houses2 .product .img-block img {
    min-width: 100%;
}

.carousel-inner img {
    margin: auto;
}


.home-houses .slider-item {
    text-align: center;
}

.sliderTextFull .inner.dark {
    padding: 6px 2px;
}

.carousel-indicators {
    bottom: 0px;
    display: none;
}

    .carousel-indicators li {
        /*border-color:#283949;*/
    }

        .carousel-indicators li.active {
            /*background-color:#283949;*/
        }

.carousel-caption {
    padding-bottom: 0px;
    bottom: 0px;
    font-size: 13px;
    right: 0;
    left: 0;
    text-align: center;
}

.section-title.style2 {
    font-size: 38px;
}

.ps-nav {
    top: 43%;
}

.modal {
    display: block;
}

.modal-full .modal-dialog.modal-lg {
    width: 100%;
    height: 90%;
}

.embed-responsive-viewonline {
    padding-bottom: 50%;
}

.modal-title-site {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.panel-collapse .nav > li .checkbox {
    margin-bottom: 6px;
    margin-top: 6px;
}

.panel-collapse .nav > li > a {
    padding: 4px 10px;
}

.CartProductThumb a img {
    height: 65px;
    margin: 0 auto;
    max-width: 100px;
}

.category-level-2 li:last-child {
    margin-bottom: 8px;
}

.category-level-2 li a {
    font-size: 10px;
}

.productFilter {
    margin-top: 5px;
}

    .productFilter input {
        margin-bottom: 0px;
        margin-left: 5px;
    }

.product .action-control .label-text {
    display: none;
}


.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.full-view {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 5%;
    margin-bottom: 1%;
}

.home-houses2 .featuredImageLook3 .inner:hover .img-title {
    opacity: 1;
    visibility: visible;
    display: block;
}

.home-houses2 .img-title {
}

.title-block .since-year {
    margin-top: 25px;
}

.featuredPostContainer.globalPadding {
    padding: 10px 0 !important;
}

.home-houses2 .featuredImageLook3 .inner .img-block img {
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.home-houses2 .featuredImageLook3 .inner .img-block:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.megamenu-content ul li {
    margin-right: 6px;
}

.sliderTextFull {
    /*margin-top:44%;*/
}
/*
.owl-item .carousel-inner > .item > a > img,.owl-item .carousel-inner > .item > img,.owl-item .img-responsive, .thumbnail a > img,.owl-item .thumbnail > img {
    width: 100%;
    height: 500px;
}*/

/*
 * --------------------------------------------------
 * 2. Colours
 *-------------------------------------------------- 
 */
body {
    background-color: #F2F1ED;
}

.form-group.required .control-label:after {
    content: "*";
    color: red;
}

.text-warning {
    color: #ffc107 !important;
}

[name="eventRegistrationForm"],
[name="eventRegistrationForm"] input[type="text"],
[name="eventRegistrationForm"] .form-control,
[name="eventRegistrationForm"] .input-sm {
    font-size: 16px;
}

.belvedere-event-body {
    background: url('/content/images/brand-events-bg-bv.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #000;
}

    .belvedere-event-body .navbar {
        display: none;
    }

    .belvedere-event-body footer {
        display: none;
    }


.newton-event-body {
    background: url('/content/images/brand-events-bg-newton.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
}

    .newton-event-body .navbar {
        display: none;
    }

    .newton-event-body footer {
        display: none;
    }

.krug-event-body {
    background: url('/content/images/brand-events-bg-krug-BYOK.jpg.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #333;
}

    .krug-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }

    .krug-event-body .navbar {
        display: none;
    }

    .krug-event-body footer {
        display: none;
    }

.ruinart-event-body {
    background: url('/content/images/brand-events-bg-ruinart.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .ruinart-event-body .navbar {
        display: none;
    }

    .ruinart-event-body footer {
        display: none;
    }

.dom-pérignon-event-body {
    background: url('/content/images/brand-events-bg-dp.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .dom-pérignon-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .dom-pérignon-event-body .navbar {
        display: none;
    }

    .dom-pérignon-event-body footer {
        display: none;
    }

.ardbeg-event-body {
    background: url('/content/images/brand-events-bg-ab.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}
.brand-event-logo{
    text-align:center;
}

.brand-event-logo {
    text-align: center;
}

    .brand-event-logo .logo {
        display: inline-block;
    }

.ardbeg-event-body .brand-event-logo .logo {
    background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;
}

.ardbeg-event-body form {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
}



.ardbeg-event-body .navbar {
    display: none;
}

.ardbeg-event-body footer {
    display: none;
}

.hennessy-event-body {
    background: url('/content/images/brand-events-bg-hennessy.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

    .hennessy-event-body.complexcon {
        background: url('/content/images/brand-events-bg-hennessy-complexcon.jpg') no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

        .hennessy-event-body.complexcon .brand-event-logo .logo {
            background: url('/content/images/brand-events-logo-hennessy-white.png') left top no-repeat;
            width: 300px;
            height: 71px;
        }

    .hennessy-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .hennessy-event-body .navbar {
        display: none;
    }

    .hennessy-event-body footer {
        display: none;
    }

.mo-t-hennessy-usa-event-body {
    background: url('/content/images/brand-events-bg-mh.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .mo-t-hennessy-usa-event-body .brand-event-logo .logo {
        background: url('/content/images/mhusa-logo.png') left no-repeat;
        width: 300px;
        height: 100px;
        text-indent: -9999px;
    }

    .mo-t-hennessy-usa-event-body .brand-event-logo .logo {
        background: url('/content/images/mhusa-logo.png') left no-repeat;
        width: 300px;
        height: 100px;
    }


    .mo-t-hennessy-usa-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 40px;
    }



    .mo-t-hennessy-usa-event-body .navbar {
        display: none;
    }

    .mo-t-hennessy-usa-event-body footer {
        display: none;
    }

.chandon-california-event-body {
    background: url('/content/images/brand-events-bg-chandon-california.jpg') no-repeat center top fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .chandon-california-event-body .brand-event-logo .logo {
        background: url('/content/images/brand-events-logo-chandon-california.png') left top no-repeat;
        width: 200px;
        height: 100px;
    }

    .chandon-california-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .chandon-california-event-body .navbar {
        display: none;
    }

    .chandon-california-event-body footer {
        display: none;
    }

.mo-t-chandon-event-body {
    background: url('/content/images/brand-events-bg-moet-chandon.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}



    .mo-t-chandon-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .mo-t-chandon-event-body .navbar {
        display: none;
    }

    .mo-t-chandon-event-body footer {
        display: none;
    }

    .mo-t-chandon-event-body.mc_ca_tennis {
        background-image: none;
        background-color: black;
    }

        .mo-t-chandon-event-body.mc_ca_tennis form {
            border:none;
            background:none;
        }

        .mo-t-chandon-event-body.mc_ca_tennis .btn-dark {
            background-color: #D2AD6C;
        }

        .mo-t-chandon-event-body.mc_ca_tennis,
        .mo-t-chandon-event-body.mc_ca_tennis a,
        .mo-t-chandon-event-body.mc_ca_tennis > .input[type='text'] {
            color: #fff;
        }

        .mo-t-chandon-event-body.mc_ca_tennis .form-control::placeholder {
            color: #555;
        }
            .mo-t-chandon-event-body.mc_ca_tennis .form-control::-webkit-input-placeholder {
                color: #555;
            }
/* WebKit, Blink, Edge */
        .mo-t-chandon-event-body.mc_ca_tennis .form-control:-moz-placeholder {
            color: #555;
        }
/* Mozilla Firefox 4 to 18 */
        .mo-t-chandon-event-body.mc_ca_tennis .form-control::-moz-placeholder {
            color: #555;
        }
/* Mozilla Firefox 19+ */
        .mo-t-chandon-event-body.mc_ca_tennis .form-control:-ms-input-placeholder {
            color: #555;
        }
/* Internet Explorer 10-11 */
        .mo-t-chandon-event-body.mc_ca_tennis .form-control::-ms-input-placeholder {
            color: #555;
        }
/* Microsoft Edge */

        .mo-t-chandon-event-body.mc_ca_tennis .brand-event-logo .logo {
            background: url('/content/images/moet-chandon-logo-_w_g.png') left no-repeat;
            width: 250px;
            height: 110px;
        }

    .mo-t-hennessy-usa-clos19-event-body {
    background: url('/content/images/brand-events-clos19.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .mo-t-hennessy-usa-clos19-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .mo-t-hennessy-usa-clos19-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .mo-t-hennessy-usa-clos19-event-body .navbar {
        display: none;
    }

    .mo-t-hennessy-usa-clos19-event-body footer {
        display: none;
    }

.ardbeg-clos19-event-body {
    background: url('/content/images/brand-events-bg-ab-clos19.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .ardbeg-clos19-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .ardbeg-clos19-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .ardbeg-clos19-event-body .navbar {
        display: none;
    }

    .ardbeg-clos19-event-body footer {
        display: none;
    }

.hennessy-clos19-event-body {
    background: url('/content/images/brand-events-bg-hennessy-clos19.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .hennessy-clos19-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .hennessy-clos19-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .hennessy-clos19-event-body .navbar {
        display: none;
    }

    .hennessy-clos19-event-body footer {
        display: none;
    }

.veuve-clicquot-clos19-event-body {
    background: url('/content/images/brand-events-bg-cliquot-clos19.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .veuve-clicquot-clos19-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .veuve-clicquot-clos19-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .veuve-clicquot-clos19-event-body .navbar {
        display: none;
    }

    .veuve-clicquot-clos19-event-body footer {
        display: none;
    }

.mo-t-chandon-clos19-event-body {
    background: url('/content/images/brand-events-bg-moet-clos19.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .mo-t-chandon-clos19-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .mo-t-chandon-clos19-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .mo-t-chandon-clos19-event-body .navbar {
        display: none;
    }

    .mo-t-chandon-clos19-event-body footer {
        display: none;
    }


.glenmorangie-event-body {
    background: url('/content/images/brand-events-bg-glen.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .glenmorangie-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .glenmorangie-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .glenmorangie-event-body .navbar {
        display: none;
    }

    .glenmorangie-event-body footer {
        display: none;
    }

.veuve-clicquot-event-body {
    background: url('/content/images/brand-events-bg-cliquot.jpg') no-repeat center top fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #888888;
}

    .veuve-clicquot-event-body .brand-event-logo .logo {
        /*background: url('/content/images/brand-events-logo-ardbeg.png') left top no-repeat;
    width: 165px;
    height: 55px;*/
    }

    .veuve-clicquot-event-body form {
        border: 1px solid #ccc;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 40px;
    }



    .veuve-clicquot-event-body .navbar {
        display: none;
    }

    .veuve-clicquot-event-body footer {
        display: none;
    }


.navbar {
    background-color: #fff;
}

.section-title-style2 span, .section-title.style2 span {
    background-color: #f2f1ed;
}


.navbar-brand h1 {
    color: #000;
}

.user-menu .dropdown-menu {
    color: #fff;
    background-color: #071422;
}

    .user-menu .dropdown-menu > li > a {
        color: #fff;
    }

        .user-menu .dropdown-menu > li > a:focus, .user-menu .dropdown-menu > li > a:hover {
            background-color: #f5f5f5;
            color: #262626;
        }

.carousel-control.left, .carousel-control.right {
}

.carousel-inner > .item {
    background-color: #000;
}

#categoryContainer .category-level-2 li.active {
    background-image: linear-gradient(to bottom, #337ab7 0px, #265a88 100%);
    background-repeat: repeat-x;
}

#categoryContainer .category-level-2 li a.active {
    color: #fff;
}

.navbar-toggle .icon-bar {
    border-color: #2a2a2a;
}

.has-error {
    border-color: red;
}
/*.home-houses2 .featuredImageLook3 .inner .box-content-overly-white {
    opacity: 1;
    background: rgba(255,255,255,0.8);
    visibility: visible;
}*/
/*.home-houses2 .featuredImageLook3 .inner:hover .box-content-overly-white {
    opacity: 0;
    background: rgba(0,0,0,0);
    visibility: hidden;
}*/

.home-houses2 .featuredImageLook3 .inner .title-block {
    height: 90px;
    background-color: #fff;
}

.home-houses2 .featuredImageLook3 .inner .img-title {
    color: #2c3e50;
    font-family: "romain_reguRg",serif;
    text-shadow: none;
    position: relative;
    top: 30%;
    font-size: 18px;
    /*padding:25px 5px 25px 5px;*/
}


button.close {
    color: #fff;
    opacity: 0.8;
}

.age-current {
    color: #5cb85c;
}

.age-mid {
    color: #ed9c28;
}

.age-old {
    color: #d2322d;
}

.category-top .dropdown-menu {
    border-top: none;
}

.btn-gray {
    color: #ffffff;
    background-color: #6F7275;
    border-color: #858487;
}

    .btn-gray:hover,
    .btn-gray:focus,
    .btn-gray:active,
    .btn-gray.active,
    .open .dropdown-toggle.btn-gray {
        color: #ffffff;
        background-color: #3F3F40;
        border-color: #858487;
    }

    .btn-gray:active,
    .btn-gray.active,
    .open .dropdown-toggle.btn-gray {
        background-image: none;
    }

    .btn-gray.disabled,
    .btn-gray[disabled],
    fieldset[disabled] .btn-gray,
    .btn-gray.disabled:hover,
    .btn-gray[disabled]:hover,
    fieldset[disabled] .btn-gray:hover,
    .btn-gray.disabled:focus,
    .btn-gray[disabled]:focus,
    fieldset[disabled] .btn-gray:focus,
    .btn-gray.disabled:active,
    .btn-gray[disabled]:active,
    fieldset[disabled] .btn-gray:active,
    .btn-gray.disabled.active,
    .btn-gray[disabled].active,
    fieldset[disabled] .btn-gray.active {
        background-color: #6F7275;
        border-color: #858487;
    }

    .btn-gray .badge {
        color: #6F7275;
        background-color: #ffffff;
    }

.btn-thin-filter {
    border: 1px solid rgb(189, 195, 199);
    color: #888888;
    background: none;
}

    .btn-thin-filter.active,
    .btn-thin-filter:hover {
        border-color: #34495E;
    }

/************ File Type Icon Colors  */
.fa-file-pdf-o {
    color: #B40808;
}

.fa-file-word-o {
    color: #00188F;
}

.fa-file-image-o {
    color: #4E8C23;
}

.fa-file-excel-o {
    color: #91CDA0;
}

.fa-file-zip-o {
    color: #FFBE00;
}

.fa-file-powerpoint-o {
    color: #F6712E;
}

/*
 * --------------------------------------------------
 * 3. Misc
 * Other stuff
 *--------------------------------------------------
 */

/* Checkbox */
.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

    .checkbox .cr .cr-icon,
    .radio .cr .cr-icon {
        position: absolute;
        font-size: .8em;
        line-height: 0;
        top: 50%;
        left: 20%;
    }

    .radio .cr .cr-icon {
        margin-left: 0.04em;
    }

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

    .checkbox label input[type="checkbox"] + .cr > .cr-icon,
    .radio label input[type="radio"] + .cr > .cr-icon {
        transform: scale(3) rotateZ(-20deg);
        opacity: 0;
        transition: all .3s ease-in;
    }

    .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
    .radio label input[type="radio"]:checked + .cr > .cr-icon {
        transform: scale(1) rotateZ(0deg);
        opacity: 1;
    }

    .checkbox label input[type="checkbox"]:disabled + .cr,
    .radio label input[type="radio"]:disabled + .cr {
        opacity: .5;
    }


img.color_flip {
    filter: url(filters.svg#grayscale); /* Firefox 3.5+ */
    filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .5s ease-in-out;
}

    img.color_flip:hover {
        filter: none;
        -webkit-filter: grayscale(0);
        -webkit-transform: scale(1.1);
    }

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    color: #333;
    margin: 0 auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0.75;
}
.btn-default {
    text-shadow:none;
}
.uib-daypicker .btn-default {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

    .uib-daypicker .btn-default.active {
        background-color: #858487;
        color: #fff;
    }

.multiselect-parent.dropdown-multiselect {
    width: 100%;
}

.dropdown-multiselect-required .btn-required {
    color: #f44336;
}

.dropdown-multiselect-group .dropdown-header {
    background-color: #34495e;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.r {
    border-radius: 3px;
}

.p {
    padding: 16px;
}

.m-b-sm {
    margin-bottom: 8px;
}

.bg-white {
    background-color: #fff;
}

.bg-light {
    background-color: #eaebec;
}

.bg-primary {
    color: rgba(255, 255, 255, 0.87);
    background-color: #3f51b5
}

    .bg-primary.lt {
        background-color: #5363bb !important
    }

    .bg-primary .lt {
        background-color: #5363bb
    }

    .bg-primary.dk {
        background-color: #3345a8 !important
    }

    .bg-primary .dk {
        background-color: #3345a8
    }

    .bg-primary.bg {
        background-color: #3f51b5 !important
    }

    .bg-primary .bg {
        background-color: #3f51b5
    }

.bg-success {
    color: rgba(255, 255, 255, 0.87);
    background-color: #4caf50
}

    .bg-success.lt {
        background-color: #62b265 !important
    }

    .bg-success .lt {
        background-color: #62b265
    }

    .bg-success.dk {
        background-color: #3fa343 !important
    }

    .bg-success .dk {
        background-color: #3fa343
    }

    .bg-success.bg {
        background-color: #4caf50 !important
    }

    .bg-success .bg {
        background-color: #4caf50
    }

.bg-info {
    color: rgba(255, 255, 255, 0.87);
    background-color: #2196f3
}

    .bg-info.lt {
        background-color: #3ea1ef !important
    }

    .bg-info .lt {
        background-color: #3ea1ef
    }

    .bg-info.dk {
        background-color: #078bf4 !important
    }

    .bg-info .dk {
        background-color: #078bf4
    }

    .bg-info.bg {
        background-color: #2196f3 !important
    }

    .bg-info .bg {
        background-color: #2196f3
    }

.bg-warning {
    color: rgba(255, 255, 255, 0.87);
    background-color: #ffc107
}

    .bg-warning.lt {
        background-color: #f9c526 !important
    }

    .bg-warning .lt {
        background-color: #f9c526
    }

    .bg-warning.dk {
        background-color: #ecb100 !important
    }

    .bg-warning .dk {
        background-color: #ecb100
    }

    .bg-warning.bg {
        background-color: #ffc107 !important
    }

    .bg-warning .bg {
        background-color: #ffc107
    }

.bg-danger {
    color: rgba(255, 255, 255, 0.87);
    background-color: #f44336
}

    .bg-danger.lt {
        background-color: #f15e53 !important
    }

    .bg-danger .lt {
        background-color: #f15e53
    }

    .bg-danger.dk {
        background-color: #f92718 !important
    }

    .bg-danger .dk {
        background-color: #f92718
    }

    .bg-danger.bg {
        background-color: #f44336 !important
    }

    .bg-danger .bg {
        background-color: #f44336
    }

.bg-accent {
    color: rgba(255, 255, 255, 0.87);
    background-color: #7e57c2
}

    .bg-accent.lt {
        background-color: #8e6fc4 !important
    }

    .bg-accent .lt {
        background-color: #8e6fc4
    }

    .bg-accent.dk {
        background-color: #6e3ec2 !important
    }

    .bg-accent .dk {
        background-color: #6e3ec2
    }

    .bg-accent.bg {
        background-color: #7e57c2 !important
    }

    .bg-accent .bg {
        background-color: #7e57c2
    }


.panel-card {
    border-width: 0;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}



.b-l {
    border-left: 1px solid #dddee0;
}

.b-l-info {
    border-left-color: #2196f3;
}

.b-l-success {
    border-left-color: #4caf50;
}

.b-l-warning {
    border-left-color: #ffc107
}

.b-l-danger {
    border-left-color: #f44336
}

.b-l-2x {
    border-left-width: 2px !important;
}

.text-ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-sm {
    font-size: 13px;
}

.m-t-xs {
    margin-top: 4px;
}

.text-muted-dk {
    color: inherit;
    opacity: .5;
}

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #DDD;
    text-align: center;
    padding: 20px 10px;
    margin-left: 10px;
}

.dragover {
    border: 5px dashed blue;
}

/* Tiles Start */
table.tile_info td p {
    text-overflow: ellipsis
}

.tile,
.weather-days .col-sm-2,
.x_title h2,
table.tile_info td p {
    overflow: hidden
}

@media (max-width:1200px) {
    .x_title h2 {
        width: 62%;
        font-size: 17px
    }

    .graph,
    .tile {
        zoom: 85%;
        height: inherit
    }
}

@media (min-width:192px) and (max-width:1270px) {
    table.tile_info span.right {
        margin-right: 7px;
        float: left
    }
}

.tiles,
.top_tiles {
    margin-bottom: 0
}

.tile-stats.sparkline {
    padding: 10px;
    text-align: center
}

.tiles {
    border-top: 1px solid #ccc;
    margin-top: 15px;
    padding-top: 5px
}

.top_tiles .tile h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 3px 0 7px;
    font-weight: 700
}

table.tile td ul li a,
table.tile_info {
    width: 100%
}

table.tile h3,
table.tile h4,
table.tile span {
    font-weight: 700;
    vertical-align: middle !important
}

table.tile td,
table.tile th {
    text-align: center
}

table.tile th {
    border-bottom: 1px solid #E6ECEE
}

table.tile td {
    padding: 5px 0
}

    table.tile td ul {
        text-align: left;
        padding-left: 0
    }

        table.tile td ul li {
            list-style: none;
            width: 100%
        }

            table.tile td ul li a big {
                right: 0;
                float: right;
                margin-right: 13px
            }

table.tile_info td {
    text-align: left;
    padding: 1px;
    font-size: 15px
}

    table.tile_info td p {
        margin: 0;
        line-height: 28px
    }

    table.tile_info td i {
        margin-right: 8px;
        font-size: 17px;
        float: left;
        width: 18px;
        line-height: 28px
    }

    table.tile_info td:first-child {
        width: 83%
    }

td span {
    line-height: 24px
}

.tile-stats > .dash-box-footer,
.tile:hover,
.view a.info,
span.tag {
    text-decoration: none
}

.tile_count .tile_stats_count,
ul.quick-list li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.tile_info a {
    text-overflow: ellipsis
}

.tile_count {
    margin-bottom: 20px;
    margin-top: 20px
}

    .tile_count .tile_stats_count {
        border-bottom: 1px solid #D9DEE4;
        padding: 0 10px 0 20px;
        position: relative
    }

        .tile_count .tile_stats_count:before {
            content: "";
            position: absolute;
            left: 0;
            height: 65px;
            border-left: 2px solid #ADB2B5;
            margin-top: 10px
        }

@media (min-width:992px) {
    .tile_count .tile_stats_count {
        margin-bottom: 10px;
        border-bottom: 0;
        padding-bottom: 10px
    }

        .tile_count .tile_stats_count:first-child:before {
            border-left: 0
        }
}

.tile_count .tile_stats_count .count {
    font-size: 30px;
    line-height: 47px;
    font-weight: 600
}

@media (min-width:768px) {
    .tile_count .tile_stats_count .count {
        font-size: 40px
    }
}

@media (min-width:992px) and (max-width:1100px) {
    .tile_count .tile_stats_count .count {
        font-size: 30px
    }
}

.tile_count .tile_stats_count span {
    font-size: 12px
}

@media (min-width:768px) {
    .tile_count .tile_stats_count span {
        font-size: 13px
    }
}

.tile_count .tile_stats_count .count_bottom i {
    width: 12px
}

.tile-stats {
    position: relative;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #E4E4E4;
    -webkit-border-radius: 5px;
    overflow: hidden;
    padding-bottom: 5px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 5px;
    -moz-background-clip: padding;
    border-radius: 5px;
    background: #FFF;
    transition: all .3s ease-in-out
}

    .tile-stats:hover .icon i {
        animation-name: tansformAnimation;
        animation-duration: .5s;
        animation-iteration-count: 1;
        color: rgba(58, 58, 58, .41);
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        -webkit-animation-name: tansformAnimation;
        -webkit-animation-duration: .5s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-timing-function: ease;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-name: tansformAnimation;
        -moz-animation-duration: .5s;
        -moz-animation-iteration-count: 1;
        -moz-animation-timing-function: ease;
        -moz-animation-fill-mode: forwards
    }

    .tile-stats .icon {
        width: 20px;
        height: 20px;
        color: #BAB8B8;
        position: absolute;
        right: 53px;
        top: 22px;
        z-index: 1
    }

        .tile-stats .icon i {
            margin: 0;
            font-size: 60px;
            line-height: 0;
            vertical-align: bottom;
            padding: 0
        }

    .tile-stats .count {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.65857
    }

    .tile-stats .count,
    .tile-stats h3,
    .tile-stats p {
        position: relative;
        margin: 0 0 0 10px;
        z-index: 5;
        padding: 0
    }

    .tile-stats h3 {
        color: #BAB8B8
    }

    .tile-stats p {
        margin-top: 5px;
        font-size: 12px
    }

    .tile-stats > .dash-box-footer {
        position: relative;
        text-align: center;
        margin-top: 5px;
        padding: 3px 0;
        color: #fff;
        color: rgba(255, 255, 255, .8);
        display: block;
        z-index: 10;
        background: rgba(0, 0, 0, .1)
    }

        .tile-stats > .dash-box-footer:hover {
            color: #fff;
            background: rgba(0, 0, 0, .15)
        }

table.tile_info {
    padding: 10px 15px
}

    table.tile_info span.right {
        margin-right: 0;
        float: right;
        position: absolute;
        right: 4%
    }

.tile_header {
    border-bottom: transparent;
    padding: 7px 15px;
    margin-bottom: 15px;
    background: #E7E7E7
}

.tile_head h4 {
    margin-top: 0;
    margin-bottom: 5px
}

.tiles-bottom {
    padding: 5px 10px;
    margin-top: 10px;
    background: rgba(194, 194, 194, .3);
    text-align: left
}
/* Tiles End */

/*
 * --------------------------------------------------
 * 4. Product
 * 
 *--------------------------------------------------
 */
.product, .product:hover, .featuredImgLook2 .inner, .featuredImgLook2 .inner:hover {
    border: none;
}

.item.list-view .image {
    padding-left: 20px;
}

.product:hover .image a img {
    transform: scale(1.1);
}

.item:not(.list-view) .product .description {
    min-height: 0;
}

    .item:not(.list-view) .product .description > div {
        display: none;
    }

.brand-product-list .product .img-block img {
    padding: 20px 0 20px 0;
}

/*Full Width Image*/
/*.category-assets .item .product .image{
    padding-top:2px;
    height:100px;
    overflow:hidden;
    
}*/
.latest-brand-assets.sectionCategory {
    padding: 30px 0;
}

.latest-brand-assets .thumbnail {
    height: 240px;
}

.latest-brand-assets .subCategoryThumb {
    height: 140px !important;
}

    .latest-brand-assets .subCategoryThumb img {
        height: 140px !important;
    }

.brand-product-list .inner.product .title-block .img-title {
    top: 25%;
}

.brand-product-list .inner.product .title-block .marque-title {
    margin-top: 25px;
}

.category-assets .panel-title {
    font-size: 20px;
}

.category-assets .category-quarterly > li > a {
    padding: 4px 0px;
}

.category-assets .category-quarterly .tags {
    font-size: 11px;
    font-style: italic;
}

.category-assets .item .product .image img {
    padding-top: 2px;
    height: 100px;
    /*width:0px;*/
}

.category-assets .product .description .title {
    font-size: 13px;
    padding: 3px;
    word-wrap: break-word;
}

.item:not(.list-view) .product .description .title {
    overflow: hidden;
    line-height: 17px;
}

.category-assets .item {
    height: 200px !important;
    margin-bottom: 25px;
    /*overflow:hidden;*/
}

    .category-assets .item .product {
        height: 100%;
        min-height: 200px;
    }

    .category-assets .item .product {
        background-color: #fff;
    }
        /*.category-assets .item .product .image {
    padding-top:30px;
}*/
        .category-assets .item .product .image span {
            height: 100px;
            padding-top: 30px;
        }

        .category-assets .item .product .image .quickview {
            margin-top: 20%;
        }

        .category-assets .item .product .description {
            align-content: center;
            display: flex;
            flex-direction: column;
            height: 55px;
            justify-content: center;
        }

    .category-assets .item.list-view {
        overflow: visible;
    }

        .category-assets .item.list-view .product .image {
            padding-top: 15px;
        }

            .category-assets .item.list-view .product .image .quickview {
                padding-right: 40px;
            }

        .category-assets .item.list-view .product .description {
            height: 155px;
        }

.category-assets .product .description > div, .item.list-view .description {
    text-align: left;
}

.category-assets .item.list-view .action-control {
    float: right;
    /*width: 25%;*/
}

.category-assets .item .product .action-control {
    /*width:100%;*/
}

/*.category-assets .item .product .action-control .file-type{
    float:left;
    padding-left:5px;
}*/

.category-assets .product .action-control .checkbox {
    margin-top: 2px;
}

    .category-assets .product .action-control .checkbox label {
        margin-top: 2px;
        padding-left: 0;
    }

    .category-assets .product .action-control .checkbox .cr {
        margin-right: 0;
    }

.category-assets .product .action-control .more-tools {
    padding-right: 3px;
    margin-top: 4px;
}

    .category-assets .product .action-control .more-tools .dropdown-menu {
        border-top: none;
    }

.modal .main-image img {
    height: auto;
    width: 100%;
}

.pull-left.dropdown-menu {
    left: -130px;
}

.collection-modal .modal-body {
    min-height: 300px;
}

.home-houses .product {
    margin-bottom: 30px;
}

.parallax-image-mh {
    background: rgba(0, 0, 0, 0) url("../lib/tshop/v-1.4/white/images/parallax/hennessy.jpg") repeat fixed 0 0 / cover;
}

.parallax-image-mh-hennessy {
    background: rgba(0, 0, 0, 0) url("../lib/tshop/v-1.4/white/images/parallax/hennessy-bottle.jpg") repeat fixed 0 0 / cover;
}

.box-embed-widget #header {
    display: none;
}

.box-embed-widget .subheader {
    margin-top: 0px;
}

.registeration-modal .register-news-letter .checkbox label {
    padding-left: 0px;
}

.registeration-modal .open > .dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.manage-account-modal .open > .dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

/****************** Education Page *******************/

.bucket-list .inner.bucket {
    padding: 10px 0px;
}

.bucket-list .menu-list {
    padding: 20px 40px;
}

    .bucket-list .menu-list .menu-item {
        padding-top: 1px;
        padding-bottom: 1px;
    }

        .bucket-list .menu-list .menu-item a {
            /*color:"#000";*/
            font-size: 14px;
            font-weight: 500;
            padding-left: 20px;
        }

.quizzes.progress {
    background-color: #dcdcdc !important;
    background-image: none !important;
}

/************   ****************/
.nac-table {
    font-size: 13px;
}

    .nac-table tr > td.nac-active {
        border-left: 2px solid #00ff21 !important;
    }

    .nac-table tr > td.nac-inactive {
        border-left: 2px solid #ff0000 !important;
    }

    .nac-table.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        border-left: 1px solid #fff;
    }

    .nac-table tr > th > span {
        padding-right: 5px;
    }

.sort-icon {
    opacity: 0.5;
}

    .sort-icon.active {
        opacity: 1;
    }

    .sort-title:hover .sort-icon,
    .sort-icon:hover {
        opacity: 1;
    }


/************Assett Details Page**************/
.asset-details-page .panel-default {
    background-color:#fff;
}
.asset-details-page .panel-heading {
    background: #283949;
    color:#fff;
}

/*
 * --------------------------------------------------
 * 5. Responsiveness/media queries
 *--------------------------------------------------
 */

@media (max-width: 400px) {
    /* Extra small devices (phones, less than 400px) */
    .userMenu li a.name {
        padding-top: 7px;
    }

    .navbar-brand {
        padding: 10px;
    }

        .navbar-brand img {
            max-width: 200px;
        }

    .navbar.megamenu .navbar-collapse .nav > li, .navbar.megamenu .navbar-collapse .nav > li > a {
        background: #283949 none repeat scroll 0 0;
        color: #fff;
    }

    .xs-no-padding {
        padding: 0px !important;
    }

    .slider-v1 img {
        height: 100px;
        /*max-height:300px;*/
        /*min-width:1140px;*/
    }

    .style2 .section-title, .section-title.style2 {
        font-size: 16px;
    }

        .style2 .section-title .brand-name, .section-title.style2 .brand-name {
            font-size: 14px
        }

        .section-title-style2 span, .section-title.style2 span {
            padding: 10px 3px;
        }

    .CartProductThumb a img {
        height: 40px;
    }
}

@media (max-width:767px) {
    /* Mobile Plus (tablets, 767px and less) */
    .navbar-brand {
        padding: 10px;
    }

        .navbar-brand img {
            max-width: 200px;
        }

    .navbar.megamenu .navbar-collapse .nav > li, .navbar.megamenu .navbar-collapse .nav > li > a {
        background: #283949 none repeat scroll 0 0;
        color: #fff;
    }

    .xs-no-padding {
        padding: 0px !important;
    }

    .slider-v1 img {
        height: 100px;
        /*max-height:300px;*/
        /*min-width:1140px;*/
    }
}

@media (min-width: 768px) {
    /* Small devices (tablets, 768px and up) */


}

@media (min-width: 1023px) {
    /* Medium devices (desktops, 992px and up) */

    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }

    .sliderImg {
        min-width: 100%;
    }

    .slider-v1 img {
        height: 200px;
        max-height: 300px;
        /*min-width:1140px;*/
    }

    .modal-title-site {
        font-size: 20px;
    }
}


@media (min-width: 1200px) {
    /* Large devices (large desktops, 1200px and up) */
    /*.slider-v1 img{
        height:485px;
        max-height:485px;
        
    }*/
    .asset-details .modal-body .meta-data,
    .asset-details .modal-body .asset-image {
        min-height: 400px;
        max-height: 425px;
        overflow-y: auto;
    }

        .asset-details .modal-body .meta-data,
        .asset-details .modal-body .asset-image.img-fit-to-div {
            height: 425px !important;
        }
    /*.modal-title-site{
        font-size:38px;
    }*/

}

@media (min-width: 1900px) {
    /* Large devices (large desktops, 1200px and up) */
    .slider-v1 img {
        /*height:485px;
        max-height:485px;
        min-width:1140px;*/
    }

    .asset-details .modal-body .meta-data,
    .asset-details .modal-body .asset-image {
        min-height: 600px;
        max-height: 625px;
        overflow-y: auto;
    }

    .modal-full .modal-dialog.modal-lg {
        width: 70%;
    }
}

/********** Tablet Menu **********/
@media (max-width: 1200px) and (min-width: 768px) {
    .navbar-brand img {
        max-width: 110px;
        margin-top: 4px;
    }

    .nav.navbar-nav a {
        font-size: 11px !important;
    }
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -10px;
    }
}

.required {
    color: red;
}




/************* Style for PIM ***************/

.pim-sidebar .panel-body {
    padding: 10px 15px;
    background: rgba(234, 234, 234, 0.8);
}

.pim-sidebar .dropdown-toggle .caret {
    float: right;
    margin-top: 7px;
}

.pim-sidebar .tbc {
    padding-left: 8px;
    display: table;
    height: 56px;
}

.pim-sidebar .tbc .tbcd {
    font-size: 0.90em;
    line-height: 1.30em;
    display: table-cell;
    vertical-align: middle;
}

.tbc .popover,
.pim-plist .popover {
    font-size: 0.85em;
    line-height: 1.3em;
    color: #333;
    padding: 0px;
    margin-top: -0px !important;
}

.tbc .popover.top > .arrow:after,
.pim-plist .popover.top > .arrow:after {
    display: none;

}

.plist-by-cat .popover.top > .arrow {
    border-top-color: rgba(0, 0, 0, .5);
}
.plist-by-cat .popover {
    border-radius: 0;
}

.plist-by-cat .popover-content {
    padding: 5px 10px;
}

.pim-sidebar .ltf-thumb {
    background: #fff;
}

@media (min-width: 1200px) {

    .pim-plist-pg, .pim-pdetails-pg {
        padding-top: 95px;
    }

    .pim-sidebar .panel-body {
        padding: 20px 25px;
    }
}

.pim-sidebar .dropdown-toggle {
    font-size: 0.95em;
    text-align: left;
}

.pim-sidebar .dropdown-header {
    padding: 0px 10px;
}

.pim-sidebar .btn {
    border-radius: 0;
}

.pim-pdetails-pg .pim-sidebar .panel-body {
    padding: 10px 15px;
}

.pim-pdetails-pg .pim-sidebar .btn {
    border-radius: 0;
}

.pim-sidebar .btn-dark {
    background-color: #cccccc;
    color: #283949;
}

.pim-sidebar .btn-sr {
    background-color: #283949;
    color: #ffffff;
    box-shadow: 0px 0px 5px #999999 !important;
}

.pim-sidebar .panel-default,
.pim-sidebar .form-control,
.pim-content .panel-default {
    border-radius: 0;
}
@media (max-width: 700px) {
    .pim-sidebar .panel-pl {
        overflow: auto;
        height: 30vh;
    }
}
.pim-content {
    margin-bottom: 25px;
}

.pim-plist-pg .btn-wbg,
.pim-pdetails-pg .btn-wbg,
.pim-pdetails-pg .btn-wbg:active,
.pim-pdetails-pg .btn-wbg:focus {
    background: #fff;
    margin-bottom: 8px;
    border: 1px solid #999;
    border-radius: 0;
}

.pim-plist-pg .btn-wbg:hover,
.pim-pdetails-pg .btn-wbg:hover {
    background-color: #34495e;
    color: #FFFFFF;
}

.pim-plist-pg .btn-wbg-select {
    background: #fff;
    margin-bottom: 8px;
    border: 1px solid #999;
    border-radius: 0;
}

.pim-plist-pg .btn-sr-clear {
    margin-top: 10px;
}

.pim-plist-pg .btn-sr-clear .fa {
    margin: 3px 0 0 15px;
}
.pim-filt-right {
    text-align: right;
}

.pim-pin .nav-pills > li.active,
.pim-pin .nav-pills > li.active:focus,
.pim-pin .nav-pills > li.active:hover {
    background-color: transparent;
}

.pim-pin .nav-pills > li.active > a,
.pim-pin .nav-pills > li.active > a:focus,
.pim-pin .nav-pills > li.active > a:hover {
    background-color: #283949;
    color: #ffffff;
    border: 1px solid #ddd;
    padding: 3px 15px;
}

.pim-filt-right .fa {
    margin-right: 10px;
    font-size: 18px;
}

.pim-filt-right .btn {
    width: 150px;
}

@media (max-width: 1200px) {
    .pim-filt-right .btn, .pim-filt-right .btn-group {
        float: left;
        clear: left;
    }
}

.pim-content .form-control-search {
    border-radius: 0;
    border: 1px solid #ccc;
    margin-bottom: 0;
    height: 32px;
}

.pim-plist-pg .btn-sr-clear {
    color: #283949;
    margin-top: 7px;
    border-radius: 0;
    padding: 3px 10px;
}

.pim-content .help-block {
    color: #283949;
}

.pim-content input[type=checkbox] {
    -ms-transform: scale(1.2); /* IE */
    -moz-transform: scale(1.2); /* FF */
    -webkit-transform: scale(1.2); /* Safari and Chrome */
    -o-transform: scale(1.2); /* Opera */
    transform: scale(1.2);
    padding: 5px;
    margin-right: 3px;
    color: #585858;
}

.pim-plist {
    margin: 15px 0;
    padding: 0 10px;
}

.pim-plist .panel {
    /**
        box-shadow: 0px 2px 3px #ddd !important;
    **/
    border-color: #c7c7c7;
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.pim-plist .panel:hover {
    box-shadow: 0px 2px 10px #ccc !important;
}

.pim-plist .panel-body:hover .p-caption,
.pim-plist .panel-body .p-caption:hover {
    display: block !important;
    cursor: pointer;
}

.pim-plist .caption {
    height: 40px;
    line-height: normal;
    text-align: left;
}

.pim-plist .caption label {
font-weight: normal;
    margin-bottom: 0;
    font-size: 0.95em;
    padding-left: 0;
}

.pim-plist .caption label a {
    color: #555555;
    font-size: 0.95em;
}

.pim-plist .panel-default img {
    margin: 0 auto;
    margin-bottom: 15px;
}

.pim-plist .panel-body .fa {
    font-size: 20px;
}
@media (min-width: 770px) {
    .pim-plist .col-md-3 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.pim-details {
    margin: 0 0 25px 0;
}

.pim-details h3 {
    font-size: 24px;
    line-height: 28px;
    color: #34495e;
}

.pim-details .txt-desc {
    font-size: 0.95em;
    color: #63707d;
}


.pim-pdetails-pg .nav-tabs {
    margin-bottom: 0;
    border-bottom: 0px solid #bfc9ca;
}


.pim-pdetails-pg .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.pim-pdetails-pg .tab-content {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
}

.pim-pdetails-pg .table > tbody > tr > td {
    border: 0;
    color: #647280;
}


.pim-pdetails-pg .breadcrumb {
    margin: 0 0 10px 0;
    padding: 0;
}

.pim-pdetails-pg .breadcrumb,
.pim-admin-pg .breadcrumb {
    border: 0;
    font-size: .90em;
}

.pim-admin-pg .breadcrumb {
    padding: 5px 0 5px 0;
    border-radius: 0;
    margin: 0;
}

.pim-admin-pg .filter-box .dropdown-toggle {
    text-align: left;
    padding: 5px 10px;
    font-size: 14px;
}
.pim-admin-pg .filter-box {
    padding: 0 10px;
}

.pim-admin-pg .filter-box .col-md-3 {
    padding: 0 5px;
}

.pim-admin-nav .nav-stacked > li a {
    padding: 6px 10px;
}

.pim-admin-nav .panel-body {
    background: #eeeeee;
}

@media (min-width: 1200px) {
    .pim-admin-content {
        padding-left: 0;
    }
}

.pim-admin-content h2 {
    line-height: inherit;
}

.pim-content .categoryFooter {
    padding-top: 0;
    font-size: 0.95em;
    color: #737373;
    border: 0;
}

.pim-content .pagination {
    margin-top: 0;
    margin-bottom: 45px;
}

.pim-content .pagination > .active > a,
.pim-content .pagination > .active > a:focus,
.pim-content .pagination > .active > a:hover,
.pim-content .pagination > .active > span,
.pim-content .pagination > .active > span:focus,
.pim-content .pagination > .active > span:hover {
    background-color: #34495e;
    border-color: #283949;
    color: #fff;
}

.pim-content .pagination > li > a,
.pim-content .pagination > li > span {
    color: #283949;
}

.pd-meta {
    margin-top: 40px;
}

.pd-meta .btn {
    width: 100%;
    background: #f1f1f1;
    font-size: 1em;
    padding: 8px 12px;
}

.pd-meta .btn-dark {
    background-color: #34495e;
    color: #FFFFFF;
}
.pd-meta .btn-dark:hover {
    background-color: #f1f1f1;
    color: #283949;
}

.pd-meta .fa {
    float: left;
    font-size: 15px;
    margin-top: 2px;
}

.pim-plist-pg .text-center, 
.pim-pdetails-pg .text-center {
    text-align: center;
}

.pim-details .img-lg {
    margin: auto;
    padding: 25px 0;
}

.pd-meta .col-xs-6:first-child {
    padding-right: 0px;
}

@media (max-width: 770px) {

    .pd-meta .fa {
        display: none;
    }
    .pd-tab .nav-tabs li {
        min-width: 50%;
        border-bottom: 1px solid #dadada;
    }
}


.pd-tab .nav-tabs > li a {
    text-transform: none;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: normal;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 15px 8px 15px;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pd-tab .nav-tabs > li.active > a,
.pd-tab .nav-tabs > li.active > a:hover,
.pd-tab .nav-tabs > li.active > a:focus,
.pd-tab .nav-tabs > li:hover > a {
    border: 1px solid #ddd;
    margin-left: -1px;
    background-color: #34495e;
    color: #FFFFFF;
}

.pd-tab .table th {
    border: 0;
    color: #647280;
}

.pd-tab .table td {
    line-height: 1.6em;
}

.m-load {
    color: #283949;
    border: 1px solid #283949;
    padding: 7px 35px;
}
.pim-pin {
    margin-bottom: 10px;
}
.pim-pin .nav-pills>li+li {
    margin-left: 0;
}

.pim-pin li a {
    border-radius: 0;
    padding: 3px 10px;
    border: 1px solid #ddd;
    margin: 2px 4px 2px 0;
}

.pim-pin .glyphicon {
    font-size: 11px;
    font-weight: 600;
    margin-right: 7px;
    opacity: .5;
}

    .pim-pin .glyphicon-pencil {
        margin: 0 0 0 7px;
        opacity: 1;
    }


.bottom-bar-fx {
    background: #0560af;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    right: 0;
    padding: 0;
}

.bottom-bar-fx ul {
    margin: 0;
}

.bottom-bar-fx ul a {
    padding: 15px 20px;
    display: block;
    color: #bdc3c7
}

.bottom-bar-fx ul a .fa {
    float: left;
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
}

@media (max-width: 1300px) {
    .bottom-bar-fx .container {
        width: 100%;
    }
}

.bottom-bar-fx ul a:hover {
    Background: rgba(255, 255, 255, 0.10);
}

.p-caption {
    position: absolute;
    background: rgba(197, 197, 197, 0.8);
    display: block;
    width: 100%;
    top: 0;
    left: 0px;
    z-index: 99;
    padding: 78px 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .bottom-bar-fx ul a {
        padding: 13px 0px 13px 0;
    }

    .bottom-bar-fx .col-md-6 {
        text-align: center;
        padding: 5px 0 10px;
    }

    .bottom-bar-fx .col-xs-6:first-child {
        width: 55%;
    }

    .bottom-bar-fx .col-xs-6:last-child {
        width: 45%;
    }
}

.pim-img-thumb {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
    max-width: 100%;
    height: 158px;
    margin: 25px;
}

.pim-img-large {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
    max-width: 100%;
    height: 311px;
    margin: 25px;
}

.pim-sidebar .rtble {
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: -1px;
}

.pim-sidebar .rtble.active,
.pim-sidebar .rtble:hover {
    background: #34495e;
    border: 1px solid #34495e;
}

.pim-sidebar .rtble.active a,
.pim-sidebar .rtble:hover a {
    color: #fff;
}

.rtble .pim-sthumb {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
    max-width: 100%;
    height: 45px;
    margin: 5px 0;
}


/* width */
.pim-pdetails-pg ::-webkit-scrollbar,
.pim-plist-pg ::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.pim-pdetails-pg ::-webkit-scrollbar-track,
.pim-plist-pg ::-webkit-scrollbar-track {
    background: #eeeeee;
}

/* Handle */
.pim-pdetails-pg ::-webkit-scrollbar-thumb,
.pim-plist-pg  ::-webkit-scrollbar-thumb{
    background: #cccccc;
}

/* Handle on hover */
.pim-pdetails-pg ::-webkit-scrollbar-thumb:hover,
.pim-plist-pg  ::-webkit-scrollbar-thumb:hover{
    background: #555;
}

/*  PIM Collection modal */
.pim-collections-modal .pim-img-thumb {
    height:50px;
    margin:5px;
}

.pim-collections-modal .cart-product-id,
.pim-collections-modal .cart-description {
    text-align: left;
}


@media (min-width: 768px) {
    #createCategory .modal-dialog {
        width: 900px;
        top: 20px;
        margin: 30px auto;
    }
}

#createCategory .modal-title {
    margin: 7px 0;
    padding: 0;
}

.m-create-category .pdtx-5 {
    padding-top: 7px;
}


#createCategory .m-create-category .form-control {
    border: 1px solid #ccc;
}

.m-create-category .checkbox,
.m-create-category .radio {
    margin-top: 0;
}

.m-create-category .checkbox label,
.m-create-category .radio label {
    padding-left: 0;
}

/* draggable targets */
.m-create-category [data-draggable="target"] {
    float: left;
    list-style-type: none;
    width: 100%;
    height: 30.0em;
    overflow-y: auto;
    margin: 0 0.5em 0.5em 0;
    padding: 15px;
    border: 1px solid #888;
    border-radius: 0.2em;
    background: #f6f6f6;
    color: #555;
}

/* draggable items */
.m-create-category [data-draggable="item"] {
    display: block;
    list-style-type: none;
    margin: 0 0 2px 0;
    padding: 0.2em 0.4em;
    border-radius: 0.2em;
    line-height: 1.3;
}

.m-create-category .mvitem {
    cursor: move;
}

.m-create-category [data-draggable="item"]:hover {
    background: #fff;
}

.m-create-category .form-group {
    margin-bottom: 10px;
}

.tbl-plist-manage th {
    text-align: left;
}

.pim-td-action {
    text-align: center;
    padding: 3px !important;
}

.pim-td-action svg {
    width: 20px;
    height: 20px;
    margin-top: 5px;
}

.pim-pdetails-pg .fa.fa-refresh,
.pim-plist-pg .fa.fa-refresh {
    font-size: 18px;
    display: block;
}


#exportProductDetails {
    margin-top: 20px;
}

#exportProductDetails .modal-title  {
    padding: 5px 0;
}

.pim.tree-view-wrapper {
    list-style: none;
}

.pim.tree-view-wrapper .fa-plus-square {
    cursor: pointer;
    margin-right: 0;
    font-size: 16px;
    color: #666;
}

.pim.tree-view-wrapper .fa-plus-square:hover {
       color: #333;
}

.pim.tree-view-wrapper {
    padding-left: 20px;
}

.pim.tree-view-wrapper li ul {
    list-style: none;
    margin-bottom: 10px;
}

.pim.tree-view-wrapper .checkbox {
    display: inline;
}

.pim.tree-view-wrapper li label {
    margin-bottom: 3px;
    padding-left: 8px;
    font-weight: 600;
}

.pim.tree-view-wrapper li ul li label {
    font-weight: normal;
    color: #666;
}

.pim.tree-view-wrapper .tree-checkbox {
    margin-right: 7px;
    margin-left: 5px;
}


.pim-sidebar .fa-arrow-left {
    float: left;
    font-size: 13px;
    margin-top: 4px;
}

.pim-sidebar .plist-by-cat {
    max-height: 35vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .pim-sidebar .plist-by-cat {
        max-height: 75vh;
        overflow-y: auto;
    }
}

.pim-sidebar .plist-by-cat h4 {
    padding: 5px 0 8px 0;
    color: #34495e;
}

@media (max-width: 768px) {
    
    .pim-sidebar #rtble {
        height: 0px;
    }
}

.tab-info-group {
    margin-bottom: 15px;
}


.pp-treeview {
    padding: 5px 30px 30px;
}

.pp-treeview .cell-name {
    position: relative;
}


.pp-treeview input[type=checkbox].ng-empty.intermediate:before {
    position: absolute;
    top: 4px;
    left: 25px;
    content: "_";
    line-height: 0;
    font-weight: bolder;
    font-size: 18px;
}

.pp-treeview input[type=checkbox].ng-not-empty.intermediate:before {
    display: none;
}

.pp-treeview input[type=checkbox] {
    display: inline;
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

.pp-treeview .table-nested .indent {
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .sscreen-only {
        display: none;
    }
}

.pim-admin-nav .nav-stacked > li a.active {
    background: #fff;
    font-weight: 600;
    border-radius: 0;
}

.pim-admin-content .loader {
    width: 50px;
    margin: 0 auto;
}
.pim-admin-content .loader .fa-refresh {
    font-size: 18px;
}

.input-txt-sm {
    border: 1px solid #BDC3C7 !important;
    height: 30px !important;
}

.tbl-plist-manage th.text-center {
    text-align: center !important;
}