@import url('macrocats.css');
body {
   font-family: "Open Sans", sans-serif;
   font-weight: 500;
   font-size: 13px;
   line-height: 24px;
}

/*	CSS RESET	*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*	TYPOGRAPHY	*/
h1 {
   color: #367FD1;
   font-family: 'Exo', sans-serif;
   font-size: 38px;
   letter-spacing: 1px;
   font-weight: 300;
   padding: 15px;
   border-bottom: 2px solid #EAEAEA;
}

h1 .subtitle-attached {
   font-size: 18px;
   color: #555555;
   font-style: italic;
}

h1 a {
   color: #367FD1;
}

h2 {
   color: #367FD1;
   font-family: 'Exo', sans-serif;
   font-size: 20px;
   letter-spacing: 1px;
   font-weight: 500;
   padding: 10px 10px 10px 0;
}

h2 a {
   color: #367FD1;
   border-bottom: 2px solid #EAEAEA;
   -webkit-transition: all 100ms linear;
   -moz-transition: all 100ms linear;
   -ms-transition: all 100ms linear;
   -o-transition: all 100ms linear;
   transition: all 100ms linear;
}

h2 a:hover {
   color: #000000;
   border-bottom: 2px solid #000000;
   -webkit-transition: all 100ms linear;
   -moz-transition: all 100ms linear;
   -ms-transition: all 100ms linear;
   -o-transition: all 100ms linear;
   transition: all 100ms linear;
}

h4 {
   line-height: 26px;
}

a:hover {
   text-decoration: none;
}

a.nope {
   color: #000000;
}

.blue {
   color: #367FD1 !important;
}

ul{
   margin-bottom: 0;
   padding-left: 0;
}

.h1, .h2, .h3, h1, h2, h3, .title {
   font-family: "Exo", sans-serif;
   margin-top: 0px;
   margin-bottom: 15px;
}

.subtitle-attached {
   line-height: 20px;
   display: block;
}

/*	BUTTONS		*/
.btn3d {
   transition: all .08s linear;
   position: relative;
   outline: medium none;
   -moz-outline-style: none;
   border: 0px;
}

.btn3d.fullwidth{
   width: 100%;
}


.btn3d:focus {
   outline: medium none;
   -moz-outline-style: none;
}

.btn3d:active {
   top: 8px;
}

.btn3d.btn-default {
   box-shadow: 0 0 0 1px #ebebeb inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #adadad, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #fff;
}

.btn3d.btn-primary {
   box-shadow: 0 0 0 1px #367FD1 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #214e81, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #367FD1;
}

.btn3d.btn-primary:active {
   box-shadow: 0 0 0 1px #367FD1 inset, 0 0 0 0px rgba(255, 255, 255, 0.15) inset, 0 0px 0 0 #214e81, 0 0px 0 1px rgba(0, 0, 0, 0.4), 0 0px 0px 0px rgba(0, 0, 0, 0.5);
}

.btn3d.btn-success {
   box-shadow: 0 0 0 1px #5cb85c inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #4cae4c, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #5cb85c;
}

.btn3d.btn-info {
   box-shadow: 0 0 0 1px #367FD1 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #2A435F, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #367FD1;
}

.btn3d.btn-info:active {
   box-shadow: 0 0 0 1px #367FD1 inset, 0 0 0 0px rgba(255, 255, 255, 0.15) inset, 0 0px 0 0 #2A435F, 0 0px 0 1px rgba(0, 0, 0, 0.4), 0 0px 0px 0px rgba(0, 0, 0, 0.5);
}

.btn3d.btn-warning {
   box-shadow: 0 0 0 1px #f0ad4e inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #eea236, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #f0ad4e;
}

.btn3d.btn-danger {
   box-shadow: 0 0 0 1px #c63702 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 8px 0 0 #C24032, 0 8px 0 1px rgba(0, 0, 0, 0.4), 0 8px 8px 1px rgba(0, 0, 0, 0.5);
   background-color: #c63702;
}

/*	OTHER	*/
.pageloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(/images/preloader.gif) center no-repeat #fff;
}