
.pure-button {
    /* Structure */
    display: inline-block;
    *display: inline; /*IE 6/7*/
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: baseline;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/*csslint outline-none:false*/

.pure-button {
    font-family: inherit;
    font-size: 100%;
    *font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
    *overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
    padding: 0.5em 1em;
    color: #444; /* rgba not supported (IE 8) */
    color: rgba(0, 0, 0, 0.80); /* rgba supported */
    *color: #444; /* IE 6 & 7 */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    background-color: #E6E6E6;
    text-decoration: none;
    border-radius: 2px;
}

.pure-button-hover,
.pure-button:hover,
.pure-button:focus {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
    background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.pure-button:focus {
    outline: 0;
}
.pure-button-active,
.pure-button:active {
    box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
}

.pure-button[disabled],
.pure-button-disabled,
.pure-button-disabled:hover,
.pure-button-disabled:focus,
.pure-button-disabled:active {
    border: none;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    filter: alpha(opacity=40);
    -khtml-opacity: 0.40;
    -moz-opacity: 0.40;
    opacity: 0.40;
    cursor: not-allowed;
    box-shadow: none;
}

.pure-button-hidden {
    display: none;
}

/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner{
    padding: 0;
    border: 0;
}

.pure-button-primary,
.pure-button-selected,
a.pure-button-primary,
a.pure-button-selected {
    background-color: rgb(0, 120, 231);
    color: #fff;
}

/*** =========== End Buttons =========== ***/

.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
.pure-form input[type="url"],
.pure-form input[type="date"],
.pure-form input[type="month"],
.pure-form input[type="time"],
.pure-form input[type="datetime"],
.pure-form input[type="datetime-local"],
.pure-form input[type="week"],
.pure-form input[type="number"],
.pure-form input[type="search"],
.pure-form input[type="tel"],
.pure-form input[type="color"],
.pure-form select,
.pure-form textarea {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]) {
    padding: 0.5em 0.6em;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
.pure-form input[type="color"] {
    padding: 0.2em 0.5em;
}


.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
    outline: 0;
    outline: thin dotted \9; /* IE6-9 */
    border-color: #129FEA;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]):focus {
    outline: 0;
    outline: thin dotted \9; /* IE6-9 */
    border-color: #129FEA;
}

.pure-form input[type="file"]:focus,
.pure-form input[type="radio"]:focus,
.pure-form input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline: 1px auto #129FEA;
}
.pure-form .pure-checkbox,
.pure-form .pure-radio {
    margin: 0.5em 0;
    display: block;
}

.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
.pure-form input[type="url"][disabled],
.pure-form input[type="date"][disabled],
.pure-form input[type="month"][disabled],
.pure-form input[type="time"][disabled],
.pure-form input[type="datetime"][disabled],
.pure-form input[type="datetime-local"][disabled],
.pure-form input[type="week"][disabled],
.pure-form input[type="number"][disabled],
.pure-form input[type="search"][disabled],
.pure-form input[type="tel"][disabled],
.pure-form input[type="color"][disabled],
.pure-form select[disabled],
.pure-form textarea[disabled] {
    cursor: not-allowed;
    background-color: #eaeded;
    color: #cad2d3;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type])[disabled] {
    cursor: not-allowed;
    background-color: #eaeded;
    color: #cad2d3;
}
.pure-form input[readonly],
.pure-form select[readonly],
.pure-form textarea[readonly] {
    background: #eee; /* menu hover bg color */
    color: #777; /* menu text color */
    border-color: #ccc;
}

