/*--------------------------
	Normalize
-------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

mark {
  background: #ff0;
  color: #000;
}

p {
  line-height: 1.5;
}
p:empty {
  display: none;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol {
  list-style-position: inside;
}

ol ol,
ul ul {
  padding-left: 20px;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
  text-align: left;
  padding: 8px;
  border: 1px solid #e2e2e2;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #e2e2e2;
  margin: 1em 0;
  padding: 0;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #666666;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #c8c8c8;
  border: 1px solid #e2e2e2;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  overflow: auto;
}

/*--------------------------
	Buttons
-------------------------*/
.btn {
  font-size: 16px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-clip: padding-box;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #fff;
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-theme-green,
.btn-green {
  background: #1A8B0B;
}
.btn-theme-green:hover, .btn-theme-green:focus,
.btn-green:hover,
.btn-green:focus {
  background: #23ba0f;
}

.btn-theme-orange,
.btn-orange {
  background: #F88C00;
}
.btn-theme-orange:hover, .btn-theme-orange:focus,
.btn-orange:hover,
.btn-orange:focus {
  background: #ffa32c;
}

.btn-theme-blue,
.btn-blue {
  background: #444cf7;
}
.btn-theme-blue:hover, .btn-theme-blue:focus,
.btn-blue:hover,
.btn-blue:focus {
  background: #757bf9;
}

.btn-theme-black,
.btn-black {
  background: #000;
}
.btn-theme-black:hover, .btn-theme-black:focus,
.btn-black:hover,
.btn-black:focus {
  background: #1a1a1a;
}

.btn-theme-red,
.btn-red {
  background: #EA4335;
}
.btn-theme-red:hover, .btn-theme-red:focus,
.btn-red:hover,
.btn-red:focus {
  background: #ef6e63;
}

.btn-white {
  background: #fff;
  color: #666666;
}
.btn-white:hover, .btn-white:focus {
  background: #ffa32c;
}

.btn-orange-outline {
  border: 1px solid #F88C00;
  color: #F88C00;
}
.btn-orange-outline:hover, .btn-orange-outline:focus {
  border: 1px solid #F88C00;
  color: #fff;
  background: #F88C00;
}

.btn-default {
  background: #fbfbfb;
  color: #666666;
}
.btn-default:hover, .btn-default:focus {
  background: #c8c8c8;
}

.btn-default-outline {
  border: 1px solid #e2e2e2;
  color: #d5d5d5;
}
.btn-default-outline:hover, .btn-default-outline:focus {
  border: 1px solid #c8c8c8;
  color: #afafaf;
}

.btn-white {
  background: #fff;
  color: #666666;
}
.btn-white:hover, .btn-white:focus {
  background: #c8c8c8;
}

.btn-white-outline {
  border: 1px solid #fff;
  color: #fff;
}
.btn-white-outline:hover, .btn-white-outline:focus {
  border: 1px solid #fff;
  background: #fff;
  color: #F88C00;
}

.rounded {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .btn {
    padding: 6px 12px;
  }
}
/*--------------------------
	Demo Page
-------------------------*/
#demo-header {
  background: #333;
  border-bottom: 2px solid #F88C00;
}
#demo-header .container .row {
  flex-wrap: nowrap;
}
#demo-header .container .row img {
  width: 140px;
  margin-top: 9px;
}
#demo-header .attheme-demo-page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 4px;
}
#demo-header .attheme-demo-page .attheme-demo-form {
  margin-left: auto;
}
#demo-header .attheme-demo-page .res-btn-group {
  margin-left: 30px;
  margin-top: 6px;
}
#demo-header .attheme-demo-page .res-btn-group.responsive .button {
  padding: 10px;
  color: #fff;
  font-size: 24px;
}
#demo-header .attheme-demo-page .res-btn-group.responsive .button.view_tabletlandscape i, #demo-header .attheme-demo-page .res-btn-group.responsive .button.view_mobilelandscape i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
#demo-header .attheme-demo-page .res-btn-group.responsive .button.active {
  color: #F88C00;
}
#demo-header .btn {
  padding: 6px 12px;
  font-size: 14px;
  margin-top: 2px;
}
#demo-header .download i {
  margin-left: 10px;
}
#demo-header .remove {
  position: absolute;
  right: 0;
  top: 0;
  height: 45px;
  display: block;
  width: 45px;
  background: #444;
  line-height: 48px;
  font-size: 30px;
  text-align: center;
  color: #fff;
}
#demo-header .remove span {
  opacity: .5;
}
#demo-header .select-wrap {
  margin-right: 10px;
}
#demo-header .select-wrap select {
  height: 35px;
  padding: 0;
  width: 230px;
}

.theme-demo-con {
  text-align: center;
}
.theme-demo-con iframe {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  #demo-header .attheme-demo-page {
    display: block;
  }
  #demo-header .remove {
    height: 45px;
    width: 45px;
    line-height: 39px;
    font-size: 39px;
  }

  html #wpadminbar {
    top: -46px;
  }
}
.theme-demo-con {
  height: 100vh;
}

.theme-demo-con iframe {
  height: 100%;
}

/*# sourceMappingURL=demo-page.css.map */
