/*///////////////////////////////////////////////////////
// UI / UX Elements
//////////////////////////////////////////////////////*/

@media (hover: hover) and (pointer: fine) {
    svg g[aria-label="BWIrb dich jetzt!"]  path {
        fill: #FF003A;
        transition: fill 250ms;
    }

    /*svg:hover g[aria-label="BWIrb dich jetzt!"] path {
        fill: #FF003A;
        transition: fill 250ms;
    }*/
}

/*///////////////////////////////////////////////////////
// Tag Items Round
//////////////////////////////////////////////////////*/
.tagItemsRound {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    transform: none;
    text-align: left;
    margin: 0;
    transition: all 500ms ease-in-out;
}
.tagItemsRound li {
    position: relative;
    /*width: auto;
    height: auto;*/
    cursor: pointer;
    margin: 0 10px 10px 0;
    text-align: center;
    transition: all 250ms ease-in-out;
    border-radius: 20px;
}
/*.tagItemsRound li:before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-left: -100%;
    transition: margin-left 250ms ease-in;
}*/
.tagItemsRound li.active {
    margin-left: 0;
    background: #FF003A;
}
.tagItemsRound li.active span {
    color: #FFFFFF;
    border-color: #ff003a;
}
.tagItemsRound li span {
    position: relative;
    z-index: 20;
    display: block;
    overflow: hidden;
    font-size: 1.5rem;
    white-space: nowrap;
    padding: 5px 15px;
    color: #404040;
    border: 1px solid rgba(56,56,56,0.1);
    border-radius: 20px;
    transition: all 250ms ease-in-out;
}
.tagItemsRound.white li {
    color: #ffffff;
}
.tagItemsRound.white li span {
    color: #ffffff;
    border: 1px solid #ffffff;
}
.flyoutWrap .tagItemsRound li {
    border: 0;
}

.tagItemRound {
    display: inline-block;
    background-color: transparent;
    color: #404040;
    border: 1px solid rgba(56,56,56,0.1);
    padding: 4px 10px 5px 10px;
    border-radius: 999em;
    cursor: pointer;
}
.tagItemRound.active {
    background-color: #FF003A;
    border: 1px solid #FF003A;
    color: #FFFFFF;
}
@media (max-width: 767px) {
    .tagItemsRound li span {
        font-size: 1rem;
        padding: 2px 10px;
    }
    .tagItemsRound li {
        margin: 0 5px 10px 0;
    }
}

/*///////////////////////////////////////////////////////
// Links
//////////////////////////////////////////////////////*/
.arrowLinkRight {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}
/*.arrowLinkRight:before {
    content: "";
    position: absolute;
    top: calc(100% - 5px);
    width: 0;
    height: 1px;
    background-color: rgba(255,0,58,0.3);
    left: 0;
    transition: width 250ms ease;
}*/
.linkStd {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #404040;
    padding: 8px 20px;
    border: 1px solid #D4D4D4;
    border-radius: 999em;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    transition: background-color 250ms ease, color 250ms ease, border 250ms ease;
}
.icon-arrow-circle-right1 {
    position: relative;
    top: 4px;
    font-size: 24px;
}

/* AnimatedArrowLinkRight*/
.arrowLinkRight svg {
    width: 31px !important;
    height: 31px !important;
}
.iconAnimation svg path {

}


@media (hover: hover) and (pointer: fine) {
    .animatedArrowLinkRight:hover .arrowLinkRight:before {
        width: calc(100% - 41px);
        transition: width 250ms ease;
    }
    .underlined {
        display: inline;
        background-image: linear-gradient(rgba(255,0,58,1), rgba(255,0,58,1));
        background-position: 0% 100%;
        background-repeat: no-repeat;
        background-size: 0% 2%;
        transition: background-size 600ms;
    }
    .underlined:hover, .animateIcon:hover .underlined {
        background-size: 100% 3%;
        opacity: 0.8;
    }
    .linkStd:hover {
        background-color: #ff003a;
        border: 1px solid #ff003a;
        color: #ffffff;
        transition: background-color 250ms ease, color 250ms ease, border 250ms ease;
    }
}
@media (max-width: 767px) {
    .linkStd  {
        font-size: 1.125rem;
        /*font-weight: 400;*/
    }
}


/*///////////////////////////////////////////////////////
// Buttons
//////////////////////////////////////////////////////*/
.iconClose {
    width: 20px;
    height: 20px;
    background-image: url('../img/icons/icon_close.svg');
    background-repeat: no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
}
.svgGrey {
    stroke: #98989B;
    stroke-width: 2px;
    fill: none;
}
.svgRed {
    stroke: #FF003A;
    stroke-width: 2px;
    fill: none;
}


