/* IMAGE SLIDESHOW PORTLET (Bildspel)
---------------------------------------------------------------------------- */

.sv-imageslideshow-portlet {
    padding-bottom: 36px;
}

.sv-carousel {
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/*.sv-carousel:focus {
    outline: #000 solid 1px;
    outline-offset: 4px;
}*/

.sv-imgslideshow-item__description {
    display: none;
}

/*.sv-carousel__nav {}*/

.sv-carousel__navbtn-prev, 
.sv-carousel__navbtn-next {
    position: absolute;
    top: 50%;
    margin: -24px auto 0;
    background-color: transparent;
    padding-top: 48px;
    width: 38px;
    height: 48px;
    border-radius: 0;
    border: 0px solid #fff;
    overflow: hidden;
    opacity: 1;
    transition: all .5s ease 0s;
    color: transparent;
}

.sv-carousel__navbtn-prev {
    left: 0px;
}

.sv-carousel__navbtn-next {
    right: 0px;
}

.sv-carousel__navbtn-prev:after, 
.sv-carousel__navbtn-next:after {
    top: 0px;
    border: 0;
    height: auto;
    width: auto;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-width: 0px;
    margin-top: 0px;

    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 48px!important;
    color: white!important;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;

    text-shadow: #000 0px 0px 12px;
}

.sv-carousel__navbtn-prev:after {
    right: -5px;
    border-right-color: transparent;
    content: "chevron_left"!important;
}

.sv-carousel__navbtn-next:after {
    left: -5px;
    border-left-color: transparent;
    content: "chevron_right"!important;
}

.sv-editing-mode .sv-carousel .sv-carousel__navbtn-prev, 
.sv-carousel:hover .sv-carousel__navbtn-prev, 
.sv-editing-mode .sv-carousel .sv-carousel__navbtn-next, 
.sv-carousel:hover .sv-carousel__navbtn-next {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.sv-carousel__navbtn-prev, .sv-carousel__navbtn-next, .sv-carousel__dot {
    cursor: pointer;
    user-select: none;
}

.sv-carousel *, .sv-carousel *:before, .sv-carousel *:after {
    box-sizing: inherit;
}

.sv-carousel__dots {
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.sv-carousel__dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    transition: all .25s;
}

.sv-carousel__dot.sv-carousel__dot--active, 
.sv-carousel__dot:hover {
    background-color: #2c2c2c;
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}