/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */

/**
 * Apply a clearfix to an element.
 */

/**
* NORMALIZE CSS
*/

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

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

/**
 * Remove default margin.
 */

body {
    margin: 0;
    padding: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

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

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

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

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

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

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

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

/**
 * Re-set default cursor for disabled elements.
 */

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

/**
 * Remove inner padding and border in Firefox 4+.
 */

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

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

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

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

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

/**
 * Define consistent border, margin, and padding.
 */

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

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

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

td,
th {
    padding: 0;
}

.nav-toggle {
    padding: 14px 15px;
    background-color: #e6e6e6;
    border: none;
    height: 35px; }
.nav-toggle span {
    width: 16px;
    height: 2px;
    background-color: #669834;
    display: block;
    margin-bottom: 3px; }

.icon-logo {
    display: inline-block; }
@media screen and (max-width: 767px) {
    .icon-logo {
        transform: scale(0.8);
        position: absolute;
        left: 0; } }

header * {
    box-sizing: border-box;
}

header .nav-list {
    display: inline-block;
    padding-left: 15px;
    vertical-align: bottom;
    margin: 0 0 2px; }
@media screen and (max-width: 767px) {
    header .nav-list {
        display: inline;
        padding-left: 0; } }
@media screen and (max-width: 390px) {
    header .nav-list {
        font-size: 10px; } }

header .btn-square {
    color: #333;
    padding: 7px 18px;
    height: 36px; }
header .btn-square.btn-square-green {
    padding: 4px 16px; }
header .btn-square.btn-square-green:hover {
    background-color: #467920;
}
@media screen and (max-width: 767px) {
    header .btn-square {
        position: absolute;
        right: 0;
        left: auto !important;
        top: 35px;
        min-width: 170px;
        height: auto;
        min-height: 35px;
        padding: 7px 10px;
        font-size: 12px; }
    header .btn-square.btn-square-green {
        top: 0;
        font-size: 12px;
        line-height: 25px; } }

@media screen and (min-width: 798px) {
    .logo-row {
        max-height: 50px;
        overflow: hidden; } }

@media screen and (max-width: 767px) {
    .logo-row {
        height: 35px; } }

.header-navigation {
    padding-top: 15px; }
.header-navigation .store-seals {
    position: absolute;
    right: 15px;
    top: -10px;
    max-width: 220px;
}
.store-seals img {
    float: left;
    max-width: 61%;
}
.header-navigation .store-seals img.rapidssl {
    height: 35px;
    margin: 20px 0px;
}
img#trustwaveSealImage {
    height: 38px;
    margin: 14px 0px;
}
@media (max-width: 767px) {
    .header-navigation div.store-seals {
        display: none; } }
@media screen and (max-width: 767px) {
    .header-navigation {
        margin: 0 -15px; } }

@media screen and (max-width: 560px) {
    .error404 header .container .btn-square,
    .page header .container .btn-square,
    .single header .container .btn-square {
        display: none !important;}

    .error404 header .container.logo-row,
    .home header .container.logo-row,
    .page header .container.logo-row,
    .single header .container.logo-row {
        display: none !important;}
}

.container {
    *zoom: 1;
    width: auto;
    max-width: 1110px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    padding: 0 15px;
    position: relative; }
.container:before, .container:after {
    content: '';
    display: table; }
.container:after {
    clear: both; }

.row {
    clear: both; }

.col-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
.col-half:before, .col-half:after {
    content: '';
    display: table; }
.col-half:after {
    clear: both; }
.col-half:last-child {
    margin-right: 0%; }