svg:hover .svgGrey {
    animation: dash 0.5s;
}
svg:hover .svgRed {
    animation: dash 1s;
}
@keyframes dash {
    0%{
        stroke-dashoffset: 0;
        stroke-dasharray: 100,200;
    }
    100% {
        stroke-dashoffset: 100;
        stroke-dasharray: 100,0;
    }
}
.btn {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 150ms;
    -moz-transition: all 150ms;
    -o-transition: all 150ms;
    transition: all 150ms;
    cursor: pointer;
    white-space: nowrap;
}
.btnOutline {
    background: transparent;
    border: 1px solid #fff;
    color: #404040;
    border-radius: 999em;
    padding: 12px 24px;
}
btnOutline.redOutline {
    border: 1px solid #ED0039;
}
.btnStd {
    display: inline-block;
    text-decoration: none;
    padding: 18px 70px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #404040;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 150ms;
    -moz-transition: all 150ms;
    -o-transition: all 150ms;
    transition: all 150ms;
}
.iconArrowCircle {
    background: url("../img/icons/icon_arrow_circle1.svg") no-repeat center center / contain;
    display: inline-block;
    width: 24px;
    height: 24px;
    padding-left: 10px;
}
.btnCloseRound {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(64,64,64,0.9);
}
.btnCloseRound {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(64,64,64,0.9);
}
.btnCloseRound.reverse {
    background-color: rgba(255,255,255,0.9);
}
.btnCloseRound svg {
    width: 14px;
    height: 14px;
}
.btnCloseRound.reverse svg line {
    stroke: #404040;
}
.btnCloseRound, .btnCloseRound svg, .btnCloseRound svg line {
    transition: all 250ms;
}
@media (hover: hover) and (pointer: fine) {
    .btnStd:hover {
        background: #D8D8D8;
        color: #0F0F0F;
    }
    .btnOutline:hover {
        background-color: #FF003A;
        border: 1px solid #FF003A !important;
        color: #fff;
    }
    ul li .tagItemRound:hover {
        background-color: #FF003A;
        border: 1px solid #FF003A;
        color: #FFFFFF;
    }
    .btnCloseRound:hover {
        background-color: rgba(64,64,64,0.4);
    }
    .btnCloseRound:hover line {
        stroke: #404040;
    }
    .btnCloseRound.reverse:hover {
        background-color: rgba(64,64,64,0.9);
    }
    .btnCloseRound.reverse:hover svg line {
        stroke: #ffffff;
    }
    .btnCloseRound:hover svg {
        transform: scale(1.2);
    }
}
@media (max-width: 767px) {
    .btn {
        font-size: 1rem;
        line-height: 1.25rem;
    }
}


/*///////////////////////////////////////////////////////
// Backgrounds
//////////////////////////////////////////////////////*/
.bgWhite {
    background: #ffffff;
}
.bgGrey {
    background: #f6f6f6;
}
.bgGreyLight {
    background: #FAFAFA;
}
.bgDarkerGrey {
    background: #98989b;
}
.bgDarkGrey {
    background: #404040;
}
.bgRed {
    background: #ff003a;
}


