﻿@charset "UTF-8";
@import "../fonts/font-awesome.css";
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  color: #333;
}

body {
  font-size: 1.5rem;
}

a.big-btn, button.big-btn {
  height: 4rem;
  line-height: 4rem;
  padding: 0 1.5rem 0 0;
}
a.big-btn i, button.big-btn i {
  height: 4rem;
  line-height: 4rem;
  display: inline-block;
  width: 4rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #fff;
}
a.big-btn span, button.big-btn span {
  height: 4rem;
  line-height: 4rem;
  display: inline-block;
  padding-left: 1.2rem;
}

button {
  cursor: pointer;
  background-color: #98012d;
  outline: none;
  border: none;
  color: #fff;
  transition: all;
}
button.sml-btn {
  height: 2.7rem;
  line-height: 2.7rem;
  padding: 0 1.5rem 0 0;
}
button.sml-btn i {
  height: 2.7rem;
  line-height: 2.7rem;
  display: inline-block;
  width: 3rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}
button.sml-btn span {
  height: 2.7rem;
  line-height: 2.7rem;
  display: inline-block;
  padding-left: 1.2rem;
}
button:hover {
  background-color: #000;
}

a.big-btn {
  cursor: pointer;
  background-color: #98012d;
  outline: none;
  border: none;
  color: #fff;
  transition: all;
  display: inline-block;
  text-decoration: none;
}
a.big-btn:hover {
  background-color: #000;
}

input[type=text], input[type=password], input[type=email], input[type=url] {
  border: 1px solid #ccc;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  padding: 0 2rem;
  outline: none !important;
  width: 100%;
  text-align: left;
}

.custom-select {
  position: relative;
  display: block;
  width: 100%;
}
.custom-select:before {
  content: "";
  left: 0;
  right: 0;
  height: 4rem;
  position: absolute;
}
.custom-select:after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 25px;
  top: 14px;
  z-index: 0;
}
.custom-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ccc;
  padding: 0 3rem 0 1.5rem;
  border-radius: 0px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  height: 4rem;
  position: relative;
  z-index: 1;
}
.custom-select select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #e3e3e3;
  height: 8rem;
  line-height: 1.8rem;
  text-align: center;
  padding: 1.5rem 2rem;
  outline: none !important;
  width: 100%;
  text-align: left;
}

