.m2-slider *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.m2-slider{
    display: flex;
    flex-direction: column;
    position: relative;
}
.m2-slider .slider-wraper{overflow: hidden;scroll-behavior: smooth;}
.m2-slider.scrollbar .slider-wraper{overflow: auto;}
.m2-slider .slider-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.m2-slider.vertical .slider-container{flex-direction: column;padding-top: 0;padding-bottom: 0;}
.m2-slider.full-page, .m2-slider.full-page .slider-wraper{height: 100%;}
.m2-slider .slider-container .m2-slide{
    width: 100%;
    touch-action: none;
    transition: all 0.3s ease-out;
    margin-left: 10px;
    margin-right: 10px;
}
.m2-slider .thumbs .m2-slide{cursor: pointer;}

.m2-slider .m2-slidearrow{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color: #2F80ED;
    line-height: 1;
    font-size: 24px;
    color:#fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.m2-slider .m2-slidearrow.left{left: 20px;}
.m2-slider .m2-slidearrow.right{right: 20px;}

.m2-slider .m2-slidearrow::before {
  font-family: FontAwesome;
}
.m2-slider .m2-slidearrow.left::before{
  content: "\f104";
  margin-right: 2px;
}
.m2-slider .m2-slidearrow.right::before {
  content: "\f105";
  margin-left: 2px;
}
  
.m2-slider .m2-slidearrow:hover{background-color: #fff;color: #2F80ED;}

.m2-slider .m2-slidesnav{text-align: center;}
.m2-slider .m2-slidesnav .bullet{
    display: inline-block;
    background-color: #9CBFF8;
    width: 11px;
    height: 11px;
    margin: 5px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}
.m2-slider .m2-slidesnav .bullet.active{background-color: #2F80ED;}

.m2-slider.full .m2-slidearrow.left{left: 5px;}
.m2-slider.full .m2-slidearrow.right{right: 5px;}
.m2-slider.full .m2-slidesnav{position: absolute;width: 100%;bottom: 10px;z-index: 2;}

.m2-slider.fading .slider-container{max-width: 100%;position: relative;padding: 0;}
.m2-slider.fading .slider-container .m2-slide{display: block;left: 0;top: 0;position: absolute;opacity: 0;margin: 0;}
.m2-slider.fading .slider-container .m2-slide.active{opacity: 1;position: relative;}
.m2-slider.fading .slider-container .m2-slide.active.out{position: absolute;opacity: 0;z-index: 2;}
