@charset 'UTF-8';
/* Slider */

/* Arrows */

.slick-slide{
    position: relative;
}

.slick-prev,
.slick-next
{
    width: 32px;
    height: 32px;
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 0;

    display: block;

    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    opacity: 0.8;
}

.slick-prev:hover,
.slick-next:hover{
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev
{
    left: -25px;
    background-repeat: no-repeat;
}

.slick-next
{
    right: -25px;
    background-repeat: no-repeat;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -15px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

	text-align: right;
	
	z-index: 801;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 6px;
    height: 6px;
    margin: 0 0 0 3px;
    padding: 0;
    min-height: auto !important;
    cursor: pointer;
    background-color: #1b3b5c;
    border-radius: 50%;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 8px;
    height: 8px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    content: '';
    text-align: center;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active
{
    background-color: #ed8c27;
    border-radius: 50%;
}