.gry-block {
  background-color: #fafafa;
  border: 1px solid #ccc;
  padding: 2rem;
  margin: 0 auto 5rem;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: "Roboto", sans-serif;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

a {
  text-decoration: none !important;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 0;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 1320px) {
  .wrapper {
    width: auto;
  }
}

header {
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  height: 11rem;
}
@media all and (max-width: 1320px) {
  header {
    height: 8rem;
  }
}
@media all and (max-width: 520px) {
  header {
    height: auto;
  }
}
header .wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 11rem;
}
@media all and (max-width: 1320px) {
  header .wrapper {
    height: 8rem;
  }
}
@media all and (max-width: 520px) {
  header .wrapper {
    height: auto;
    padding-top: 1rem;
  }
}
@media all and (max-width: 520px) {
  header .wrapper {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
header .wrapper h1 {
  position: absolute;
  left: 295px;
  top: 4rem;
  font-weight: 400;
}
header .wrapper h1 span, header .wrapper h1 i {
  color: #98012d;
}
header .wrapper > div {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1.5rem;
}
header .wrapper > div p {
  padding-bottom: 6px;
  padding-right: 10px;
  line-height: 1.7rem;
  margin: 0;
}

footer {
  background-color: #333;
  text-align: center;
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 1.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

body.admin-login header {
  border: 0px;
  background-color: #fff;
  height: auto;
}
body.admin-login header .wrapper {
  height: auto;
  justify-content: center;
}
body.admin-login header .wrapper figure {
  padding: 2rem 0 3rem;
}
body.admin-login header .wrapper a {
  display: inline-block;
}
body.admin-login .login-block {
  background-color: #fafafa;
  border: 1px solid #ccc;
  max-width: 420px;
  margin: 0 auto 4rem;
  padding: 3rem;
}
body.admin-login .login-block figure {
  text-align: center;
  padding-bottom: 2.5rem;
  background-color: #fafafa;
  border-radius: 100%;
  position: relative;
}
body.admin-login .login-block figure:before {
  content: "";
  width: 220px;
  height: 6px;
  background-color: #d8d8d8;
  position: absolute;
  top: 40%;
  z-index: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  display: block;
}
body.admin-login .login-block figure i {
  color: #d8d8d8;
  font-size: 100px;
  background-color: #fafafa;
  position: relative;
  z-index: 1;
}
body.admin-login .login-block .form-block .form-element {
  padding-bottom: 1.5rem;
}
body.admin-login .login-block .form-block .form-element.action-btn {
  text-align: center;
  padding-top: 1rem;
}
body.admin-login .login-block .form-block .form-element.action-btn .big-btn span {
  padding: 0 1.2rem 0 2.4rem;
}
body.admin-login .login-block .form-block label {
  padding-bottom: 0.5rem;
  display: block;
}

.mfp-content .inline-form .form-element, .inner-block .inline-form .form-element {
  display: flex;
  flex-wrap:wrap;
  padding-bottom: 1.5rem;
}
.character-count {
    flex: 0 0 100%;
    padding: 5px 0 0 35%;
    font-size: 12px;
    color: #e77070;
}
    .mfp-content .inline-form .form-element > label, .inner-block .inline-form .form-element > label {
        flex: 0 0 35%;
        max-width: 35%;
        padding-right: 20px;
        text-align: right;
        color: #666;
        padding-top: 10px;
        font-weight: 400;
        padding-bottom: 0 !important;
    }
.mfp-content .inline-form .form-element > label label, .inner-block .inline-form .form-element > label label {
  font-weight: 400 !important;
}
.mfp-content .inline-form .form-element > div, .inner-block .inline-form .form-element > div {
  flex: 0 0 65%;
  display: flex;
  max-width:65%;
}
.mfp-content .inline-form .form-element > div input[type=color], .inner-block .inline-form .form-element > div input[type=color] {
  margin-top: 7px;
}
.mfp-content .inline-form .form-element > div .custom-select, .inner-block .inline-form .form-element > div .custom-select,
.mfp-content .inline-form .form-element > div input[type=text],
.inner-block .inline-form .form-element > div input[type=text],
.mfp-content .inline-form .form-element > div input[type=password],
.inner-block .inline-form .form-element > div input[type=password],
.mfp-content .inline-form .form-element > div input[type=email],
.inner-block .inline-form .form-element > div input[type=email] {
  width: 350px;
}
.mfp-content .inline-form .form-element > div .addProd .big-btn, .inner-block .inline-form .form-element > div .addProd .big-btn,
.mfp-content .inline-form .form-element > div .saveProd .big-btn,
.inner-block .inline-form .form-element > div .saveProd .big-btn {
  margin-left: 10px;
  padding: 0;
  width: auto;
}
.mfp-content .inline-form .form-element > div a, .inner-block .inline-form .form-element > div a {
  display: block;
  width: 100%;
  max-width: 350px;
}
.mfp-content .inline-form .form-element > div figure, .inner-block .inline-form .form-element > div figure {
  border: 1px solid #ccc;
  width: 350px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
}
.mfp-content .inline-form .form-element > div figure img, .inner-block .inline-form .form-element > div figure img {
  max-width: 100%;
  max-height: 100%;
}
.mfp-content .inline-form .form-element > div figure input[type=file], .inner-block .inline-form .form-element > div figure input[type=file] {
  display: none;
}
.mfp-content .inline-form .form-element > div figure.active, .inner-block .inline-form .form-element > div figure.active {
  background-color: #fff;
}
.mfp-content .inline-form .form-element > div textarea, .inner-block .inline-form .form-element > div textarea {
  max-width: 350px;
}
.mfp-content .inline-form .form-element.add-product, .inner-block .inline-form .form-element.add-product {
  display: none;
}
.mfp-content .inline-form .form-element.add-product.active, .inner-block .inline-form .form-element.add-product.active {
  display: flex;
}
.mfp-content .inline-form .form-element.headings span, .inner-block .inline-form .form-element.headings span {
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 0 5px;
  line-height: 24px;
}
.mfp-content .inline-form .form-element.headings .combo, .inner-block .inline-form .form-element.headings .combo {
  margin-top: 5px;
}
.mfp-content .inline-form .form-element.headings .combo > span:first-child, .inner-block .inline-form .form-element.headings .combo > span:first-child {
  width: 235px;
}
.mfp-content .inline-form .form-element.headings .combo > span:last-child, .inner-block .inline-form .form-element.headings .combo > span:last-child {
  width: 65px;
}
.mfp-content .inline-form .form-element.headings .combo .custom-select, .inner-block .inline-form .form-element.headings .combo .custom-select {
  width: 153px;
}
.mfp-content .inline-form .form-element.headings .combo .custom-select span, .inner-block .inline-form .form-element.headings .combo .custom-select span {
  width: 100%;
}
.mfp-content .inline-form .form-element.headings .combo .custom-select:before, .inner-block .inline-form .form-element.headings .combo .custom-select:before, .mfp-content .inline-form .form-element.headings .combo .custom-select:after, .inner-block .inline-form .form-element.headings .combo .custom-select:after {
  display: none;
}

.combo {
  align-items: center;
}
.combo input[type=text] {
  flex: 0 0 30%;
}
.combo .custom-select {
  flex: 0 0 20%;
  margin: 0 20px;
}
.combo .visible {
  flex: 0 0 12%;
  display: flex;
  align-items: center;
}
.combo .visible label {
  font-weight: 400;
  padding-left: 5px;
  margin: 0;
}
.combo input[type=checkbox] {
  margin-left: 25px;
}

.upload-logo input[type=file] {
  display: none;
}
.upload-logo a figure {
  background: url(../images/uploadLogo.gif) 50% 50% no-repeat;
  background-size: 100%;
}
.upload-logo a.active figure {
  background-image: none;
  background-color: #fff;
}

.upload-bg input[type=file] {
  display: none;
}
.upload-bg a figure {
  background: url(../images/uploadBg.gif) 50% 50% no-repeat;
  background-size: 100%;
}
.upload-bg a.active figure {
  background-image: none;
  background-color: #fff;
}

.upload-mobile-bg input[type=file] {
    display: none;
}

.upload-mobile-bg a figure {
    background: url(../images/uploadBg.gif) 50% 50% no-repeat;
    background-size: 100%;
}

.upload-mobile-bg a.active figure {
    background-image: none;
    background-color: #fff;
}

body.admin {
  position: relative;
}
body.admin header .settings {
  padding-bottom: 0;
  height: 100%;
}
body.admin header .settings a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  background-color: #b3b3b3;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
body.admin header .settings a:hover {
  background-color: #4d4d4d;
}
body.admin header .settings a i {
  font-size: 25px;
}
body.admin > section > aside {
  position: fixed;
  width: 25rem;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #fafafa;
  border-right: 1px solid #ccc;
}
body.admin > section > aside > figure {
  height: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
}
body.admin > section > aside > figure a {
  display: block;
  height: 10rem;
}
body.admin > section > aside > figure a img {
  max-width: 100%;
  max-height: 100%;
}
body.admin > section > aside ul {
  border-top: 1px solid #ccc;
}
body.admin > section > aside ul li {
  border-bottom: 1px solid #ccc;
}
body.admin > section > aside ul li a {
  line-height: 4.5rem;
  padding: 0 1.5rem;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
body.admin > section > aside ul li a i {
  width: 2.5rem;
}
body.admin > section > aside ul li a:hover:not(.active) {
  background-color: rgba(204, 204, 204, 0.1);
  color: #333;
}
body.admin > section > aside ul li a.active {
  background-color: #002a5c;
  color: #fff;
}
body.admin > section > section {
  padding-top: 4rem;
  padding-left: 30rem;
}

.inner-block {
  padding-right: 4rem;
  padding-bottom: 6rem;
}
.inner-block h2 {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 1rem;
  margin-bottom: 3.5rem;
  font-weight: 400;
  font-size: 2.2rem;
  color: #666;
}
.inner-block h2 i {
  margin-right: 1rem;
}
.inner-block .container {
  padding: 0 !important;
}

.page-title {
  color: #666;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e3e3e3;
}

.step-block {
  display: flex;
  margin: 0 0 2rem;
  flex-wrap: wrap;
}
.step-block .form-element {
  padding: 0 10px;
  flex-wrap: wrap;
}
.step-block .form-element label {
  padding-top: 0 !important;
  padding-bottom: 1rem !important;
}
.step-block .form-element label,
.step-block .form-element > div {
  flex: 0 0 100% !important;
  text-align: left !important;
}
.step-block .number {
  flex: 0 0 7.5%;
  padding-top: 10px;
}
.step-block .number span {
  background-color: #fafafa;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #e5e5e5;
  color: #333;
  font-size: 4rem;
  display: inline-block;
}
.step-block .title {
  flex: 0 0 30%;
}
.step-block .desc {
  flex: 0 0 27%;
}
.step-block .desc textarea {
  height: 150px;
  resize: none;
  border: 1px solid #ccc;
}
.step-block .stepImg {
  flex: 0 0 28%;
  position: relative;
}
.step-block .stepImg:before {
  position: absolute;
  content: "Upload Image";
  color: #bcbcbc;
  font-size: 25px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}
.step-block .stepImg figure {
  width: 100% !important;
}
.step-block .stepImg figure.active {
  background-color: #fff;
}
.step-block .stepImg input {
  display: none;
}
.step-block .stepAction {
  flex: 1;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
}
.step-block .stepAction .big-btn {
  padding-right: 0;
  margin-bottom: 10px;
  align-self: flex-start;
}
.step-block .stepAction .big-btn .fa-plus {
  background-color: #515151;
}
.step-block .stepAction .big-btn .fa-plus:hover {
  background-color: #383838;
}
.step-block .stepAction .big-btn .fa-minus {
  background-color: #a7274c;
}
.step-block .stepAction .big-btn .fa-minus:hover {
  background-color: #7e1d39;
}
.step-block input {
  width: 100% !important;
}

.product-preview > div {
  position: relative;
}
.product-preview > div:before {
  position: absolute;
  content: "Product Image Preview";
  color: #bcbcbc;
  font-size: 25px;
  top: 48%;
  transform: translateY(-48%);
  left: 0;
  width: 350px;
  text-align: center;
}

.mfp-content {
  background-color: #fff;
  padding: 2rem;
  max-width: 670px;
  margin: 0 auto;
}
.mfp-content h2 {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 1rem;
  margin-bottom: 3.5rem;
  font-weight: 400;
  color: #666;
}
.mfp-content h2 i {
  margin-right: 1rem;
}

#ProductModal .modal-header {
  padding: 0 15px;
  border: 0;
}
#ProductModal .modal-body {
  padding: 0 15px;
}

.modal-dialog {
  width: 700px;
}

    .modal-dialog.modal-sm {
        width: 350px;
    }
    .modal-header .close {
  font-size: 3rem;
  margin-top: -7px;
}
.modal-header .close:hover {
  background-color: #fff;
}

.modal-footer {
  border: 0px;
}

.gj-grid-wrapper TABLE.gj-grid-table DIV {
  font-size: 1.3rem !important;
}

.radio-group {
  padding-top: 10px;
}
.radio-group > div {
  margin-right: 1.5rem;
}
.radio-group > div label {
  cursor: pointer;
}

.links-block {
    display: none;
    border: 1px solid #e3e3e3;
    /*padding: 0 2rem 0.5rem;*/
    padding: 2rem 2rem 0.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.01);
}
.links-block.active {
  display: block;
}
.links-block.active .rem-row {
  display: none;
}
.links-block .stepAction {
  display: flex;
  flex-direction: column;
  padding-left: 1.5rem;
}
.links-block .stepAction .big-btn {
  padding: 0;
  margin-bottom: 1rem;
}
.links-block .stepAction .big-btn.rem-row {
  background-color: #333;
}
.links-block .stepAction .big-btn.rem-row:hover {
  background-color: #000;
}
.links-block.removeAdd .add-row {
  display: none;
}
.links-block.removeAdd .rem-row {
  display: inline-block !important;
}
.links-block.last-child .rem-row {
  display: none;
}
.links-block .number {
  border: 1px solid #e4e4e4;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  width: 11rem;
  height: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  /* left: 10px; */
  margin-left: 15px;
}
.links-block .number span {
  color: #98012e;
  font-size: 6rem;
  font-weight: 600;
  line-height: 6rem;
}

.auto-redirect {
  border: 1px solid #e3e3e3;
  padding: 2rem 2rem 0.5rem;
  margin-bottom: 1.5rem;
  background-color: rgba(0, 0, 0, 0.01);
}

.upload-Img input[type=file] {
  display: none;
}
.upload-Img a figure {
  background: url(../images/uploadImg.gif) 50% 50% no-repeat;
  background-size: 100%;
}

.upload-image.active figure {
  background-image: none;
  background-color: #fff;
}

#divProcessLoading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

#divProcessLoading img {
  max-width: 50px;
}
#WelcomeMessgae {
    font-weight:400;
}