.pure-form input:focus:invalid,
.pure-form textarea:focus:invalid,
.pure-form select:focus:invalid {
    color: #b94a48;
    border-color: #ee5f5b;
}
.pure-form input:focus:invalid:focus,
.pure-form textarea:focus:invalid:focus,
.pure-form select:focus:invalid:focus {
    border-color: #e9322d;
}
.pure-form input[type="file"]:focus:invalid:focus,
.pure-form input[type="radio"]:focus:invalid:focus,
.pure-form input[type="checkbox"]:focus:invalid:focus {
    outline-color: #e9322d;
}
.pure-form select {
    border: 1px solid #ccc;
    background-color: white;
}
.pure-form select[multiple] {
    height: auto;
}
.pure-form label {
    margin: 0.5em 0 0.2em;
}
.pure-form fieldset {
    margin: 0;
    padding: 0.35em 0 0.75em;
    border: 0;
}
.pure-form legend {
    display: block;
    width: 100%;
    padding: 0.3em 0;
    margin-bottom: 0.3em;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.pure-form-stacked input[type="text"],
.pure-form-stacked input[type="password"],
.pure-form-stacked input[type="email"],
.pure-form-stacked input[type="url"],
.pure-form-stacked input[type="date"],
.pure-form-stacked input[type="month"],
.pure-form-stacked input[type="time"],
.pure-form-stacked input[type="datetime"],
.pure-form-stacked input[type="datetime-local"],
.pure-form-stacked input[type="week"],
.pure-form-stacked input[type="number"],
.pure-form-stacked input[type="search"],
.pure-form-stacked input[type="tel"],
.pure-form-stacked input[type="color"],
.pure-form-stacked select,
.pure-form-stacked label,
.pure-form-stacked textarea {
    display: block;
    margin: 0.25em 0;
}

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form-stacked input:not([type]) {
    display: block;
    margin: 0.25em 0;
}
.pure-form-aligned input,
.pure-form-aligned textarea,
.pure-form-aligned select,
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
.pure-form-aligned .pure-help-inline,
.pure-form-message-inline {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}
.pure-form-aligned textarea {
    vertical-align: top;
}

/* Aligned Forms */
.pure-form-aligned .pure-control-group {
    margin-bottom: 0.5em;
}
.pure-form-aligned .pure-control-group label {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    width: 10em;
    margin: 0 1em 0 0;
}
.pure-form-aligned .pure-controls {
    margin: 1.5em 0 0 10em;
}

/* Rounded Inputs */
.pure-form input.pure-input-rounded,
.pure-form .pure-input-rounded {
    border-radius: 2em;
    padding: 0.5em 1em;
}

/* Grouped Inputs */
.pure-form .pure-group fieldset {
    margin-bottom: 10px;
}
.pure-form .pure-group input {
    display: block;
    padding: 10px;
    margin: 0;
    border-radius: 0;
    position: relative;
    top: -1px;
}
.pure-form .pure-group input:focus {
    z-index: 2;
}
.pure-form .pure-group input:first-child {
    top: 1px;
    border-radius: 4px 4px 0 0;
}
.pure-form .pure-group input:last-child {
    top: -2px;
    border-radius: 0 0 4px 4px;
}
.pure-form .pure-group button {
    margin: 0.35em 0;
}

.pure-form .pure-input-1 {
    width: 100%;
}
.pure-form .pure-input-2-3 {
    width: 66%;
}
.pure-form .pure-input-1-2 {
    width: 50%;
}
.pure-form .pure-input-1-3 {
    width: 33%;
}
.pure-form .pure-input-1-4 {
    width: 25%;
}

/* Inline help for forms */
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
.pure-form .pure-help-inline,
.pure-form-message-inline {
    display: inline-block;
    padding-left: 0.3em;
    color: #666;
    vertical-align: middle;
    font-size: 0.875em;
}

/* Block help for forms */
.pure-form-message {
    display: block;
    color: #666;
    font-size: 0.875em;
}

@media only screen and (max-width : 480px) {
    .pure-form button[type="submit"] {
        margin: 0.7em 0 0;
    }

    .pure-form input:not([type]),
    .pure-form input[type="text"],
    .pure-form input[type="password"],
    .pure-form input[type="email"],
    .pure-form input[type="url"],
    .pure-form input[type="date"],
    .pure-form input[type="month"],
    .pure-form input[type="time"],
    .pure-form input[type="datetime"],
    .pure-form input[type="datetime-local"],
    .pure-form input[type="week"],
    .pure-form input[type="number"],
    .pure-form input[type="search"],
    .pure-form input[type="tel"],
    .pure-form input[type="color"],
    .pure-form label {
        margin-bottom: 0.3em;
        display: block;
    }

    .pure-group input:not([type]),
    .pure-group input[type="text"],
    .pure-group input[type="password"],
    .pure-group input[type="email"],
    .pure-group input[type="url"],
    .pure-group input[type="date"],
    .pure-group input[type="month"],
    .pure-group input[type="time"],
    .pure-group input[type="datetime"],
    .pure-group input[type="datetime-local"],
    .pure-group input[type="week"],
    .pure-group input[type="number"],
    .pure-group input[type="search"],
    .pure-group input[type="tel"],
    .pure-group input[type="color"] {
        margin-bottom: 0;
    }

    .pure-form-aligned .pure-control-group label {
        margin-bottom: 0.3em;
        text-align: left;
        display: block;
        width: 100%;
    }

    .pure-form-aligned .pure-controls {
        margin: 1.5em 0 0 0;
    }

    /* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
    .pure-form .pure-help-inline,
    .pure-form-message-inline,
    .pure-form-message {
        display: block;
        font-size: 0.75em;
        /* Increased bottom padding to make it group with its related input element. */
        padding: 0.2em 0 0.8em;
    }
}

