/* Make clicks pass-through */
#nprogress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #14387F;
    /* background-size: cover; */
    /* background-position: center; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#nprogress .progress-block{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#nprogress .progress-block .block-img{
    position: relative;
    margin-bottom: 100px;
    background-color: #fff;
}
#nprogress .progress-block .block-img:before{
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    border-left: 125px solid transparent;
    border-right: 125px solid transparent;
    border-bottom: 60px solid #fff;
}
#nprogress .progress-block .block-img:after{
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    border-left: 125px solid transparent;
    border-right: 125px solid transparent;
    border-top: 60px solid #fff;
}

#nprogress .bar-block{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ffffff42;
}

#nprogress .bar {
    background: #fff;
    width: 100%;
    height: 5px;
    border-radius: 10px;
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    margin: 15px 0;
}

@media (max-width: 992px) {
    #nprogress .progress-block{
        width: 80%;
    }
}