@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}

/* Arrows */
.slick-prev,
.slick-next
{
    position: absolute;
    top: 42%;
    transform: translateY(-42%);
    display: block;
    width: auto;
    padding: 2vw 1.5vw;
    border: none;
    background-color: transparent;
    transition: 0.6s ease;
    cursor: pointer;
    user-select: none;
    z-index: 1;
}

/* Position the "next button" to the left */
.slick-prev
{
    left: 0;
    border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.slick-next
{
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slick-prev:hover, .slick-next:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}

.slick-prev::before {
  	content: '';
}

.slick-prev::after
{
    font-family: FontAwesome;
  	content: '\f104';
  	font-size: 2vw;
    font-weight: bold;
  	position: absolute;
  	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
  	color: whitesmoke;
}

.slick-next::after
{
    font-family: FontAwesome;
  	content: '\f105';
  	font-size: 2vw;
    font-weight: bold;
  	position: absolute;
  	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
  	color: whitesmoke;
}

/* Dots */
.slick-dots
{
    position: relative;
    display: block;
    width: auto;
    padding: 0.5%;
    margin: 0;
    outline: none;
    list-style: none;
    text-align: center;
    box-sizing: border-box;
    font-size: 0; /* This style delete the extra space using display: inline-block for .slick-dots li */
}

.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 1vw;
    height: 1vw;
    margin: 0 5px;
    padding: 0;
    outline: none;
    cursor: pointer;
    font-size: 0; /* This style delete the extra space using display: inline-block for .slick-dots li */
    box-sizing: border-box;
}

/* The dots/bullets/indicators */
.slick-dots li button
{
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin: 0; /*0 2px*/
    background-color: #bbb;
    font-size: 0;
    color: #bbb;
    border-radius: 50%;
    /*border: 1px solid blue;*/
    display: block;
    transition: background-color 0.6s ease;
    box-sizing: border-box;
}

.slick-dots li button:hover
{
    background-color: #717171;
}

.slick-dots li.slick-active button
{
    background-color: #717171;
}

@media only screen and (max-width:650px) {
    
    /* Arrows */
    .slick-prev,
    .slick-next
    {
        top: 33%;
        transform: translateY(-33%);
        padding: 4vw 3vw;
    }

    .slick-prev::after
    {
        font-size: 3.75vw;
    }

    .slick-next::after
    {
        font-size: 3.75vw;
    }

    /* Dots */
    .slick-dots
    {
        padding: 1%;
    }

    .slick-dots li
    {
        width: 2vw;
        height: 2vw;
    }

}