/***  =========== End Forms  ===========  ***/

/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/

.pure-g {
    letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
    *letter-spacing: normal; /* reset IE < 8 */
    *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
    text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */

    /*
    Sets the font stack to fonts known to work properly with the above letter
    and word spacings. See: https://github.com/yui/pure/issues/41/

    The following font stack makes Pure Grids work on all known environments.

    * FreeSans: Ships with many Linux distros, including Ubuntu

    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
      Arial to get picked up by the browser, even though neither is available
      in Chrome OS.

    * Droid Sans: Ships with all versions of Android.

    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
    */
    font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;

    /*
    Use flexbox when possible to avoid `letter-spacing` side-effects.

    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
    `-moz-` prefix version is omitted.
    */

    display: -webkit-flex;
    -webkit-flex-flow: row wrap;

    /* IE10 uses display: flexbox */
    display: -ms-flexbox;
    -ms-flex-flow: row wrap;
}

/* Opera as of 12 on Windows needs word-spacing.
   The ".opera-only" selector is used to prevent actual prefocus styling
   and is not required in markup.
*/
.opera-only :-o-prefocus,
.pure-g {
    word-spacing: -0.43em;
}

.pure-u {
    display: inline-block;
    *display: inline; /* IE < 8: fake inline-block */
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

/*
Resets the font family back to the OS/browser's default sans-serif font,
this the same font stack that Normalize.css sets for the `body`.
*/
.pure-g [class *= "pure-u"] {
    font-family: sans-serif;
}

/*** =========== End Grid  =========== ***/

.pure-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td,
.pure-table th {
    border-left: 1px solid #cbcbcb;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 0.5em 1em; /* cell padding */
}
.pure-table td:first-child,
.pure-table th:first-child {
    border-left-width: 0;
}

.pure-table thead {
    background: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.pure-table td {
    background-color: transparent;
}
.pure-table-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-bordered tbody > tr:last-child td,
.pure-table-horizontal tbody > tr:last-child td {
    border-bottom-width: 0;
}


/* HORIZONTAL BORDERED TABLES */

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child td {
    border-bottom-width: 0;
}

/*** =========== End tables ============== ***/

/*csslint adjoining-classes:false, outline-none:false*/
/*TODO: Remove this lint rule override after a refactor of this code.*/

.pure-menu ul {
    position: absolute;
    visibility: hidden;
}

.pure-menu.pure-menu-open {
    visibility: visible;
    z-index: 2;
    width: 100%;
}

.pure-menu ul {
    left: -10000px;
    list-style: none;
    margin: 0;
    padding: 0;
    top: -10000px;
    z-index: 1;
}

.pure-menu > ul { position: relative; }

.pure-menu-open > ul {
    left: 0;
    top: 0;
    visibility: visible;
}

.pure-menu-open > ul:focus {
    outline: 0;
}

.pure-menu li { position: relative; }

.pure-menu a,
.pure-menu .pure-menu-heading {
    display: block;
    color: inherit;
    line-height: 1.5em;
    padding: 5px 20px;
    text-decoration: none;
    white-space: nowrap;
}

.pure-menu.pure-menu-horizontal > .pure-menu-heading {
    display: inline-block;
    *display: inline;
    zoom: 1;
    margin: 0;
    vertical-align: middle;
}
.pure-menu.pure-menu-horizontal > ul {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
}

.pure-menu li a { padding: 5px 20px; }

.pure-menu-can-have-children > .pure-menu-label:after {
    content: '\25B8';
    float: right;
    /* These specific fonts have the Unicode char we need. */
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif;
    margin-right: -20px;
    margin-top: -1px;
}

.pure-menu-can-have-children > .pure-menu-label {
    padding-right: 30px;
}

.pure-menu-separator {
    background-color: #dfdfdf;
    display: block;
    height: 1px;
    font-size: 0;
    margin: 7px 2px;
    overflow: hidden;
}

.pure-menu-hidden {
    display: none;
}

/* FIXED MENU */
.pure-menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}


/* HORIZONTAL MENU CODE */

/* Initial menus should be inline-block so that they are horizontal */
.pure-menu-horizontal li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
}

