.tutorial-footer-centre{
    margin-top:20px;
    margin-bottom:20px;
    display: flex;
    width: 100px;
    justify-content: space-between;
    left: 30%;
    position: relative;
}
.tutorial-next-btn{
    background-color: rgb(123, 104, 238);
    color: rgb(255, 255, 255);
    float: right;
}
.tutorial-skip-btn{
    background-color: rgb(255, 0, 0);
}
.tutorial-back-btn{
    background-color: rgb(0, 188, 212);
    color: rgb(255, 255, 255);
    float: right;
    margin-right: 5px;
}
.tutorial-btn{
    border: none;
    box-shadow: none;
    border-radius: 3px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin-right: 10px;
    color: #fff;
    cursor: pointer;
    min-width: 80px;
}
#tutorialContent{
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 50%; */
}
.tutorial-back-btn,.tutorial-finish-btn{
    display:none;
}
#tutorialContent img{
    /* width:750px; */
    width:100%;
}
.tutorialLoader {
  border-top: 3px #04acec solid;
  width:30%;
  height: 3px;
  position: absolute;
  top:0;
  animation: tutorialLoader-left-to-right 3s linear infinite;
}
.tutorialLoader{
    display:none;
}
#user-tutorial-modal{
    overflow-y: auto !important;
}

@keyframes tutorialLoader-left-to-right {
    0% {width:0px;height:0px}
    25% {width:25%;height:0px}
    50% {width:50%;height:0px}
    100% {width:100%;height:0px}
}