html {
    -webkit-text-size-adjust: 100%;
}
body {
    overflow-y: scroll;
}
*{
    margin:0px;
    padding:0px; 
    vertical-align:top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
a, button{
    cursor:pointer;
    text-decoration:none;
    color: inherit;
    transition: all 0.4s ease;
}
select, map, area, a, button{
    border:0px; 
    outline:none;
}
img{
    border-style:none;
}
h1, h2, h3, h4, h5, h6{
    font-weight:normal;
}
input[type=text], input[type=password], textarea{
    text-align: left; 
    background: transparent;
    font-family: inherit;
}
input, textarea, select{
    border: 0; 
    outline: none; 
    line-height: normal; 
    -webkit-appearance: none; 
    border-radius: 0;
    font-family: inherit;
}
textarea{
    resize: none;
}
.c{
    margin: auto;
    padding: 0 60px;
}
.p_relative{
    position: relative;
}
._row {
    display: flex;
    flex-wrap: wrap;
}
._col{
    display: inline-block;
}
.text_center{
    text-align: center;
}
.text_left{
    text-align: left;
}
.text_right{
    text-align: right;
}
.image {
    position: relative;
    display: block;
}
.bg_full {
    background: url() no-repeat 50% 50%;
    overflow: hidden;
    background-size: cover;
}
.bg_full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.progress-bar {
  position: fixed;
  background-color: #E5284C;
  z-index: 9999;
}

/* Main page border/frame New colour Glow effect: subtle, pulsing light around the line */
/*
.progress-bar {
  position: fixed;
  background-color: #E5284C;
  z-index: 9999;
  border: 2px solid #00F0B8;
  box-shadow:
    0 0 5px #00F0B8,
    0 0 10px #00F0B8,
    0 0 20px #00F0B8;
  animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
  0% {
    box-shadow:
      0 0 5px #00F0B8,
      0 0 10px #00F0B8,
      0 0 20px #00F0B8;
    border-color: #00F0B8;
  }
  100% {
    box-shadow:
      0 0 20px #00F0B8,
      0 0 40px #00F0B8,
      0 0 80px #00F0B8;
    border-color: #00FFD0;
  }
}
*/

/* Top */
.progress-bar.top {
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
}

/* Right */
.progress-bar.right {
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  transform-origin: top;
  transform: scaleY(0);
}

/* Bottom */
.progress-bar.bottom {
  bottom: 0;
  right: 0;
  height: 3px;
  width: 100%;
  transform-origin: right;
  transform: scaleX(0);
}

/* Left */
.progress-bar.left {
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
}
