body {
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll; 
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}


#footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    display: flex;
    min-height: 61px;
    border-top: solid 1px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease !important;
}
#footer-bar a {
    color: #FFFFFF;
    padding-top: 12px;
	text-decoration: none;
    position: relative;
    flex: 1 1 auto;
}
#footer-bar a span {
    position: relative;
	color: #FFFFFF;
    z-index: 2;
    display: block;
    font-size: 10px;
    font-weight: 500;
    margin-top: -6px;
    opacity: 0.7;
    font-family: Roboto, sans-serif !important;
}
.footer-bar-1 .active-nav strong {
    background-color: #5d9cec;
    position: absolute;
    width: 70px;
    height: 4px;
    border-radius: 60px;
    left: 50%;
    top: 55px;
    transform: translateX(-50%);
}
.pulsingButton {
    text-align: center;
    white-space: nowrap;
    margin: 10px auto;
    padding: 10px;
    box-shadow: 0 0 0 0 rgba(245, 192, 66, 0.7);
    border-radius: 10px;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    border-bottom: 3px solid #dfb949;
    text-decoration: none !important;
    color: #ffffff;
    transition: all 300ms ease-in-out;
}
.pulsingButtonPage {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    display: block;
    margin: 15px auto;
    padding: 15px;
    box-shadow: 0 0 0 0 rgba(245, 192, 66, 0.7);
    border-radius: 10px;
    background-color: #f5c042;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    border-bottom: 4px solid #ffe2a0;
    text-decoration: none !important;
    color: #000000;
    transition: all 300ms ease-in-out;
}
a.pulsingButtonPage:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    color: #000000;
}



/* Comment-out to have the button continue to pulse on mouseover */

a.pulsingButton:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    color: #ffffff;
}

.pulsinglanding {
	box-shadow: 0 0 0 0 rgba(245, 192, 66, 0.7);
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}
a.pulsinglanding:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}


@media only screen and (max-width: 400px) {
.mobile-hide {
    display: none !important;
}
}

@media only screen and (max-width: 400px) {
.mobile {
    display: inline !important;
}
}

@media only screen and (min-width: 500px) {
.desktop-hide {
    display: none !important;
}
}
    
@-webkit-keyframes pulsing {
to {
box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}
@-moz-keyframes pulsing {
to {
box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}
@-ms-keyframes pulsing {
to {
box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}
@keyframes pulsing {
to {
box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
}
}