@media (max-width: 767px) {
    .col-half {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .col-half:first-child {
        margin-left: auto; }
    .col-half:last-child {
        margin-right: auto; } }

.pull-left {
    float: left; }

.pull-right {
    /* float: right; */ }

.featured-header {
    font-size: 26px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin: 10px 0 6px; }
.featured-header a {
    font-size: 14px; }

.lines-bg:before {
    content: '';
    width: 300px;
    height: 1px;
    background-image: url("../images/line-left.png");
    position: absolute;
    left: -315px;
    top: 50%; }

.lines-bg:after {
    content: '';
    width: 300px;
    height: 1px;
    background-image: url("../images/line-right.png");
    position: absolute;
    right: -315px;
    top: 50%; }

.lines-bg.lines-bg-small:before {
    width: 60px;
    height: 1px;
    left: -62px; }

.lines-bg.lines-bg-small:after {
    background-position: right;
    width: 60px;
    height: 1px;
    right: -62px; }

@media screen and (max-width: 479px) {
    .lines-bg.lines-bg-small:before {
        width: 0; }
    .lines-bg.lines-bg-small:after {
        width: 0; } }

.col-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
.col-third:before, .col-third:after {
    content: '';
    display: table; }
.col-third:after {
    clear: both; }
.col-third:last-child {
    margin-right: 0%; }

.gray-row {
    background-color: #F4F4F4; }

a {
    text-decoration: none;
    color: #669834;
    font-weight: 400; }

p {
    margin: 0 0 10px;
    padding: 0;
}

.page p {
    padding: 0 0 25px 0;
    line-height: 24px;
    margin: 0;
}

.btn {
    font-size: 20px;
    font-weight: 500;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    padding: 6px 20px;
    line-height: 1.7em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-align: center; }
.btn.btn-white {
    background-color: #fff;
    color: #669834; }
.btn.btn-white .fa {
    color: #669834; }
.btn.btn-green {
    color: #fff;
    background-color: #669834; }
.btn.btn-green .fa {
    color: #fff; }
.btn.btn-gray {
    color: #fff;
    background-color: #474747; }
.btn.btn-gray .fa {
    color: #fff; }
.btn .fa {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    opacity: 0;
    transition: .3s all ease; }
.btn:hover {
    padding-right: 40px; }
.btn:hover .fa {
    opacity: 1; }

@media (max-width: 767px) {
    .btn-long {
        font-size: 14px; } }

.section-header {
    font-size: 36px;
    font-weight: 400;
    margin: 33px 0 13px;
    padding: 0;
}
.section-header .small {
    font-size: 20px; }
@media (max-width: 767px) {
    .section-header {
        font-size: 2em; } }

.img-responsive {
    max-width: 100%;
    display: block; }

.banner-link {
    display: inline-block; }

.cf:after {
    content: "";
    display: table;
    clear: both; }

.no-margin {
    margin: 0 !important; }

.no-margin-top {
    margin-top: 0 !important; }

.no-margin-bottom {
    margin-bottom: 0 !important; }

.no-padding {
    padding: 0 !important; }

.no-padding-left {
    padding-left: 0 !important; }

.no-padding-right {
    padding-right: 0 !important; }

.no-padding-top {
    padding-top: 0 !important; }

.no-padding-bottom {
    padding-bottom: 0 !important; }

.text-center {
    text-align: center !important; }

.small {
    font-size: 85%; }

.list-unstyled, .list-inline {
    padding: 0; }
.list-unstyled li, .list-inline li {
    list-style: none; }

.list-inline li {
    display: inline-block; }

.green {
    color: #669834 !important; }

.gray-i {
    color: #989898; }

.side-brackets:before {
    display: block !important;
    content: '';
    width: 10px;
    height: 100%;
    border: 1px solid #ccc;
    border-right: none;
    position: absolute;
    top: 0;
    left: 0; }

.side-brackets:after {
    display: block !important;
    content: '';
    width: 10px;
    height: 100%;
    border: 1px solid #ccc;
    border-left: none;
    position: absolute;
    top: 0;
    right: 0; }

.side-brackets.side-brackets-green:before {
    border-color: #669834; }

.side-brackets.side-brackets-green:after {
    border-color: #669834; }

.green-blur-bg {
    background-image: url("../images/blur-green-bg.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }

input.filter-input#afp-search-input {
    background-color: #f4f4f4;
    border: none;
    padding: 3px 7px;
    font-size: 14px; }
@media (max-width: 767px) {
    input.filter-input#afp-search-input {
        width: 270px;
        max-width: 100%; } }

.nav-list {
    font-size: 14px; }
.nav-list li {
    margin: 0 5px;
    padding: 3px 0; }
.nav-list li a {
    color: inherit; }
.nav-list li.active {
    border-bottom: 2px solid #669834; }
.nav-list li.active a {
    color: #669834; }

.cart-btn {
    font-size: 14px;
    position: absolute;
    bottom: 55px;
    right: 5px;
    min-width: 160px;
    width: calc(50% - 10px);
    color: white;
    padding: 6px 12px 6px 0;
    -webkit-transition: all 0.1s ease-out 0.1s;
    -moz-transition: all 0.1s ease-out 0.1s;
    -o-transition: all 0.1s ease-out 0.1s;
    transition: all 0.1s ease-out 0.1s;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.cart-btn span {
    padding: 7px 4px;
    font-size: 16px;
    margin-right: 10px;
    -webkit-transition: all 0.1s ease-out 0.1s;
    -moz-transition: all 0.1s ease-out 0.1s;
    -o-transition: all 0.1s ease-out 0.1s;
    transition: all 0.1s ease-out 0.1s; }
.cart-btn.cart-btn-green {
    background-color: #669834; }
.cart-btn.cart-btn-green span {
    background-color: #447413;
    color: #fff; }
.cart-btn.cart-btn-green:hover {
    background-color: #467920; }
.cart-btn.cart-btn-green:hover span {
    background-color: #355a0f; }
.cart-btn i.fa.fa-shopping-cart {
    margin-left: 2px;
}
.view-details-btn i {
    position: absolute;
    top: 56%;
    right: 15px;
    margin-top: -8px;
    opacity: 0;
    transition: .3s all ease;
}

.view-details-btn:hover i {
    opacity: 1;
}

.new-label {
    position: absolute;
    top: 0;
    left: 0; }

.btn-square {
    height: 47px;
    padding: 14px;
    text-align: center;
    font-weight: 400;
    background-color: #E0E0E0;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.1s ease-out 0.1s;
    -moz-transition: all 0.1s ease-out 0.1s;
    -o-transition: all 0.1s ease-out 0.1s;
    transition: all 0.1s ease-out 0.1s; }
.btn-square:hover {
    background-color: #467920;
    color: white; }
.btn-square.btn-square-green {
    background-color: #669834;
    left: 50%;
    padding: 11px;
    font-size: 18px;
    color: white; }

@media screen and (max-width: 767px) {
    .hidden-xs {
        display: none; } }

.homepage .jumbotron .container {
    padding: 0px 15px 50px; }
@media screen and (min-width: 992px) {
    .homepage .jumbotron .container {
        background-image: url("../images/new-boxes.png");
        background-position: bottom right;
        background-repeat: no-repeat; } }

.jumbotron {
    background-image: url("../images/Rectangle%201.png");
    background-size: cover;
    background-position: center center;
    color: #fff; }
.jumbotron * {
    color: #fff;
    line-height: normal;
}
.jumbotron.jumbotron-color-bg {
    background-image: none;
    background-color: #669834; }
.jumbotron h1 {
    font-size: 42px;
    margin-bottom: 10px; }
.jumbotron h3 {
    font-size: 20px;
    margin: 5px 0 35px; }
.jumbotron h1, .jumbotron h3 {
    font-weight: 300; }
.jumbotron .btn {
    min-width: 230px; }
.jumbotron .btn:first-of-type {
    margin-right: 35px; }
@media screen and (max-width: 991px) {
    .jumbotron {
        text-align: center;
        background-size: contain; }
    .jumbotron .container {
        background: none; }
    .jumbotron h1 {
        font-size: 1.8em; }
    .jumbotron .btn:first-of-type {
        margin-right: 0;
        margin-bottom: 15px; } }

@-moz-document url-prefix() {
    .wp-logo, .mg-logo {
        width: 82px;
        height: 82px; } }

.wp-logo, .mg-logo {
    position: absolute;
    left: -72px;
    top: 5px;
    transform: scale(0.9);
    display: none; }
@media (min-width: 1200px) {
    .wp-logo, .mg-logo {
        display: block; } }

.mg-logo {
    transform: scale(1);
    left: -65px;
    top: 10px; }

.banner-container {
    text-align: center; }
@media screen and (min-width: 768px) {
    .banner-container {
        text-align: right; } }

.text-section {
    padding-top: 20px; }
.text-section p img.pull-left {
    margin: 0 15px 15px 0; }

.featured-section {
    overflow-x: hidden;
    padding-bottom: 60px; }

.plugins-list {
    margin-top: 0;
    margin-bottom: 15px; }
.plugins-list li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 14.16667%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    padding: 5px;
    height: 155px;
    font-size: 14px; }
.plugins-list li:before, .plugins-list li:after {
    content: '';
    display: table; }
.plugins-list li:after {
    clear: both; }
.plugins-list li:last-child {
    margin-right: 0%; }
.plugins-list li a {
    display: inline-block;
    color: #333; }
.plugins-list li a span {
    font-weight: 400;
    position: relative;
    top: -7px; }
@media (max-width: 767px) {
    .plugins-list li {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 50%;
        margin-left: 0%;
        margin-right: 0%; }
    .plugins-list li:before, .plugins-list li:after {
        content: '';
        display: table; }
    .plugins-list li:after {
        clear: both; } }
.plugins-list li:hover {
    background-color: #eee; }

.wp-sprite, .mg-sprite {
    background: url("../images/sprite2.png") no-repeat;
    display: block;
    margin: 0 auto;
    height: 110px;
    width: 89px; }

.wp-sprite-1 {
    background-position: -6px -6px; }

.wp-sprite-2 {
    background-position: -186px -2px; }

.wp-sprite-3 {
    background-position: -371px -3px; }

.wp-sprite-4 {
    background-position: -556px -2px; }

.wp-sprite-5 {
    background-position: -740px -2px; }

.wp-sprite-6 {
    background-position: -924px -2px; }

.mg-sprite {
    background: url("../images/magento-plugins.png") no-repeat;
    width: 94px;
    height: 100px;
    transform: scale(0.85);
    min-height: 110px; }

.mg-sprite-1 {
    background-position: 0 0; }

.mg-sprite-2 {
    background-position: -164px 0; }

.mg-sprite-3 {
    background-position: -359px 0; }

.mg-sprite-4 {
    background-position: -542px -1px; }

.mg-sprite-5 {
    background-position: -707px -1px; }

.mg-sprite-6 {
    background-position: -875px -1px; }

.support-section {
    padding: 25px 0 15px;
    background-color: #EDEDED; }
.support-section img {
    margin: 0 auto -30px; }
@media (max-width: 767px) {
    .support-section img {
        margin: 0 auto 10px; } }

.support-header {
    background-color: #fff;
    padding: 9px 35px;
    border-radius: 30px;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px; }
.support-header + p {
    font-size: 20px; }

.support-list {
    margin-top: 48px; }
.support-list li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
.support-list li:before, .support-list li:after {
    content: '';
    display: table; }
.support-list li:after {
    clear: both; }
.support-list li:last-child {
    margin-right: 0%; }
@media (max-width: 767px) {
    .support-list li {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 50%;
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 30px; }
    .support-list li:before, .support-list li:after {
        content: '';
        display: table; }
    .support-list li:after {
        clear: both; }
    .support-list li:nth-child(2n) {
        margin-right: 0%;
        float: right; }
    .support-list li:nth-child(2n + 1) {
        clear: both; } }
.support-list li .support-header {
    position: relative;
    width: 135px;
    padding: 12px 0;
    margin: 0; }
.support-list li .support-header div {
    margin: 0 auto; }
.support-list li p {
    font-size: 15px; }
.support-list li h4 {
    font-size: 18px;
    margin: 5px 0;
    font-weight: bold;
}
.support-list li .support-heading {
    color: #333; }

.blog-section {
    padding: 60px 0; }
.blog-section .blog-item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    padding: 12px 15px 5px; }
.blog-section .blog-item:before, .blog-section .blog-item:after {
    content: '';
    display: table; }
.blog-section .blog-item:after {
    clear: both; }
.blog-section .blog-item:last-child {
    margin-right: 0%; }
@media (max-width: 767px) {
    .blog-section .blog-item {
        margin-bottom: 30px;
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .blog-section .blog-item:first-child {
        margin-left: auto; }
    .blog-section .blog-item:last-child {
        margin-right: auto; } }
@media screen and (max-width: 1199px) {
    .blog-section .blog-item {
        padding: 15px 30px; }
    .blog-section .blog-item:before {
        left: 15px; }
    .blog-section .blog-item:after {
        right: 15px; } }
.blog-section .blog-item h3 {
    margin: 15px 0 0; }
.blog-section .blog-item .blog-item-text {
    overflow-y: auto; }
@media screen and (min-width: 1024px) {
    .blog-section .blog-item .blog-item-text {
        height: 200px; } }
.blog-section .blog-item .blog-item-text h4 {
    margin: 10px 0;
    font-weight: normal; }
.blog-section .blog-item .blog-item-text p {
    font-size: 14px; }

.jumbotron.jumbotron-noFade-bg {
    background-image: url("../images/top_store.png"); }

.jumbotron h1 {
    margin-bottom: 5px; }
.jumbotron h1 b {
    font-weight: 400; }

.jumbotron h3 {
    margin: 5px 0 13px; }

.page-info {
    padding: 0 0 10px 0 }
.page-info p .icon {
    margin-right: 15px; }

.page-info-left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.5%;
    margin-left: 0%;
    margin-right: 2%; }
.page-info-left:before, .page-info-left:after {
    content: '';
    display: table; }
.page-info-left:after {
    clear: both; }
.page-info-left:last-child {
    margin-right: 0%; }
@media (max-width: 767px) {
    .page-info-left {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .page-info-left:first-child {
        margin-left: auto; }
    .page-info-left:last-child {
        margin-right: auto; } }
@media (min-width: 768px) and (max-width: 991px) {
    .page-info-left {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 69.1%;
        margin-left: 0%;
        margin-right: 3%; }
    .page-info-left:before, .page-info-left:after {
        content: '';
        display: table; }
    .page-info-left:after {
        clear: both; }
    .page-info-left:last-child {
        margin-right: 0%; } }

.page-info-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
.page-info-right:before, .page-info-right:after {
    content: '';
    display: table; }
.page-info-right:after {
    clear: both; }
.page-info-right:last-child {
    margin-right: 0%; }
@media (max-width: 767px) {
    .page-info-right {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .page-info-right:first-child {
        margin-left: auto; }
    .page-info-right:last-child {
        margin-right: auto; } }
@media (min-width: 768px) and (max-width: 991px) {
    .page-info-right {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 27.9%;
        margin-left: 0%;
        margin-right: 3%; }
    .page-info-right:before, .page-info-right:after {
        content: '';
        display: table; }
    .page-info-right:after {
        clear: both; }
    .page-info-right:last-child {
        margin-right: 0%; } }

.additional-promo {
    position: relative;
    padding: 18px 0 0;
    font-size: 13px; }
.additional-promo h4 {
    font-size: 21px;
    font-weight: 400; }
.additional-promo b {
    display: block;
    font-size: 16px; }
.additional-promo * {
    margin: 0; }

.line-hr {
    width: 100%;
    height: 1px;
    background-image: url("../images/line-hr.png");
    background-position: center center;
    background-repeat: no-repeat; }

.plugins-nav-list {
    position: relative;
    background-color: #fff;
    padding-bottom: 2px; }
.plugins-nav-list ul {
    float: left;
    padding: 0 14px 0 0;
    margin: 0;
    position: relative; }
.plugins-nav-list ul:last-child {
    padding-right: 0;
    float: right; }
.plugins-nav-list ul li a {
    color: inherit; }
.plugins-nav-list ul li a:hover {
    color: #669834; }
.plugins-nav-list ul li.more-link {
    padding-left: 30px; }
.plugins-nav-list ul li.all-plugins-link {
    padding-right: 15px; }
.plugins-nav-list ul li.all-plugins-link.xs {
    display: none; }
@media screen and (max-width: 767px) {
    .plugins-nav-list ul li.all-plugins-link {
        display: none; }
    .plugins-nav-list ul li.all-plugins-link.xs {
        display: inline-block; } }
.plugins-nav-list ul.filter-list li {
    margin: 0; }
.plugins-nav-list ul.type-list:before {
    content: 'Type';
    position: absolute;
    top: -15px;
    left: 46px;
    font-size: 12px;
    font-weight: 400;
    color: #808080; }
@media screen and (max-width: 767px) {
    .plugins-nav-list ul.type-list:before {
        left: 6px; } }
.plugins-nav-list ul.usage-list:before {
    content: 'Usage';
    position: absolute;
    top: -15px;
    left: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #808080; }
@media screen and (max-width: 1199px) {
    .plugins-nav-list ul {
        padding: 0 10px 0 0;
        display: block;
        float: none;
        margin-bottom: 20px; }
    .plugins-nav-list ul:last-child {
        padding-right: 0;
        float: left; }
    .plugins-nav-list ul li.more-link {
        padding: 0; } }

.plugins-listing {
    padding: 10px 0; }

.plugin-block, .popular-block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    position: relative;
    height: 375px;
    background-color: white;
    margin-bottom: 35px;
    font-size: 14px; }
.plugin-block:before, .popular-block:before, .plugin-block:after, .popular-block:after {
    content: '';
    display: table; }
.plugin-block:after, .popular-block:after {
    clear: both; }
.plugin-block:nth-child(3n), .popular-block:nth-child(3n) {
    margin-right: 0%;
    float: right; }
.plugin-block:nth-child(3n + 1), .popular-block:nth-child(3n + 1) {
    clear: both; }
@media (min-width: 768px) and (max-width: 991px) {
    .plugin-block, .popular-block {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
        height: 380px; }
    .plugin-block:before, .popular-block:before, .plugin-block:after, .popular-block:after {
        content: '';
        display: table; }
    .plugin-block:after, .popular-block:after {
        clear: both; }
    .plugin-block:nth-child(3n), .popular-block:nth-child(3n) {
        margin-right: 3%;
        float: left; }
    .plugin-block:nth-child(3n + 1), .popular-block:nth-child(3n + 1) {
        clear: none; }
    .plugin-block:nth-child(2n), .popular-block:nth-child(2n) {
        margin-right: 0%;
        float: right; }
    .plugin-block:nth-child(2n + 1), .popular-block:nth-child(2n + 1) {
        clear: both; } }
@media screen and (max-width: 600px) {
    .plugin-block, .popular-block {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
    .plugin-block:first-child, .popular-block:first-child {
        margin-left: auto; }
    .plugin-block:last-child, .popular-block:last-child {
        margin-right: auto; } }
@media screen and (min-width: 601px) and (max-width: 767px) {
    .plugin-block, .popular-block {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%; }
    .plugin-block:before, .popular-block:before, .plugin-block:after, .popular-block:after {
        content: '';
        display: table; }
    .plugin-block:after, .popular-block:after {
        clear: both; }
    .plugin-block:nth-child(3n), .popular-block:nth-child(3n) {
        margin-right: 3%;
        float: left; }
    .plugin-block:nth-child(3n + 1), .popular-block:nth-child(3n + 1) {
        clear: none; }
    .plugin-block:nth-child(2n), .popular-block:nth-child(2n) {
        margin-right: 0%;
        float: right; }
    .plugin-block:nth-child(2n + 1), .popular-block:nth-child(2n + 1) {
        clear: both; } }
.plugin-block .plugin-block-img-holder, .popular-block .plugin-block-img-holder {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
.plugin-block .plugin-block-img-holder:before, .popular-block .plugin-block-img-holder:before, .plugin-block .plugin-block-img-holder:after, .popular-block .plugin-block-img-holder:after {
    content: '';
    display: table; }
.plugin-block .plugin-block-img-holder:after, .popular-block .plugin-block-img-holder:after {
    clear: both; }
.plugin-block .plugin-block-img-holder:last-child, .popular-block .plugin-block-img-holder:last-child {
    margin-right: 0%; }
@media screen and (max-width: 767px) {
    .plugin-block .plugin-block-img-holder .wp-sprite, .popular-block .plugin-block-img-holder .wp-sprite, .plugin-block .plugin-block-img-holder .mg-sprite, .popular-block .plugin-block-img-holder .mg-sprite {
        transform: scale(0.7);
        height: 90px; } }
.plugin-block .plugin-block-txt-holder, .popular-block .plugin-block-txt-holder {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%; }
.plugin-block .plugin-block-txt-holder:before, .popular-block .plugin-block-txt-holder:before, .plugin-block .plugin-block-txt-holder:after, .popular-block .plugin-block-txt-holder:after {
    content: '';
    display: table; }
.plugin-block .plugin-block-txt-holder:after, .popular-block .plugin-block-txt-holder:after {
    clear: both; }
.plugin-block .plugin-block-txt-holder:last-child, .popular-block .plugin-block-txt-holder:last-child {
    margin-right: 0%; }
.plugin-block .plugin-block-txt-holder span, .popular-block .plugin-block-txt-holder span {
    color: #808080; }
.plugin-block .plugin-block-txt-holder a, .popular-block .plugin-block-txt-holder a {
    color: inherit; }
.plugin-block .plugin-block-txt-holder h3, .popular-block .plugin-block-txt-holder h3 {
    margin-top: 6px;
    margin-bottom: 22px; }
@media (max-width: 767px) {
    .plugin-block .plugin-block-txt-holder, .popular-block .plugin-block-txt-holder {
        padding-top: 10px; } }
.plugin-block .plugin-block-body, .popular-block .plugin-block-body {
    padding: 42px 18px 0; }
.plugin-block .btn-square, .popular-block .btn-square {
    width: 50%;
    position: absolute;
    bottom: 0; }
.plugin-block .plugin-block-sale, .popular-block .plugin-block-sale {
    position: absolute;
    top: 7px;
    right: 55px;
    font-weight: bold;
    display: inline-block;
    padding: 0 15px;
    font-size: 17px; }

.popular-block {
    border: 1px solid #d7d7d7;
    margin-top: 30px; }
.popular-block .popular-block-title {
    padding: 15px;
    font-weight: normal; }
.popular-block .popular-block-body {
    padding: 0 28px; }
.popular-block .popular-block-all-link {
    margin-top: 20px; }
.popular-block .popular-block-all-link a {
    font-weight: 600; }
@media screen and (max-width: 767px) {
    .popular-block {
        height: auto; } }

.custom-catalog .plugin-block .btn-square, .popular-block .btn-square {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.custom-catalog .plugin-block .plugin-block-body, .popular-block .plugin-block-body {
    padding: 20px 18px 0;
}

* {
    box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    font-size: 16px; }

body.page-template-mainstore,
body.page-template-mainstoremagento
{
    font-size: 14px; }

/*CUSTOM CSS MERGED*/

div#tt {
    z-index: 150000;
}

.et_pb_widget h4.widgettitle {
    font-weight: 500;
    color: #539026;
}
#sidebar .et_pb_widget  li {
    padding-bottom:10px;
}

.widget-title {
    font-weight: 500;
    color: #539026;
    font-size: 18px;
}

.affiliates-registration .required {
    background: none;
    font-size: 17px;
}

.affiliates-registration input[type="text"], .affiliates-registration textarea {
    padding: 7px 20px;
    border-radius: 10px;
}

.cmpc-container.image-tiles .button, .button-secondary, .submit input, input[type=button], input[type=submit] {
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    background: #539026;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.et_pb_slide_with_image .et_pb_slide_description {
    padding-top: 110px;
    padding-bottom: 72px;
}
.et_pb_slider:hover .et-pb-arrow-prev, .et_mobile_device .et-pb-arrow-prev {
    left: -5px;
    opacity: 1;
}
.et_pb_slider:hover .et-pb-arrow-next, .et_mobile_device .et-pb-arrow-next {
    right: 0px;
    opacity: 1;
}

.et_pb_slider.et_pb_slider_no_pagination.et_pb_slider_parallax.et_slider_auto.et_slider_speed_9000.et_pb_bg_layout_dark {
    height: auto;
}

#edd_checkout_form_wrap fieldset {
    margin: 0 0 10px;
}

#edd_checkout_form_wrap p {
    margin: 0 0 15px;
}

#edd_sl_show_renewal_form_wrap  {
    padding-bottom: 5px !important;
    font-size:14px !important;
}


#edd_sl_renewal_fields p {
    background-image: url("https://www.cminds.com/wp-content/themes/Divi/images/licensekey.png");
    background-repeat: no-repeat;
    padding-left: 36px;
    background-size: 30px;
}

#edd_checkout_form_wrap #edd_show_discount {
    background-image: url("https://www.cminds.com/wp-content/themes/Divi/images/discountcode.png");
    background-repeat: no-repeat;
    padding-left: 36px;
    background-size: 30px;
    border: 0px solid #eee !important;
}

#edd-email-wrap {
    padding-bottom: 5px !important;
}

#edd-first-name-wrap {
    padding-bottom: 5px !important;
}

#edd-last-name-wrap {
    padding-bottom: 5px !important;
}

#edd_final_total_wrap {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

#edd_terms P {
    padding-bottom: 5px !important;
}

#edd_checkout_form_wrap .edd-payment-icons {
    margin: 20px 0px 8px 15px !important;
}

#edd_checkout_form_wrap fieldset fieldset {
    margin: 0px 0px 0px 20px;
}

#edd_checkout_form_wrap #edd_discount_code{
    padding: 0.5em 1.387em;
    background: none repeat scroll 0% 0% #FAFAFA;
    margin: 0px 0px 10px;
    border: 1px solid #EEE;
}

#affwp-affiliate-dashboard-tabs {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 24px;
}
#affwp-affiliate-dashboard-tabs li {
    position: relative;
    z-index: 0;
    margin: 0 10px;
    padding: 0 10px;
    border: 1px solid #AAA;
    background: #ECECEC;
    display: inline-block;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background:      -o-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background:     -ms-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background:    -moz-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background: -webkit-linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    background: linear-gradient(top, #ECECEC 50%, #D1D1D1 100%);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #FFF;
    text-shadow: 0 1px #FFF;
    margin: 0 -5px;
    padding: 0 20px;
}

#affwp-affiliate-dashboard-tabs li.selected {
    background: #FFF;
    color: #000;
    z-index: 2;
    border-bottom-color: #FFF;
}

#affwp-affiliate-dashboard-tabs:before {
    z-index: 1;
}

#affwp-affiliate-dashboard-tabs:after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #AAA;
    z-index: 1;
}

#affwp-affiliate-dashboard-tabs li:before {
    border-bottom-right-radius: 6px;
    border-width: 0 1px 1px 0;
    box-shadow: 2px 2px 0 #ECECEC;
}

#affwp-affiliate-dashboard-tabs li:after {
    border-bottom-left-radius: 6px;
    border-width: 0 0 1px 1px;
    box-shadow: -2px 2px 0 #ECECEC;
}

#affwp-affiliate-dashboard-tabs li.selected:before {
    box-shadow: 2px 2px 0 #FFF;
}
#affwp-affiliate-dashboard-tabs li.selected:after {
    box-shadow: -2px 2px 0 #FFF;
}

#fancybox-overlay{z-index: 999100}

#fancybox-wrap{z-index: 999101}

.storebold { font-weight: bold; font-weight: 700;
             color: #539026 !important;}

@media screen and (max-width: 767px) {
    .et_pb_section_parallax .et_pb_parallax_css, .et_pb_slides .et_parallax_bg.et_pb_parallax_css {
        background-position: center right;
    }
}

@media (max-width: 767px) {
    a.button, a.buttongreen, a.button-primary, a.button-secondary {
        display: inline-block;
        margin-top: 5px;
    }

    #left-area .entry-content  td  a  img {
        width: 600px!important;
        max-width: none;
    }
    #left-area .entry-content  td {
        word-break: break-all;
    }

    #left-area .entry-content  tr:first-child  td:first-child,
    #left-area .entry-content  tr:first-child td:first-child + td
    {
        display:none;
    }

    #left-area .entry-content .et-tabs-container .et-tabs-control{
        display: block;
    }

    #left-area .entry-content .et-tabs-container .et-tabs-control li.active {
        display: block;
        width: 50%;
        margin-left: 25% !important;
        text-align: center;
    }

    #left-area .entry-content .et-tabs-container .et-tabs-control li {
        display: none;
    }

    form.edd_download_purchase_form .newpricebox {
        padding: 10px;
    }

}

@media (max-width: 479px) {

    #wordpress_catalog{
        float: right;
        margin-left: 0;
    }

}

.et-testimonial {
    padding: 15px 10px 10px 20px !important; }
.et-testimonial:before {
    position:  relative !important; }
.t-bottom-arrow {
    position: relative  !important; }

.edd_purchase_submit_wrapper input[type="submit"] {
    padding: 10px 80px !important;
}

.edd_price_options  input[type="submit"] {
    padding: 10px 10px !important;
    background: #5cb85c !important;
    font-size: 12px !important;
}

.edd-sd-share {
    /* background: #f6f6f6; */
    padding: 5px;
    /* float: left; */
    width: 225px;
    background: -webkit-linear-gradient(top, #f0f8fd 0%,#e1f1fb 100%);
    border: 1px solid #9db4d9;
    border-radius: 5px;
    color: #666666;
    padding: 10px;
}
.et-social-facebook a.icon:before { content: 'e093'; }

.et-tabs-container {
    margin: 0px 0px 15px;
}

.pricing-table a.icon-button {
    width: 60px !important;
}

.et-pricing {
    margin: 0px 0 10px;
}

.newpricebox {
    display: block;
    border-radius: 4px;
    border: 1px #ddd solid;
    background-color: white;
    padding: 10px 35px 10px 35px;
    margin: 10px 0px 10px 0px;
}

.entry-content tr td {
    border-top: 0px solid #fff !important;
}

.et-tabs-container .et-tabs-control li a {
    font-size: 13px !important; }

.et_pb_text_align_left_special {
    text-align: left;
    margin-left: 430px;
    max-width: 650px;
    max-height:150px;
}

.edd-sd-message {margin-bottom:15px;}

#edd-payment-mode-wrap .edd-gateway-ordered label img {
    max-height: 25px !important;
}

.upsale input[type="submit"] {
    font-size: 12px !important;
    line-height: 10px !important;
    background: #8cbd44 !important;
    padding: 4px 4px 4px 4px;
}

#edd-purchase-button, .edd-submit, input[type=submit].edd-submit {
    padding: 6px 12px !important;
    font-size: 22px !important;
    background: #669834 !important;
}

#edd-purchase-button, .edd-submit, input[type=submit].edd-submit:hover {
    color: white !important;}

.afp-module .afp-module-actions a:hover {
    color: lightyellow !important; }

.afp-module-actions-featured  a:hover {color: lightyellow !important; }

.ssbp-wrap .ssbp-list {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

#et-top-navigation {
    padding-top: 14px;
}

.cmtt-categories-filter a.cmtt-glossary-category {background:#a8a8a8; color:white !important; border: 1px solid !important;
                                                  border-radius: 25px; padding: 5px !Important; font-weight:700 !important;}
.cmtt-categories-filter a.selected {background:#696969!important; color:white !important; }
.cmtt-categories-filter {padding: 10px 0px 10px 0px;}

.et-fixed-header #logo {
    max-height: 43px !important;
}

#et_top_seal {
    margin-top: 0px !important; }
#et_top_ssl {
    margin-top: 11px !important; }

