.nslider {
    min-width: 200px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
	height: 835px;
}

.nslider .nslider-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: left 0.3s ease-out;
    -moz-transition: left 0.3s ease-out;
    -ms-transition: left 0.3s ease-out;
    -o-transition: left 0.3s ease-out;
    transition: left 0.3s ease-out;
}

.nslider .nslider-slide {
    min-width: 200px;
    width: 100%;
    padding: 20px;
	position: relative;
	height: 795px;
}

.nslider .nslider-button {
    position: absolute;
    background: black;
	color: white;
	fill: white;
    text-align: center;
    padding: 6px;
    border-radius: 50%;
	width: 44px;
	height: 44px;
    bottom: 11px;
    cursor: pointer;
	z-index:999;
	border: 2px solid #8F8E8F;
 
}

.nslider-button path {
	fill: white;
}

.nslider .nslider-button:hover {
    box-shadow: 0 0 7px rgba(36, 36, 36, 0.15);
}

.nslider .nslider-button > * {
    width: 26px;

}

.nslider .nslider-button.nslider-button-prev {
    left: 5px;
}

.nslider .nslider-button.nslider-button-next {
    right: 5px;
}

.nslider .nslider-dots {
    xwidth: 100%;
    xheight: 40px;
    position: absolute;
    bottom: 10px;
    xdisplay: flex;
    xjustify-content: center;
    xalign-items: center;
	
	width: 100%;
	text-align: center;
	pointer-events: none;
	z-index:999;
}

.dotholder {
    background: green;
    display: inline-block;
    text-align: center;
	background: black;
	padding: 14px;
	padding-top: 10px;
	border-radius: 40px 40px 40px 40px;
	border: 2px solid #8F8E8F;
	pointer-events: auto;
	
}



.nslider .nslider-dots .nslider-dot {
    height: 24px;
    width: 24px;
    border-radius: 100%;
    background: transparent;
	
	border: 3px solid #ffffff;
    margin-right: 12px;
    opacity: 0.75;
    cursor: pointer;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
	
	display: inline-block;
	box-sizing: border-box;
}

.locked {
	background:white !important;
    opacity: 0.25 !important;
	cursor: default !important;
}

.nslider .nslider-dots .nslider-dot:last-child {
    margin-right: 0;
}

.nslider .nslider-dots .nslider-dot.active {
    opacity: 1;
	background: #ffc000;
}

.btn-next:focus, .btn-prev:focus {
	    border: 3px dotted #ffcc00;
}

.btn-next {
	background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
width: 42px;
height: 42px;
position: relative;
    left: 2px;
}
.btn-prev {
	background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
width: 42px;
height: 42px;
position: relative;
    left: -2px;
}


/* IE11 tweaks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nslider .nslider-dots .nslider-dot {
    position: relative;
    top: 4px;
  }
}
/* end of IE11 tweaks */
