/*
	AnythingSlider v1.7+ Default (base) theme
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

/*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID to match your slider */
.pov-slider {
    width: 700px;
    height: 390px;
    list-style: none;
    /* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
    overflow-y: auto;
    overflow-x: hidden;
    /* black background makes fading less flashy */
    background: #fff;
}

    /* make sure active panel is visible */
    .pov-slider .panel {
        /*opacity: 0;
	filter: alpha(opacity = 0);*/
    }

        .pov-slider .panel.activePage {
            /*opacity: 1;
	filter: alpha(opacity = 100);*/
        }

/* Opera width restriction */
.anythingBase {
    max-width: 32766px;
}

/* put in for android? */
.anythingSlider {
    overflow: hidden;
}

/*****************
  SET COLORS HERE
 *****************/
/**** Default state (no keyboard focus) ****/
/* slider window - top & bottom borders, default state*/
div.anythingSlider .anythingWindow {
    border-top: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

/* Navigation buttons, default state */
div.anythingSlider .anythingControls ul a.cur, div.anythingSlider .anythingControls ul a {
    background: #777;
    color: #000;
}

/* start-stop button, stopped, default state */
.anythingControls .start-stop {
    background-color: #040;
    color: #fff;
}

    /* start-stop button, playing, default state */
    .anythingControls .start-stop.playing {
        background-color: #800;
    }

    /* start-stop button, default hovered text color (when visible) */
    .anythingControls .start-stop:hover, .anythingControls .start-stop.hover {
        color: #ddd;
    }

/**** Active State (slider has keyboard focus) ****/
/* slider window - top & bottom borders, active state */
div.anythingSlider.activeSlider .anythingWindow {
}

/* Navigation buttons, active state */
div.anythingSlider.activeSlider .anythingControls ul a.cur, div.anythingSlider.activeSlider .anythingControls ul a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #1a75cf;
    background-color: #edeef3;
    padding: 5px 25px;
    width: 125px;
    height: 50px;
}

/* start-stop button, stopped, active state */
.anythingControls .start-stop {
    background-color: #ccc;
    color: #333;
    font-family: Arial, helvetica, sans-serif;
    font-weight: bold;
}

    /* start-stop button, playing, active state */
    .anythingControls .start-stop.playing {
        background-color: #ccc;
    }

    /* start-stop button, active slider hovered text color (when visible) */
    .anythingControls .start-stop:hover, .anythingControls .start-stop.hover {
        color: #333;
    }

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */
div.anythingSlider {
    display: block;
    margin: 0 auto;
    overflow: visible !important; /* needed for Opera and Safari */
    position: relative;
    /* padding: 0 45px 0 45px; */
}

    /* anythingSlider viewport window */
    div.anythingSlider .anythingWindow {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
        border-left: 3px solid #ccc;
        border-right: 3px solid #ccc;
    }

/* anythingSlider base (original element) */
.anythingBase {
    background: transparent;
    list-style: none;
    position: absolute;
    overflow: visible !important;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

    /* all panels inside the slider */
    .anythingBase .panel {
        background: transparent;
        overflow: hidden;
        padding: 0;
        margin: 0;
        position: relative;
        display: block;
        float: left;
        zoom: 1;
    }

        .anythingBase .panel.vertical {
            float: none;
        }

        .anythingBase .panel .player {
            position: absolute;
            top: 0;
            left: 0;
        }

/* Navigation Arrows */
div.anythingSlider .arrow {
    top: 50%;
    position: absolute;
    display: block;
}

    div.anythingSlider .arrow a {
        display: block;
        height: 140px;
        margin: -70px 0 0 0; /* half height of image */
        width: 45px;
        text-align: center;
        outline: 0;
        background: url(../images/default.png) no-repeat;
    }

        /* hide text, target the span so IE7 doesn't text-indent the link */
        div.anythingSlider .arrow a span {
            display: block;
            text-indent: -9999px;
        }

/* back arrow */
div.anythingSlider .back {
    left: 0;
}

    div.anythingSlider .back a {
        background-position: left top;
    }

        div.anythingSlider .back a:hover, div.anythingSlider .back a.hover {
            background-position: left -140px;
        }

    div.anythingSlider .back.disabled {
        display: none;
    }

/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
/* forward arrow */
div.anythingSlider .forward {
    right: 0;
}

    div.anythingSlider .forward a {
        background-position: right top;
    }

        div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover {
            background-position: right -140px;
        }

    div.anythingSlider .forward.disabled {
        display: none;
    }

/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */

/* Navigation Links */
div.anythingSlider .anythingControls {
    outline: 0;
    display: none;
}

    div.anythingSlider .anythingControls ul {
        margin: 0;
        padding: 0;
        float: left;
    }

        div.anythingSlider .anythingControls ul li {
            display: inline;
        }

        div.anythingSlider .anythingControls ul a {
            font: 11px/18px Georgia, Serif;
            display: inline-block;
            text-decoration: none;
            padding: 2px 8px;
            height: 18px;
            margin: 0 5px 0 0;
            background-image: url(../images/default.png);
            background-position: center -288px;
            background-repeat: repeat-x;
            text-align: center;
            outline: 0;
        }

            div.anythingSlider .anythingControls ul a:hover {
                color: #ff6633;
                background-image: none;
            }

    /* Navigation size window */
    div.anythingSlider .anythingControls .anythingNavWindow {
        overflow: hidden;
        float: left;
    }

/* slider autoplay right-to-left, reverse order of nav links to look better */
div.anythingSlider.rtl .anythingControls ul a {
    float: right;
}

/* reverse order of nav links */
div.anythingSlider.rtl .anythingControls ul {
    float: left;
}

/* move nav link group to left */
div.anythingSlider.rtl .anythingWindow {
    direction: ltr;
    unicode-bidi: bidi-override;
}

/* div.anythingSlider.rtl .start-stop { float: right; } */
/* move start/stop button - in case you want to switch sides */
.pov-controls {
    top: 0 !important;
    border-left: 2px solid #ccc;
    padding-bottom: 5px !important;
}

.anythingControls {
    width: 117px;
    position: absolute;
    /*right: 0;*/
    left: 615px;
    top: 0;
    height: 45px;
}

    /* Autoplay Start/Stop button */
    .anythingControls .start-stop {
        background-image: url(../../images/nav-rightcorner.png);
        background-position: center -288px;
        background-repeat: repeat-x;
        padding: 2px 5px;
        width: 40px !important;
        margin: 0 auto;
        text-align: center;
        text-decoration: none;
        /* position:absolute; */
        z-index: 1001;
        outline: 0;
        border: 1px solid #999;
        /* right:30px; */
        height: 15px !important;
        font-weight: bold;
        /* top:462px; */
    }

        /* hide cell shading on hover - makes the button appear to come forward */
        .anythingControls.start-stop:hover, .anythingControls .start-stop.hover {
            background-image: none;
        }

    /* probably not necessary, but added just in case */
    div.anythingSlider, div.anythingSlider .anythingWindow, .anythingControls .anythingControls ul a, div.anythingSlider .arrow a, .anythingControls .start-stop {
        transition-duration: 0;
        -o-transition-duration: 0;
        -moz-transition-duration: 0;
        -webkit-transition-duration: 0;
    }

/* Adjustment for the slider to push out pagebuilder columns */
[data-ux-pagebuilder="Column"] {
    width: 100%;
}