body {
    font-family: 'Open Sans', Arial, sans-serif !important; }

#et_top_search {
    margin-top: 10px !important;
    margin-left: 8px  !important; }


.afp-module-actions-filter #afp-search-input {
    width: 300px;
}

.cminds-blog-hr {margin-top:30px; margin-bottom:30px; border: none;
                 height: 1px;
                 /* Set the hr color */
                 color: #ededed; /* old IE */
                 background-color: #ededed; /* Modern Browsers */
}

.nav-previous {background: #539026;}
.nav-next {background: #539026;}
.nav-previous a { color:white;}
.nav-next  a {color:white;}

.menu-social-container ul li {display: inline; }

.rpwe-ul li:before, #menu-social li:before {
    border-color: transparent!important;
}

@media screen and (max-width: 767px){
    .et_pb_text_align_left_special {
        margin-left: 0;
        max-width: none;
        max-height: none;
        box-sizing: border-box;
        padding: 15px;
    }
}

.afp-module h3 {padding-bottom:15px;}
.afp-module-featured h3 {padding-bottom:15px;}

.promotionwp {
    color:white;background:#9EBC80; padding:10px; margin-top:10px;}
.promotionwp a {
    color:white; text-decoration:underline;}
.promotionwphp {
    color:white;background:#63695D; padding:10px;}
.promotionwphp a {
    color:white; text-decoration:underline;}

.promotionmage {
    color:white;background:#63695D; padding:10px; margin-top:10px;}
.promotionmage a {
    color:white; text-decoration:underline;}
.promotionmagehp {
    color:white;background:#63695D; padding:10px;}
.promotionmagehp a {
    color:white; text-decoration:underline;}

/*Related Posts for blog */

.cm-single-post .relatedposts {max-width: 800px; margin: 0 0 20px 0; float: left; font-size: 12px;}
.cm-single-post .relatedposts h3 {font-size: 20px; margin: 0 0 5px 0; }
.cm-single-post .relatedthumb {margin: 0 45px 0 1px; float: left; }
.cm-single-post .relatedthumb img {margin: 0 0 3px 0; padding: 0;}
.cm-single-post .relatedthumb a {color :#333; text-decoration: none; display:block; padding: 4px; width: 150px; font-size:16px;}
.cm-single-post .relatedthumb a:hover {background-color: #ddd; color: #000;}

@media screen and (max-width: 560px){
    .relatedposts {
        max-width: 100% !important;
    }
    .cm-single-post .relatedthumb a{
        width: 100%;
        max-width: 100%;
        font-size: 13px;
        line-height: 18px;
        min-height: 250px;
    }
    .relatedthumb {
        width: 50% !important;
        margin: 0 auto !important;
        float: left !important;
    }
}

.rpwe-thumb {
    border: 0px solid #EEE !important;
}

/*CM Plugins Catalog HP Widget */

.afp-hp-widget .relatedposts {max-width: 800px; margin: 0 0 10px 0; float: left; font-size: 12px;}
.afp-hp-widget .relatedposts h3 {font-size: 20px; margin: 0 0 5px 0; }
.afp-hp-widget .relatedthumb {margin: 0 10px 0 1px; float: left; min-height: 240px; }
.afp-hp-widget .relatedthumb img {margin: 0 0 3px 0; padding: 0;}
.afp-hp-widget .relatedthumb a {color :#333; text-decoration: none; display:block; padding: 4px; width: 150px; font-size:16px;}
.afp-hp-widget .relatedthumb a:hover {background-color: #ddd; color: #000;}

.cm-single-post .relatedposts {
    margin: 40px 0 20px 0;}

#footer-bottom {
    color: rgb(210, 200, 200) !important;
    font-weight: 500; }

.et_pb_slide_with_image .et_pb_slide_description {
    width: 520px;
}

@media only screen and (max-width: 1100px) and (min-width: 981px) {
    .et_pb_slide_with_image .et_pb_slide_description,.et_pb_slide_video {
        width: 520px;
    }
}

@media only screen and (max-width: 980px)
{
    .et_pb_slide_with_image .et_pb_slide_description, .et_pb_slide_video{
        width: 480px;
    }
}

#affwp-affiliate-dashboard-tabs {
    background: linear-gradient(to bottom, #1A8ACB 0%,#09527C 100%);
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-border-radius: 10px;
    text-align: left;
    margin-bottom: 15px!important;
    border: 1px solid transparent;
    height: 46px;
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li {
    float: left;
    margin: 0;
    padding: 10px 15px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    border-right: 1px solid #eee;
    text-shadow: none;
}

@media screen and (max-width: 767px) {
    #affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li {
        float: none;
        display: inline-block;
        border: none;
        width: 38%;
    }
    #affwp-affiliate-dashboard-tabs {
        height: auto;
    }
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li.active {
    background-color: #fff;
    border: 1px solid #eee;
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li.active a {
    color: #000;
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li a {
    color: #fff;
}

#affwp-generate-ref-url input[type='submit'] {
    width: 200px;
    display: block;
    margin: 0 auto;
}

pre {
    white-space: pre-line;
}

#edd_checkout_cart_wrap {
    font-size: 18px;
    margin-top: 15px
}

#edd_checkout_wrap h4 {font-size:14px;}

.edd_empty_cart {font-size: 20px !important; margin-top:20px; color:green;}

#edd-license-key-container-wrap input[type=text] {
    width: 300px !important;
}

#edd-discount-code-wrap input[type=text] {
    width: 300px !important;
}
#edd-discount-code-wrap img {
    display: none !important;
}

.edd_cart_item_name {width:600px !important;
                     min-width:200px;}
.edd_cart_item_price {
    width:100px;}
.edd_cart_actions {
    width:50px;}

.afp-module-featured {
    background: #fff !important;
}
.afp-module-actions-featured {
    background: #fff !important; }

.afp-module-actions a {
    color: #539026 !important;
    font-weight: normal !important; }

div.afp-module .afp-module-actions a:hover {
    color: #539026 !important;
    font-weight: bold !important; }

.more-info-link  a {
    color: #fff !important;
    font-weight: normal !important; }

.et_pb_slide_description h2 {
    margin-bottom: 30px;
}

#edd_checkout_form_wrap .edd_errors {
    font-size: 16px;
    font-weight: 700;
}
#edd_checkout_form_wrap #edd_show_discount {
    font-size: 14px !important;
}
#edd_final_total_wrap {
    font-size: 20px !important;
}
#edd_show_terms {
    visibility: hidden;
}


#edd_checkout_form_wrap legend {
    font-size:20px;
    line-height: 1.6 !important;
}
#edd_checkout_form_wrap legend {
    background-image: url("https://www.cminds.com/wp-content/themes/Divi/images/square_arrow_2.png");
    background-repeat: no-repeat;
    padding-left: 44px;
    background-size: 40px;
}


