.ult-stage {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    margin: auto;
}

.ult-slide {
    overflow: hidden !important;
}

.ult-layer-html {
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.slide-header {
    position: absolute;
    z-index: 5000;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0em auto;
    color: white;
    text-shadow: 1px 1px 3px black;
    font-size: 25px;
    font-weight: 700;
    bottom: 60px !important;
    display: block;
}

.slide-header-mobile {
    position: absolute;
    margin: auto;
    bottom: 0px;
    /*-80px;*/
    left: 0;
    right: 0;
    width: fit-content;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px black;
    font-size: 19px;
    font-weight: 700;
}


.ult-scrolldown {
    transition: transform 2s;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 120px;
    height: 60px;
    z-index: 50;
    border-radius: 200px 200px 0 0;
    transition: transform .2s;
    animation-name: pulse;
    cursor: pointer;
    
    border-bottom: 0;
}

@media screen and (max-width: 493px) {
    .slide-header {
        display: none !important;
    }

}

@media screen and (max-width: 769px) {

    .ult-scrolldown {
        display: none !important;
    }
}


.ult-scrolldown:hover {
    animation-iteration-count: infinite;
    animation-delay: 2s;
    animation-iteration-count: 10;
    animation-duration: 2s;
    animation: pulse 2s infinite;
}

.ult-scrolldown .font-size-lg,
.ult-scrolldown .font-size-lg * {
    font-family: "Font Awesome 5 Free" !important;
}

/*indicator wrap*/
.ult-indicators {
    height: 20px;
}

.ult-indicator {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    margin: 2px;
    box-shadow: 1px 1px 1px 1px black;
    padding: 2px;
    /*Color will be set by javascript in OverlayIndicators()*/
}

.ult-indicator:hover {
    cursor: pointer;
}

.ult-progress {
    height: 5px;
    width: 100%;
    /*placeholder*/
}
@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.2);}
    100% {transform: scale(1);}
  }