.auto-redirect .redirect {
    width: 100px !important;
    background-color: #fff;
}

.auto-redirect .redirect #dllRedirectionTime {
  height: 40px;
  border: 1px solid #ccc;
}

.notification {
  border: 1px solid #e77070;
  background-color: #fdf1f1;
  padding: 6px;
  color: #e77070;
  font-size: 11px;
  margin-left: 35%;
  max-width: 350px;
  margin-bottom:1.5rem;
}

.dashboard {
  text-align: center;
  padding: 6rem 13rem 6rem 4rem;
}
.dashboard h1 {
  font-size: 3rem;
  color: #666;
  font-weight: 400;
  padding-bottom: 4rem;
}
.dashboard h1 span {
  color: #98012d;
}
.dashboard .links-block {
  border: 1px solid #e3e3e3;
  padding: 4rem;
  background-color: #fafafa;
}
.dashboard .links-block ul {
  list-style: none;
  display: flex;
  margin: 0 -30px;
}
.dashboard .links-block ul li {
  padding: 0 30px;
  flex: 0 0 25%;
}
.dashboard .links-block ul li a {
  display: inline-block;
  color: #bbbbbb;
}
.dashboard .links-block ul li a i {
  display: flex;
  width: 13.5rem;
  height: 13.5rem;
  font-size: 50px;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}