.edd-payment-mode-label {
    margin-bottom: 12px !important;
    font-size: 20px;
}
.edd-payment-mode-label  {
    background-image: url("https://www.cminds.com/wp-content/themes/Divi/images/square_arrow_1.png");
    background-repeat: no-repeat;
    padding-left: 44px;
    background-size: 40px;
}

#cm_before_edd_checkout {
    margin-bottom: 0px !important;
    margin-top: 20px !important;
    font-size: 20px;
    font-weight:700;
}
#cm_before_edd_checkout  {
    background-image: url("https://www.cminds.com/wp-content/themes/Divi/images/square_arrow_3.png");
    background-repeat: no-repeat;
    padding-left: 44px;
    background-size: 40px;
}

#cm_before_edd_checkout_title {
    margin-top: 16px !important;
    margin-bottom:5px !important;
    color:#a5a5a5
}

.special_offer_cehckout {border: 1px solid #eee; padding: 10px 15px 10px 15px !important; background: #fafafa; margin-bottom:10px; cursor: pointer; font-size:14px !important;}

.special_offer_cehckout_mage {border: 1px solid #eee; padding: 10px 15px 10px 15px !important; background: #fafafa; margin-bottom:10px; cursor: pointer;}

.special_offer_cehckout_subscription {border: 1px solid #eee; padding: 10px 15px 10px 15px !important; background: #fafafa; margin-bottom:10px; cursor: pointer;}

#edd-discount-error-wrap {margin-left:20px !important;}

.edd-sl-renewal-actions  input[type=submit] { font-size:14px !important; padding: 5px !important;}
#edd-discount-code-wrap  input[type=submit] { font-size:14px !important; padding: 5px !important;}
#edd_sl_cancel_renewal_form  input[type=submit] { font-size:14px !important; padding: 5px !important; background:#a5a5a5 !important;}

#edd-email {
    background-color: #fff !important;
    border: 1px solid #bbb !important;
}
input[type=checkbox]
{
    -webkit-appearance:checkbox !important;
}
input[type=radio]
{
    -webkit-appearance:radio !important;
}

#edd_checkout_form_wrap span.edd-required-indicator {
    font-size:20px !important;
}

.et_pb_post   {
    line-height: 32px !important;
    font-size: 20px !important;
}

.et_pb_post p  {
    line-height: 32px;
    font-size: 20px;
    margin-bottom:20px;
}
.et_pb_post ul li  {
    line-height: 32px;
    font-size: 20px;
    margin-bottom:15px;
}


.et_pb_post h3  {
    margin-top:20px;
    margin-bottom:20px;
    font-size: 23px;
}

.et_pb_post h2 {
    margin-top: 40px;
    font-size: 25px;
    font-weight: 500;
    margin-bottom:20px;
}
.et_pb_post img {   margin-bottom:20px;
}
.wp-caption {   margin-bottom:20px !important;
}

.blog-index-content {
    font-size: 20px;
}

#left-area .post-meta {
    border-bottom: 0px solid #EBEBEB !important;
    border-top: 0px solid #EBEBEB !important;
    color: #000 !important;
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-style: normal !important;
    font-size: 15px !important;
}

