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

.slick-dots
{
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}
@media all and (max-width: 639px)
{
    .slick-dots{width: 240px; margin: auto; left: 0; right: 0;}
}


.slick-active ul
{
    list-style: none;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 12px;
    padding: 0;
    cursor: pointer;

    -webkit-border-radius: 50%;

    -moz-border-radius: 50%;

    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    -webkit-transition: box-shadow 0.3s ease;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
}
.slick-dots li button
{
    display: block;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border:none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #6a4244;
    text-indent: -999em; /* make the text accessible to screen readers */
    cursor: pointer;
    position: absolute;

    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    -moz-transition: background-color 0.3s ease, transform 0.3s ease, -moz-transform 0.3s ease;
    -o-transition: background-color 0.3s ease, transform 0.3s ease, -o-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
}


.slick-dots li.slick-active button {
    background-color: #ef5c4a;
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
}

.slick-dots li.slick-active {
    -webkit-box-shadow: 0 0 0 2px #ef5c4a;
    -moz-box-shadow: 0 0 0 2px #ef5c4a;
    box-shadow: 0 0 0 2px #ef5c4a;
}