.dashboard .links-block ul li a:hover {
  color: #002a5c;
}
.dashboard .links-block ul li a:hover i {
  background-color: #002a5c;
  color: #fff;
}

.auto-redirect .redirect {
  width: 100px !important;
  background-color: #fff;
}
.auto-redirect .redirect #dllRedirectionTime {
  height: 40px;
  border: 1px solid #ccc;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 3rem;
}
.tabs li {
  list-style: none;
  margin-right: 1rem;
}
.tabs li * {
  transition: all 0.3s ease;
}
.tabs li a {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-bottom: 0px;
  display: block;
  color: #bbbbbb;
}
.tabs li.active a {
  background-color: #002a5c;
  color: #fff;
}
.tabs li:hover:not(.active) a {
  background-color: #f4f4f4;
  color: #666;
}

.tab-content {
  display: none;
}
.tab-content:first-child {
  display: block;
}

/*# sourceMappingURL=style.css.map */


.url-format {
    display: flex;
    align-items: center;
    padding: 5px 0 0 5px;
}
.url-format label {
    margin: 0 0 0 5px !important;
}

.form-element label span {
    color: red;
    
}

.gj-grid-bootstrap-tfoot-cell .form-control.input-sm {
    padding: 0px;
    text-align: center !important;
    color: #000;
    height: 2.5rem;
}

body.admin > section > aside ul li a {
    position: relative;
}

    body.admin > section > aside ul li a span {
        position: absolute;
        right: 5px;
        border-radius: 5px;
        background-color: #bbbbbb;
        /* display: flex; */
        width: 20px;
        height: 20px;
        top: 12px;
        font-size: 12px;
        color: white;
        padding: 0;
        line-height: 20px;
        text-align: center;
    }

    body.admin > section > aside ul li a.active span {
        position: absolute;
        right: 5px;
        border-radius: 5px;
        background-color: #98012d;
        /* display: flex; */
        width: 20px;
        height: 20px;
        top: 12px;
        font-size: 12px;
        color: white;
        padding: 0;
        line-height: 20px;
        text-align: center;
    }



#dvReportEmailID div input {
    width:700px !important
}