.post {
    border: 1px solid #f9f9f9 !important;}

.end-search-result {
    border: 1px solid #ededed;
}

h3.search-results {
    font-size: 26px;
}
a.more-link {
    background-color: #539026;
    color: white !important;
}

.afp-module-featured, .afp-module {
    min-height: 320px !important;
    min-width: 340px !important;
}

.homepage {
    /*margin-top: 30px;*/
}
.jumbotron h1 {
    margin-top: 70px;
}
.jumbotron.jumbotron-store h1 {
    margin-top: 0px;
}
.cminds-blog {
    margin-top: 40px;
}
.cm-single-post {
    margin-top: 40px;
}
.single-page {
    margin-top: 40px;
}
.edd-checkout {
    margin-top: 40px;
}
.blog {
    margin-top: 52px;
}
.archive {
    margin-top: 52px;
}
.error404 {
    margin-top: 60px;
}
.page #sidebar,
.cm-single-post #sidebar,
.single-page #sidebar,
.edd-checkout #sidebar,
.error404 #sidebar
{
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .edd-checkout {
        margin-top: 80px;
    }

    .et_pb_slide_content {
        display: none;
    }
    .special_offer_cehckout_mage {
        display: none;
    }
    .special_offer_cehckout_subscription {
        display: none;
    }
    .special_offer_cehckout {
        display: none;
    }
    .hide-mobile-store {
        display: none;
    }
    #edd-payment-mode-wrap {
        font-size:12px !important;
    }
    .afp-module-actions-filter {
        display: none;
    }
    input, textarea {
        -webkit-appearance: none;
        -webkit-border-radius: 0;
    }
    .purchase_button  {
        -webkit-appearance: none !important;
        -webkit-border-radius: 0  !important;

    }
    .edd_cart_actions {
        display: none;}
    #sidebar  {
        display: none;}
    .relatedposts {
        width:400px !important;}
    #show-on-mobile  {
        display: inline !important;}
    .et_pb_slide_description h2 {
        font-size: 36px !important;
    }
    .blog-image-wrapper {
        float: none;
    }
    .entry-content {
        margin-left: 0!important;
    }
    #edd_checkout_wrap a.edd_cart_remove_item_btn {
        display: none !important;
    }
}

.pricing-table a.icon-button {
    width: 100px !important;
}

.edd_download_purchase_form .product-table tr:first-child a img {
    margin: 0;
}

div#main-content.cm-single-download p {
    font-size: 14px;
}

/*CUSTOM CSS MERGED - END*/

ul#menu-social * {
    font-size: 25px;
}

div#footer-widgets,
div#footer-bottom
{
    font-size: 14px;
}

div#et-main-navigation{
    display: inline-block;
}