/* Submenus should still be display: block; */
.pure-menu-horizontal li li {
    display: block;
}

/* Content after should be down arrow */
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label:after {
    content: "\25BE";
}
/*Add extra padding to elements that have the arrow so that the hover looks nice */
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label {
    padding-right: 30px;
}

/* Adjusting separator for vertical menus */
.pure-menu-horizontal li.pure-menu-separator {
	height: 50%;
	width: 1px;
	margin: 0 7px;
}

/* Submenus should be horizontal separator again */
.pure-menu-horizontal li li.pure-menu-separator {
	height: 1px;
	width: auto;
	margin: 7px 2px;
}

/*csslint adjoining-classes:false*/
/*TODO: Remove this lint rule override after a refactor of this code.*/

/* MAIN MENU STYLING */

.pure-menu.pure-menu-open,
.pure-menu.pure-menu-horizontal li .pure-menu-children {
    background: #fff; /* Old browsers */
    border: 1px solid #b7b7b7;
}

/* remove borders for horizontal menus */
.pure-menu.pure-menu-horizontal,
.pure-menu.pure-menu-horizontal .pure-menu-heading {
    border: none;
}


/* LINK STYLES */

.pure-menu a {
    border: 1px solid transparent;
    border-left: none;
    border-right: none;

}

.pure-menu a,
.pure-menu .pure-menu-can-have-children > li:after {
    color: #777;
}

.pure-menu .pure-menu-can-have-children > li:hover:after {
    color: #fff;
}

/* Focus style for a dropdown menu-item when the parent has been opened */
.pure-menu .pure-menu-open {
    background: #dedede;
}


.pure-menu li a:hover,
.pure-menu li a:focus {
    background: #eee;
}

/* DISABLED STATES */
.pure-menu li.pure-menu-disabled a:hover,
.pure-menu li.pure-menu-disabled a:focus {
    background: #fff;
    color: #bfbfbf;
}

.pure-menu .pure-menu-disabled > a {
    background-image: none;
    border-color: transparent;
    cursor: default;
}

.pure-menu .pure-menu-disabled > a,
.pure-menu .pure-menu-can-have-children.pure-menu-disabled > a:after {
    color: #bfbfbf;
}

/* HEADINGS */
.pure-menu .pure-menu-heading {
    color: #565d64;
    text-transform: uppercase;
    font-size: 90%;
    margin-top: 0.5em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #dfdfdf;
}

/* ACTIVE MENU ITEM */
.pure-menu .pure-menu-selected a {
    color: #000;
}

/* FIXED MENU */
.pure-menu.pure-menu-open.pure-menu-fixed {
    border: none;
    border-bottom: 1px solid #b7b7b7;
}

/*csslint box-model:false*/
/*TODO: Remove this lint rule override after a refactor of this code.*/


.pure-paginator {

    /* `pure-g` Grid styles */
    letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
    *letter-spacing: normal; /* reset IE < 8 */
    *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
    text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */

    /* `pure-paginator` Specific styles */
    list-style: none;
    margin: 0;
    padding: 0;
}
.opera-only :-o-prefocus,
.pure-paginator {
    word-spacing: -0.43em;
}

/* `pure-u` Grid styles */
.pure-paginator li {
    display: inline-block;
    *display: inline; /* IE < 8: fake inline-block */
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}


.pure-paginator .pure-button {
    border-radius: 0;
    padding: 0.8em 1.4em;
    vertical-align: top;
    height: 1.1em;
}
.pure-paginator .pure-button:focus,
.pure-paginator .pure-button:active {
    outline-style: none;
}
.pure-paginator .prev,
.pure-paginator .next {
    color: #C0C1C3;
    text-shadow: 0 -1px 0 rgba(0,0,0, 0.45);
}
.pure-paginator .prev {
    border-radius: 2px 0 0 2px;
}
.pure-paginator .next {
    border-radius: 0 2px 2px 0;
}

@media (max-width: 480px) {
    .pure-menu-horizontal {
        width: 100%;
    }

    .pure-menu-children li {
        display: block;
        border-bottom: 1px solid black;
    }
}

