/* default styles for owl carousel */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
    cursor: pointer;
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
    opacity: 1;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-controls .owl-page {
    cursor: pointer;
}
.owl-pagination {
    display: none;
    text-align: center !important;
}
.owl-next {
    display: none;
    position: absolute;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: #E2F0F9;
    border-radius: 4px 0px 0px 4px;
    padding: 5px 7px;
    color: transparent;
    float: right;
}
.owl-next:before {
    content: ">";
    color: white;
    font-size: 25px;
    font-family: monospace;
    padding: 5px;
    position: relative;
    bottom: 3px;
}
.owl-next:hover {
    background: #E2F0F9;
    opacity: 0.7;
}
.owl-prev {
    display: none;
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: #E2F0F9;
    border-radius: 0 4px 4px 0px;
    padding: 5px 7px;
    color: transparent;
    float: left;
}
.owl-prev:before {
    content: "<";
    color: white;
    font-size: 25px;
    font-family: monospace;
    padding: 5px;
    position: relative;
    bottom: 3px;
}
.owl-prev:hover {
    background: #E2F0F9;
    opacity: 0.7;
}
.owl-theme:hover .owl-prev {
    display: block;
}
.owl-theme:hover .owl-next {
    display: block;
}
.owl-buttons div {
    position: absolute;
    top: calc(50% - 40px);
    z-index: 7;
    overflow: hidden;
}

/* end default styles for owl carousel */