/* Admin CSS stylesheet */
body.noScroll {
  overflow: hidden;
}

.defaultBG {
  background-color: #000000;
}

.yellowBG {
  background-color: #c8b299;
}

.darkBlueBG {
  background-color: #7e8890;
}

.greyBG {
  background-color: #e8e8e8;
}

.whiteBG {
  background-color: hsl(0deg, 0%, 100%);
}

.whiteText {
  color: hsl(0deg, 0%, 100%);
}

.spinner {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 4000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 4000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes ripple-in1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes ripple-in1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes ripple-in2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  20% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes ripple-in2 {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  20% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 0;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body.login {
  background: url("../../img/admin/banner.jpg") !important;
  background-size: cover !important;
}
body.login #login {
  z-index: 100;
  font-family: Arial;
  padding: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50% !important;
  max-width: 1000px;
  min-width: 500px;
  border-radius: 0;
  opacity: 1;
  filter: alpha(opacity=100);
  background: hsl(0deg, 0%, 100%);
}
body.login #login h1 {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body.login #login h1 a {
  background-image: url("../../img/logo.png") !important;
  width: 280px;
  background-size: 280px;
  height: 100px;
}
body.login #login .message {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  border: none;
}
body.login #login #loginform {
  background: none;
  width: calc(100% - 100px);
  position: absolute !important;
  top: 35%;
  max-width: 500px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 30px 24px 16px;
  border: none !important;
}
body.login #login #loginform label {
  display: block;
  color: #008dff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
}
body.login #login #loginform label input[type=text], body.login #login #loginform label input[type=password] {
  background: hsl(0deg, 0%, 100%);
  border: 1px #eae8e8 solid;
  margin-top: 7px;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 15px !important;
}
body.login #login #loginform:before {
  content: "";
  font-size: 25px;
  position: absolute;
  color: #e8e8e8;
  opacity: 0.4;
  filter: alpha(opacity=40);
}
body.login #login .forgetmenot {
  float: none !important;
}
body.login p.submit {
  text-align: center;
  padding: 20px 0 !important;
}
body.login #nav {
  position: absolute;
  right: 20px;
  bottom: 10px;
  margin: 16px 0;
}
body.login #backtoblog {
  position: absolute;
  left: 20px;
  bottom: 10px;
}
body.login .button {
  float: none;
  display: block;
  font-family: Arial;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 0px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 40px !important;
  line-height: 40px !important;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: hsl(0deg, 0%, 100%);
  background: #008dff;
  width: 140px;
  margin: 0 auto;
}
body.login .button:hover {
  -webkit-box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.15);
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=1px, OffY=4px, Color="#26000000");
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #00b5dd;
}
body.login .button:hover.wave:before, body.login .button:hover.waveRound:before {
  -webkit-animation: ripple-in2 1.5s;
          animation: ripple-in2 1.5s;
}
body.login .button:active {
  background: #00b5dd;
}
body.login:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  opacity: 0.8;
  filter: alpha(opacity=80);
  height: 100%;
  width: 100%;
}

.column-thumbnail {
  width: 50px;
  text-align: center;
}