/****** =========== End Menus ============ **********/@font-face {
    font-family: "VI_WN_ICON_CLOSE";
    src: url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.eot");
    src: url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.eot?#iefix") format("embedded-opentype"),
    url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.woff2") format("woff2"),
    url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.woff") format("woff"),
    url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.ttf") format("truetype"),
    url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.svg#icons-close") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: "VI_WN_ICON_CLOSE";
        src: local('VI_WN_ICON_CLOSE'),  url("https://d2ipjlw80h5rg9.cloudfront.net/wp-content/plugins/woocommerce-notification/fonts/icons-close.svg#icons-close") format("svg");
    }
}

[class^="vi-wn-icons-close-"]:before, [class*=" vi-wn-icons-close-"]:before,
[class^="vi-wn-icons-close-"]:after, [class*=" vi-wn-icons-close-"]:after {
    font-family: VI_WN_ICON_CLOSE;
    font-size: 20px;
    font-style: normal;
}

.vi-wn-icons-close-cancel:before {
    content: "\f100";
}

.vi-wn-icons-close-cross:before {
    content: "\f101";
}

.vi-wn-icons-close-close:before {
    content: "\f102";
}#message-purchased{border:0 none;border-radius:0;bottom:20px;display:none;font-family:tahoma,sans-serif;left:20px;position:fixed;right:auto!important;text-align:left;top:auto!important;width:auto;z-index:99999999;align-items:center;flex-direction:row}#message-purchased.bottom_right{left:auto!important;right:20px!important}#message-purchased.top_right{left:auto!important;right:20px!important;top:20px!important;bottom:auto!important}#message-purchased.top_left{left:auto!important;top:20px!important;bottom:auto!important}#message-purchased img{width:auto;max-width:96px;height:auto;max-height:100px;border-radius:0;transform:translateZ(0)}#message-purchased p{float:left;font-size:13px;line-height:20px;margin:0;padding:0;width:auto}#message-purchased.wn-product-without-image .wn-notification-message-container{padding:20px 0 20px 20px}#message-purchased.wn-product-with-image{max-width:500px;min-width:350px}#message-purchased.wn-product-without-image{max-width:400px;min-width:250px}#message-purchased .wn-notification-image-wrapper{display:flex;justify-content:flex-start;align-items:center;width:auto;height:100%;text-align:center}@media screen and (max-width:600px){#message-purchased .wn-notification-image-wrapper{width:96px;max-width:96px}#message-purchased img{max-width:100%}}#message-purchased p.wn-notification-message-container{overflow:hidden;max-width:400px;line-height:1.8;display:grid;align-items:center;flex-wrap:wrap;padding-top:10px;padding-bottom:10px}#message-purchased p .wn-popup-product-title,#message-purchased p a{color:#000;display:block;font-size:14px;font-weight:700;width:100%;margin:0;overflow:hidden;text-overflow:ellipsis;padding:0;white-space:nowrap}#message-purchased p a:hover{color:#000}#message-purchased p small{display:block;font-size:10px;margin:0}#message-purchased.img-right .message-purchase-main .wn-notification-message-container{padding-left:20px!important;padding-right:20px!important}#message-purchased.img-right .message-purchase-main{padding:0}#message-purchased.img-right.wn-product-with-image .message-purchase-main{flex-direction:row-reverse;justify-content:space-between}#message-purchased #notify-close{cursor:pointer;position:absolute;right:10px;top:10px;width:22px;height:22px;border:none;overflow:hidden;display:flex;opacity:1;transition:opacity .2s}#message-purchased #notify-close:before{content:"\f101";font-family:VI_WN_ICON_CLOSE;font-size:14px;margin:0;padding:0;width:100%;height:100%;text-align:center}#message-purchased #notify-close:hover{opacity:.6}#message-purchased.img-right #notify-close{right:-20px!important;top:-20px!important}body #message-purchased.wn-background-template-type-2{max-width:515px}@media screen and (max-width:767px){body #message-purchased{bottom:10px!important;box-sizing:border-box;left:10px!important;right:10px!important;top:auto!important}body #message-purchased.wn-extended{bottom:10px!important;box-sizing:border-box;margin:0 auto;top:auto!important}body #message-purchased.wn-extended.wn-background-template-type-2{width:unset!important}#message-purchased.bottom_right{right:0!important}#message-purchased.top_right{right:0!important}#message-purchased p{font-size:11px}#message-purchased.wn-product-with-image p{width:70%}#message-purchased p a{font-size:13px}#message-purchased p small{margin-bottom:0}#message-purchased p.wn-notification-message-container{padding-top:0;padding-bottom:0}#message-purchased.wn-extended p.wn-notification-message-container{width:auto}#message-purchased.wn-extended.wn-product-with-image p.wn-notification-message-container{max-width:250px}#message-purchased.img-right #notify-close{right:-5px!important}}#woocommerce-notification-audio{display:none}#message-purchased a{color:#0f0f0f}@keyframes nFadeIn{0%{opacity:0;transform:translate3d(0,100%,0)}100%{opacity:1;transform:none}}#message-purchased.fade-in{animation-duration:1s;animation-fill-mode:both;animation-name:nFadeIn;opacity:0}@keyframes nFadeOut{0%{opacity:1}100%{bottom:0;opacity:0;transform:translate3d(0,100%,0)}}#message-purchased.fade-out{animation-duration:1s;animation-fill-mode:both;animation-name:nFadeOut;opacity:1}@keyframes nbounceIn{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}#message-purchased.bounceIn{animation-duration:1s;animation-name:nbounceIn}@keyframes nbounceInDown{60%,75%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}#message-purchased.bounceInDown{animation-duration:1s;animation-name:nbounceInDown}@keyframes nbounceInLeft{60%,75%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}#message-purchased.bounceInLeft{animation-duration:1s;animation-name:nbounceInLeft}@keyframes nbounceInRight{60%,75%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}#message-purchased.bounceInRight{animation-duration:1s;animation-name:nbounceInRight}@keyframes nbounceInUp{60%,75%,90%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translate3d(0,0,0)}}#message-purchased.bounceInUp{animation-duration:1.5s;animation-name:nbounceInUp}@keyframes nbounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}#message-purchased.bounceOut{animation-duration:1.5s;animation-name:nbounceOut;opacity:0}@keyframes nbounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}#message-purchased.bounceOutDown{animation-duration:1.5s;animation-name:nbounceOutDown;opacity:0}@keyframes nbounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}#message-purchased.bounceOutLeft{animation-duration:1.5s;animation-name:nbounceOutLeft;opacity:0}@keyframes nbounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}#message-purchased.bounceOutRight{animation-duration:1.5s;animation-name:nbounceOutRight;opacity:0}@keyframes nbounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}#message-purchased.bounceOutUp{animation-duration:1.5s;animation-name:nbounceOutUp;opacity:0}@keyframes nfadeInDown{from{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:none}}#message-purchased.fadeInDown{animation-duration:1s;animation-name:nfadeInDown}@keyframes nfadeInDownBig{from{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:none}}#message-purchased.fadeInDownBig{animation-duration:1s;animation-name:nfadeInDownBig}@keyframes nfadeInLeft{from{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:none}}#message-purchased.fadeInLeft{animation-duration:1s;animation-name:nfadeInLeft}@keyframes nfadeInLeftBig{from{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:none}}#message-purchased.fadeInLeftBig{animation-duration:1s;animation-name:nfadeInLeftBig}@keyframes nfadeInRight{from{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:none}}#message-purchased.fadeInRight{animation-duration:1s;animation-name:nfadeInRight}@keyframes nfadeInRightBig{from{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:none}}#message-purchased.fadeInRightBig{animation-duration:1s;animation-name:nfadeInRightBig}@keyframes nfadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}#message-purchased.fadeInUp{animation-duration:1s;animation-name:nfadeInUp}@keyframes nfadeInUpBig{from{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:none}}#message-purchased.fadeInUpBig{animation-duration:1s;animation-name:nfadeInUpBig}@keyframes nfadeOutDown{from{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}#message-purchased.fadeOutDown{animation-duration:1.5s;animation-name:nfadeOutDown;opacity:0}@keyframes nfadeOutDownBig{from{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}#message-purchased.fadeOutDownBig{animation-duration:1.5s;animation-name:nfadeOutDownBig;opacity:0}@keyframes nfadeOutLeft{from{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}#message-purchased.fadeOutLeft{animation-duration:1.5s;animation-name:nfadeOutLeft;opacity:0}@keyframes nfadeOutLeftBig{from{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}#message-purchased.fadeOutLeftBig{animation-duration:1.5s;animation-name:nfadeOutLeftBig;opacity:0}@keyframes nfadeOutRight{from{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}#message-purchased.fadeOutRight{animation-duration:1.5s;animation-name:nfadeOutRight;opacity:0}@keyframes nfadeOutRightBig{from{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}#message-purchased.fadeOutRightBig{animation-duration:1.5s;animation-name:nfadeOutRightBig;opacity:0}@keyframes nfadeOutUp{from{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}#message-purchased.fadeOutUp{animation-duration:1.5s;animation-name:nfadeOutUp;opacity:0}@keyframes nfadeOutUpBig{from{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}#message-purchased.fadeOutUpBig{animation-duration:1.5s;animation-name:nfadeOutUpBig;opacity:0}@keyframes nflipInX{from{transform:perspective(400px) rotate3d(1,0,0,90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(1,0,0,-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{transform:perspective(400px)}}#message-purchased.flipInX{animation-duration:1s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:nflipInX}@keyframes nflipInY{from{transform:perspective(400px) rotate3d(0,1,0,90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(0,1,0,-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{transform:perspective(400px)}}#message-purchased.flipInY{animation-duration:1s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:nflipInY}@keyframes nflipOutX{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}#message-purchased.flipOutX{animation-duration:1.5s;animation-name:nflipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;opacity:0}@keyframes nflipOutY{from{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}#message-purchased.flipOutY{animation-duration:1.5s;animation-name:nflipOutY;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;opacity:0}@keyframes nlightSpeedIn{from{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}to{transform:none;opacity:1}}#message-purchased.lightSpeedIn{animation-duration:1s;animation-name:nlightSpeedIn;animation-timing-function:ease-out}@keyframes nlightSpeedOut{from{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}#message-purchased.lightSpeedOut{animation-duration:1.5s;animation-name:nlightSpeedOut;animation-timing-function:ease-in;opacity:0}@keyframes nrotateIn{from{transform-origin:center;transform:rotate3d(0,0,1,-200deg);opacity:0}to{transform-origin:center;transform:none;opacity:1}}#message-purchased.rotateIn{animation-duration:1s;animation-name:nrotateIn}@keyframes nrotateInDownLeft{from{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}#message-purchased.rotateInDownLeft{animation-duration:1s;animation-name:nrotateInDownLeft}@keyframes nrotateInDownRight{from{transform-origin:right bottom;transform:rotate3d(0,0,1,45deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}#message-purchased.rotateInDownRight{animation-duration:1s;animation-name:nrotateInDownRight}@keyframes nrotateInUpLeft{from{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}to{transform-origin:left bottom;transform:none;opacity:1}}#message-purchased.rotateInUpLeft{animation-duration:1s;animation-name:nrotateInUpLeft}@keyframes nrotateInUpRight{from{transform-origin:right bottom;transform:rotate3d(0,0,1,-90deg);opacity:0}to{transform-origin:right bottom;transform:none;opacity:1}}#message-purchased.rotateInUpRight{animation-duration:1s;animation-name:nrotateInUpRight}@keyframes nrotateOut{from{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate3d(0,0,1,200deg);opacity:0}}#message-purchased.rotateOut{animation-duration:1.5s;animation-name:nrotateOut;opacity:0}@keyframes nrotateOutDownLeft{from{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}}#message-purchased.rotateOutDownLeft{animation-duration:1.5s;animation-name:nrotateOutDownLeft;opacity:0}@keyframes nrotateOutDownRight{from{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}#message-purchased.rotateOutDownRight{animation-duration:1.5s;animation-name:nrotateOutDownRight;opacity:0}@keyframes nrotateOutUpLeft{from{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}#message-purchased.rotateOutUpLeft{animation-duration:1.5s;animation-name:nrotateOutUpLeft;opacity:0}@keyframes nrotateOutUpRight{from{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate3d(0,0,1,90deg);opacity:0}}#message-purchased.rotateOutUpRight{animation-duration:1.5s;animation-name:nrotateOutUpRight;opacity:0}@keyframes nrollIn{from{opacity:0;transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;transform:none}}#message-purchased.rollIn{animation-duration:1s;animation-name:nrollIn}@keyframes nrollOut{from{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}#message-purchased.rollOut{animation-duration:1.5s;animation-name:nrollOut;opacity:0}@keyframes nzoomIn{from{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}#message-purchased.zoomIn{animation-duration:1s;animation-name:nzoomIn}@keyframes nzoomInDown{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomInDown{animation-duration:1s;animation-name:nzoomInDown}@keyframes nzoomInLeft{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomInLeft{animation-duration:1s;animation-name:nzoomInLeft}@keyframes nzoomInRight{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomInRight{animation-duration:1s;animation-name:nzoomInRight}@keyframes nzoomInUp{from{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomInUp{animation-duration:1s;animation-name:nzoomInUp}@keyframes nzoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}#message-purchased.zoomOut{animation-duration:1.5s;animation-name:nzoomOut;opacity:0}@keyframes nzoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomOutDown{animation-duration:1.5s;animation-name:nzoomOutDown;opacity:0}@keyframes nzoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}#message-purchased.zoomOutLeft{animation-duration:1.5s;animation-name:nzoomOutLeft;opacity:0}@keyframes nzoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}#message-purchased.zoomOutRight{animation-duration:1.5s;animation-name:nzoomOutRight;opacity:0}@keyframes nzoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}#message-purchased.zoomOutUp{animation-duration:1.5s;animation-name:nzoomOutUp;opacity:0}@keyframes nslideInDown{from{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}#message-purchased.slideInDown{animation-duration:1s;animation-name:nslideInDown}@keyframes nslideInLeft{from{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}#message-purchased.slideInLeft{animation-duration:1s;animation-name:nslideInLeft}@keyframes nslideInRight{from{transform:translate3d(100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}#message-purchased.slideInRight{animation-duration:1s;animation-name:nslideInRight}@keyframes nslideInUp{from{transform:translate3d(0,100%,0);visibility:visible}to{transform:translate3d(0,0,0)}}#message-purchased.slideInUp{animation-duration:1s;animation-name:nslideInUp}@keyframes nslideOutDown{from{transform:translate3d(0,0,0);opacity:1}to{visibility:hidden;transform:translate3d(0,100%,0);opacity:0}}#message-purchased.slideOutDown{animation-duration:1.5s;animation-name:nslideOutDown;opacity:0}@keyframes nslideOutLeft{from{transform:translate3d(0,0,0);opacity:1}to{visibility:hidden;transform:translate3d(-100%,0,0);opacity:0}}#message-purchased.slideOutLeft{animation-duration:1.5s;animation-name:nslideOutLeft;opacity:0}@keyframes nslideOutRight{from{transform:translate3d(0,0,0);opacity:1}to{visibility:hidden;transform:translate3d(100%,0,0);opacity:0}}#message-purchased.slideOutRight{animation-duration:1.5s;animation-name:nslideOutRight;opacity:0}@keyframes nslideOutUp{from{transform:translate3d(0,0,0);opacity:1}to{visibility:hidden;opacity:0;transform:translate3d(0,-100%,0)}}#message-purchased.slideOutUp{animation-duration:1.5s;animation-name:nslideOutUp;opacity:0}#message-purchased .wn-nonajax{display:flex}#message-purchased .message-purchase-main{padding:0 35px 0 0;display:flex;box-shadow:0 0 4px 0 rgba(0,0,0,.4);position:relative;width:100%;height:100%}#message-purchased.wn-rounded-corner .message-purchase-main{border-radius:100px!important;overflow:hidden!important}#message-purchased.wn-rounded-corner img.wn-notification-image{border-radius:50px!important}#message-purchased.wn-rounded-corner #notify-close{right:-6px!important;top:-6px!important}#message-purchased.wn-rtl p,.rtl #message-purchased p{float:right}#message-purchased.wn-rtl .message-purchase-main,.rtl #message-purchased .message-purchase-main{padding:0 0 0 35px;text-align:right}#message-purchased.wn-rtl .message-purchase-main:before,.rtl #message-purchased .message-purchase-main:before{transform:scaleX(-1)}#message-purchased.wn-rtl img,.rtl #message-purchased img{float:right}#message-purchased.wn-rtl #notify-close,.rtl #message-purchased #notify-close{right:unset!important;left:10px}#message-purchased.wn-rtl.wn-extended #notify-close,.rtl #message-purchased.wn-extended #notify-close{right:unset!important;left:10px}#message-purchased.wn-rtl.wn-rounded-corner #notify-close,.rtl #message-purchased.wn-rounded-corner #notify-close{right:unset!important;left:-6px}