/*///////////////////////////////////////////////////////
// Gradients & Colors
//////////////////////////////////////////////////////*/
.gradientOverlay:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 0;
}
.gradientBlackBottom:before {
    content: "";
    position: absolute;
    z-index: 20;
    width: 100%;
    top: calc(100% - 33.33%);
    height: 33.33%;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.gradBlack50:before {
    background: rgba(0,0,0,0.5);
}
.gradBlueRedTop:before {
    background: -moz-linear-gradient(top,  rgba(32,108,175,0.6) 0%, rgba(255,0,0,0.26) 60%, rgba(255,0,0,0.15) 80%, rgba(255,0,0,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(32,108,175,0.6) 0%,rgba(255,0,0,0.26) 60%,rgba(255,0,0,0.15) 80%,rgba(255,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(32,108,175,0.6) 0%,rgba(255,0,0,0.26) 60%,rgba(255,0,0,0.15) 80%,rgba(255,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#00ff0000',GradientType=0 );
}
.gradRedBlueTop:before {
    background: -moz-linear-gradient(top,  rgba(255,0,0,0.6) 0%, rgba(32,108,175,0.26) 60%, rgba(32,108,175,0.15) 80%, rgba(32,108,175,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,0,0,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(32,108,175,0.15) 80%,rgba(32,108,175,0) 100%);
    background: linear-gradient(to bottom,  rgba(255,0,0,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(32,108,175,0.15) 80%,rgba(32,108,175,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ff0000', endColorstr='#00206caf',GradientType=0 );
}
.gradBlueRedBottom:before {
    background: -moz-linear-gradient(top,  rgba(255,0,0,0) 0%, rgba(255,0,0,0.15) 20%, rgba(255,0,0,0.26) 70%, rgba(32,108,175,0.6) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,0,0,0) 0%,rgba(255,0,0,0.15) 20%,rgba(255,0,0,0.26) 70%,rgba(32,108,175,0.6) 100%);
    background: linear-gradient(to bottom,  rgba(255,0,0,0) 0%,rgba(255,0,0,0.15) 20%,rgba(255,0,0,0.26) 70%,rgba(32,108,175,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff0000', endColorstr='#99206caf',GradientType=0 );
}
.gradRedBlueBottom:before {
    background: -moz-linear-gradient(top,  rgba(32,108,175,0) 0%, rgba(32,108,175,0.15) 20%, rgba(32,108,175,0.26) 70%, rgba(255,0,0,0.6) 100%);
    background: -webkit-linear-gradient(top,  rgba(32,108,175,0) 0%,rgba(32,108,175,0.15) 20%,rgba(32,108,175,0.26) 70%,rgba(255,0,0,0.6) 100%);
    background: linear-gradient(to bottom,  rgba(32,108,175,0) 0%,rgba(32,108,175,0.15) 20%,rgba(32,108,175,0.26) 70%,rgba(255,0,0,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00206caf', endColorstr='#99ff0000',GradientType=0 );
}


.gradRedBlueTopRight:before {
    background: -moz-linear-gradient(45deg,  rgba(255,0,0,0.6) 0%, rgba(255,0,0,0.26) 60%, rgba(144,54,88,0.15) 80%, rgba(32,108,175,0) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.26) 60%,rgba(144,54,88,0.15) 80%,rgba(32,108,175,0) 100%);
    background: linear-gradient(45deg,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.26) 60%,rgba(144,54,88,0.15) 80%,rgba(32,108,175,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ff0000', endColorstr='#00206caf',GradientType=1 );
}
.gradBlueRedBottomleft:before {
    background: -moz-linear-gradient(45deg,  rgba(255,0,0,0.6) 0%, rgba(32,108,175,0.26) 60%, rgba(32,108,175,0.15) 80%, rgba(32,108,175,0) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(255,0,0,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(32,108,175,0.15) 80%,rgba(32,108,175,0) 100%);
    background: linear-gradient(45deg,  rgba(255,0,0,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(32,108,175,0.15) 80%,rgba(32,108,175,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ff0000', endColorstr='#00206caf',GradientType=1 );
}
.gradBlueRedTopRight:before {
    background: -moz-linear-gradient(45deg,  rgba(255,0,0,0) 0%, rgba(255,0,0,0.15) 20%, rgba(255,0,0,0.26) 40%, rgba(32,108,175,0.6) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(255,0,0,0) 0%,rgba(255,0,0,0.15) 20%,rgba(255,0,0,0.26) 40%,rgba(32,108,175,0.6) 100%);
    background: linear-gradient(45deg,  rgba(255,0,0,0) 0%,rgba(255,0,0,0.15) 20%,rgba(255,0,0,0.26) 40%,rgba(32,108,175,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff0000', endColorstr='#99206caf',GradientType=1 );
}
.gradBlueRedBottomleft:before {
    background: -moz-linear-gradient(45deg,  rgba(32,108,175,0.6) 0%, rgba(32,108,175,0.26) 60%, rgba(144,54,88,0.15) 80%, rgba(255,0,0,0) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(144,54,88,0.15) 80%,rgba(255,0,0,0) 100%);
    background: linear-gradient(45deg,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.26) 60%,rgba(144,54,88,0.15) 80%,rgba(255,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#00ff0000',GradientType=1 );
}


.gradRedTop:before {
    background: -moz-linear-gradient(top,  rgba(255,0,0,0.6) 0%, rgba(255,0,0,0.3) 27%, rgba(255,0,0,0) 60%, rgba(255,0,0,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.3) 27%,rgba(255,0,0,0) 60%,rgba(255,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.3) 27%,rgba(255,0,0,0) 60%,rgba(255,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ff0000', endColorstr='#00ff0000',GradientType=0 );
}
.gradRedBottom:before {
    background: -moz-linear-gradient(top,  rgba(255,0,0,0) 0%, rgba(255,0,0,0) 40%, rgba(255,0,0,0.3) 73%, rgba(255,0,0,0.6) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,0,0,0) 0%,rgba(255,0,0,0) 40%,rgba(255,0,0,0.3) 73%,rgba(255,0,0,0.6) 100%);
    background: linear-gradient(to bottom,  rgba(255,0,0,0) 0%,rgba(255,0,0,0) 40%,rgba(255,0,0,0.3) 73%,rgba(255,0,0,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff0000', endColorstr='#99ff0000',GradientType=0 );
}
.gradRedTopRight:before {
    background: -moz-linear-gradient(30deg,  rgba(255,0,0,0) 0%, rgba(255,0,0,0) 40%, rgba(255,0,0,0.3) 73%, rgba(255,0,0,0.6) 100%);
    background: -webkit-linear-gradient(30deg,  rgba(255,0,0,0) 0%,rgba(255,0,0,0) 40%,rgba(255,0,0,0.3) 73%,rgba(255,0,0,0.6) 100%);
    background: linear-gradient(30deg,  rgba(255,0,0,0) 0%,rgba(255,0,0,0) 40%,rgba(255,0,0,0.3) 73%,rgba(255,0,0,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff0000', endColorstr='#99ff0000',GradientType=1 );
}
.gradRedBottomLeft:before {
    background: -moz-linear-gradient(30deg,  rgba(255,0,0,0.6) 0%, rgba(255,0,0,0.3) 27%, rgba(255,0,0,0) 60%, rgba(255,0,0,0) 100%);
    background: -webkit-linear-gradient(30deg,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.3) 27%,rgba(255,0,0,0) 60%,rgba(255,0,0,0) 100%);
    background: linear-gradient(30deg,  rgba(255,0,0,0.6) 0%,rgba(255,0,0,0.3) 27%,rgba(255,0,0,0) 60%,rgba(255,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ff0000', endColorstr='#00ff0000',GradientType=1 );
}
.gradBlueTop:before {
    background: -moz-linear-gradient(top,  rgba(32,108,175,0.6) 0%, rgba(32,108,175,0.3) 27%, rgba(32,108,175,0) 60%, rgba(32,108,175,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.3) 27%,rgba(32,108,175,0) 60%,rgba(32,108,175,0) 100%);
    background: linear-gradient(to bottom,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.3) 27%,rgba(32,108,175,0) 60%,rgba(32,108,175,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#99206caf',GradientType=0 );
}
.gradBlueBottom:before {
    background: -moz-linear-gradient(top,  rgba(32,108,175,0) 0%, rgba(32,108,175,0) 40%, rgba(32,108,175,0.3) 73%, rgba(32,108,175,0.6) 100%);
    background: -webkit-linear-gradient(top,  rgba(32,108,175,0) 0%,rgba(32,108,175,0) 40%,rgba(32,108,175,0.3) 73%,rgba(32,108,175,0.6) 100%);
    background: linear-gradient(to bottom,  rgba(32,108,175,0) 0%,rgba(32,108,175,0) 40%,rgba(32,108,175,0.3) 73%,rgba(32,108,175,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#99206caf',GradientType=0 );
}
.gradBlueTopRight:before {
    background: -moz-linear-gradient(30deg,  rgba(32,108,175,0) 0%, rgba(32,108,175,0) 40%, rgba(32,108,175,0.3) 73%, rgba(32,108,175,0.6) 100%);
    background: -webkit-linear-gradient(30deg,  rgba(32,108,175,0) 0%,rgba(32,108,175,0) 40%,rgba(32,108,175,0.3) 73%,rgba(32,108,175,0.6) 100%);
    background: linear-gradient(30deg,  rgba(32,108,175,0) 0%,rgba(32,108,175,0) 40%,rgba(32,108,175,0.3) 73%,rgba(32,108,175,0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#99206caf',GradientType=1 );
}
.gradBlueBottomLeft:before {
    background: -moz-linear-gradient(30deg,  rgba(32,108,175,0.6) 0%, rgba(32,108,175,0.3) 27%, rgba(32,108,175,0) 60%, rgba(32,108,175,0) 100%);
    background: -webkit-linear-gradient(30deg,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.3) 27%,rgba(32,108,175,0) 60%,rgba(32,108,175,0) 100%);
    background: linear-gradient(30deg,  rgba(32,108,175,0.6) 0%,rgba(32,108,175,0.3) 27%,rgba(32,108,175,0) 60%,rgba(32,108,175,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99206caf', endColorstr='#99206caf',GradientType=1 );
}

.gradDarkGreyBottom:before {
    background: -moz-linear-gradient(0deg, rgba(60,65,67,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(60,65,67,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(60,65,67,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#404040",endColorstr="#ffffff",GradientType=1);
}
.gradGreyBottom:before {
    background: -moz-linear-gradient(0deg, rgba(152,152,155,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(152,152,155,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(152,152,155,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#98989b",endColorstr="#ffffff",GradientType=1);
}
.gradLightGreyBottom:before {
    background: -moz-linear-gradient(0deg, rgba(249,249,249,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(249,249,249,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(0deg, rgba(249,249,249,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9f9f9",endColorstr="#ffffff",GradientType=1);
}


/*///////////////////////////////////////////////////////
// Custom Slick Slider Styles
//////////////////////////////////////////////////////*/
.sliderNav {
    position: absolute;
    right: 0;
    top: -7px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.slidePrevRound, .slideNextRound {
    position: relative;
    width: 52px;
    height: 52px;
    cursor: pointer;
    transition: opacity 150ms;
}
.slidePrevRound {
    margin-right: 10px;
}
.slidePrev, .slideNext, .slick-prev, .slick-next {
    position: absolute;
    z-index: 50;
    top: 50%;
    /*width: 64px;
    height: 32px;*/
    width: 52px;
    height: 52px;
    margin-top: -16px;
    background-repeat: no-repeat;
    background-size: 44px 32px;
    cursor: pointer;
    transition: opacity 150ms;
    text-indent: -999em;
}
.slidePrev, .slick-prev {
    left: -100px;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.slideNext, .slick-next {
    right: -100px;
}
.slidePrev.slick-disabled, .slideNext.slick-disabled,
.slick-prev.slick-disabled, .slick-next.slick-disabled {
    opacity: 0;
    user-select: none;
    cursor: inherit;
}
.slideNext svg, .slidePrev svg {
    float: left;
}
.slick-dotted {
    padding-bottom: 83px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
}
.slick-dots li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 50%;
}
/*.slick-dots li.slick-active {
    border: 1px solid #808C95;
}*/
.slick-dots li:before {
    content: "";
    position: absolute;
    border: 1px solid #808C95;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0, 0);
    transition: transform 300ms;
}
.slick-dots li.slick-active:before {
    transform: scale(1, 1);
}
.slick-dots li button {
    position: absolute;
    background: #DEDEDE;
    border-radius: 50%;
    border: 0;
    font-size: 0;
    width: 45%;
    height: 45%;
    margin: 0;
    padding: 0;
    transition: all 300ms;
}
.slick-dots li.slick-active button {
    background: #808C95;
    width: 30%;
    height: 30%;
    margin-right: -1px;
}
/*.slick-dots li button:before {
    content: "";
    position: absolute;
    border: 1px solid #808C95;
    border-radius: 18px;
    line-height: 18px;
    border-collapse: collapse;
    width: 18px;
    height: 18px;
    margin: -10px 0 0 -10px;
    transform: scale(0, 0);
    transition: transform 300ms;
}
.slick-dots li.slick-active button:before {
    transform: scale(1, 1);
}*/
/*@media (max-width: 1660px) {
    .slidePrev, .slick-prev {
        left: -30px;
    }
    .slideNext, .slick-next {
        right: -30px;
    }
}
@media (max-width: 680px) {
    .slideNext, .slick-next {
        right: -25px;
    }
    .slick-dotted {
        padding-bottom: 53px;
    }
}*/
@media (max-width: 767px) {
    .sliderNav {
        display: none;
    }
    .slidePrev, .slideNext, .slick-prev, .slick-next {
        display: none !important;
    }
}




/*///////////////////////////////////////////////////////
// Listpoints
//////////////////////////////////////////////////////*/
.listPointNumber {
    position: absolute;
    left: 0;
    top: 3px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(56,56,56,0.1);
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1.25rem;
}
.listPointNumber .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.listPointNumber .firstPointNumber {
    position: relative;
    top: -4px;
    left: 3px;
}
.listPointNumber .pointNumberDivider {
    position: relative;
    top: 2px;
    font-size: 1rem;
    font-weight: bold;
}
.listPointNumber .lastPointNumber {
    position: relative;
    bottom: -4px;
    left: -3px;
}
