
.button {
/*    border-style: solid;*/
    border-width: 1px;
    cursor: pointer;
    font-weight: 400;
    margin: 0 0 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-color: #dfdfdf;
    color: #454545;
    padding: .85714rem 2.28571rem;
    border-radius: 4px;
    outline: 0;
    vertical-align: middle
}

.dropdown-menu--content > :first-child,
.dropdown-menu > :first-child {
    margin-top: 0
}

.dropdown-menu--content > :last-child,
.dropdown-menu > :last-child {
    margin-bottom: 0
}

.button.active,
.button.is-active,
.button:focus,
.button:hover {
    background-color: transparent;
    border-color: #989898;
    color: #666
}

.button:active {
    border: 1px solid #454545;
    color: #454545
}

.button.active,
.button.is-active,
.button:focus {
    outline: 0
}

@media (min-width:481px) {
    .button + .button {
        margin-left: .78571rem
    }
}

.button--primary {
    background-color: #454545;
    border-color: #454545;
    color: #fff
}

.button--primary.active,
.button--primary.is-active,
.button--primary:focus,
.button--primary:hover {
    background-color: #666;
    border-color: #666;
    color: #fff
}

.button--primary:active {
    background-color: #989898;
    border: 1px solid #989898;
    color: #fff
}

.button[disabled] {
    background-color: #dadada;
    border-color: #dadada;
    color: #fff
}

.dropdown-menu,
.dropdown-menu--content {
    left: -9999px;
    list-style: none;
    margin-left: 0;
    background: #e8e8e8;
    height: auto;
    z-index: 89;
    max-width: 200px;
    width: 100%;
    position: absolute
}

.button--large {
    font-size: 15px
}

.button--small {
    font-size: 13px;
    padding: .57143rem 1.5rem
}

.button--icon,
.dropdown-menu--content {
    padding: .78571rem;
    font-size: 1rem
}

.button--slab {
    display: block;
    width: 100%
}

.button + .button--slab {
    margin-left: 0
}

.buttonGroup {
    display: inline-block
}

.buttonGroup > .button {
    border-radius: 0;
    border-right-width: 0;
    float: left;
    margin-left: 0
}

.buttonGroup > .button:first-child {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.buttonGroup > .button:last-child {
    border-bottom-right-radius: 4px;
    border-right-width: 1px;
    border-top-right-radius: 4px
}

.dropdown-menu {
    display: none;
    font-size: 1rem
}

.dropdown-menu.open {
    display: block
}

.dropdown-menu--content {
    display: none
}

.dropdown-menu--content.open,
.form-input,
.form-label,
.form-legend {
    display: block
}

.dropdown-menu-item {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: .35714rem .71429rem
}

.dropdown-menu-item a {
    display: block;
    padding: .35714rem;
    margin: -.35714rem
}

.form {
    margin: 30px 0 1.5rem
}

.form-fieldset {
    border-width: 0;
    margin: 0;
    padding: 0
}

.form-legend {
    background: 0 0;
    border: solid #4f4f4f;
    border-width: 0 0 1px;
    line-height: 32px;
    margin-bottom: .78571rem;
    padding: 0;
    width: 100%
}

.form-input,
.form-select.radius {
    border-radius: 4px
}

.form-label {
    color: #666;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: .5rem
}

.form-input,
.form-select {
    border-style: solid;
    border-width: 1px;
    font-family: inherit;
    margin: 0
}

.form-label small {
    color: #989898;
    font-size: .71429rem;
    vertical-align: bottom
}


.form-input:disabled {
    background-color: #fff;
    color: #a5a5a5;
    cursor: not-allowed
}

.form-input[readonly] {
    background-color: #f8f8f8;
    border-color: #4f4f4f;
    color: #989898;
    cursor: text
}

.form-body,
.form-checkbox[disabled] + .form-label::before,
.form-radio[disabled] + .form-label::before,
.form-select,
.form-select:disabled {
    background-color: #fff
}

.form-input:focus {
    border-color: #989898;
    outline: 0
}

.form-input[rows] {
    height: auto
}

.form-input[type=search] {
    box-sizing: border-box
}

.form-input::-webkit-input-placeholder {
    color: #a5a5a5
}

.form-input::-ms-clear {
    height: 0;
    width: 0
}

.form-input::-moz-placeholder {
    color: #a5a5a5
}

.form-input:-ms-input-placeholder {
    color: #a5a5a5
}

.form-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-repeat: no-repeat;
    border-color: #dfdfdf;
    color: #454545;
    font-size: 1rem;
    line-height: normal;
    cursor: pointer;
    height: 3rem;
    outline: 0
}

.form-select::-ms-expand {
    display: none
}

.form-select:disabled {
    cursor: not-allowed
}

.form-select:focus {
    border-color: #989898
}

.form-body {
    border: 1px solid #4f4f4f;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .13);
    margin-bottom: 1.5rem;
    max-width: none;
    padding: 1.5rem
}

.form-row {
    margin: 0 -.75rem;
    max-width: none;
    width: auto
}

.form-row:after,
.form-row:before {
    content: " ";
    display: table
}

.form-row .form-field {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left;
    max-width: none
}

@media (min-width:551px) {
    .form-row--half .form-field {
        width: 50%
    }

    .form-row--third .form-field {
        width: 33.33333%
    }

    .form-row--quarter .form-field {
        width: 25%
    }

    .tab {
        float: left
    }
}

.form-field {
    display: block;
    margin: 0 0 2rem;
    max-width: none
}

.form-field:after,
.form-field:before {
    content: " ";
    display: table
}

.form-select[multiple] {
    height: auto
}

.form-select[multiple] option {
    padding: 5px
}

.form-checkbox,
.form-radio {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.form-checkbox + .form-label,
.form-radio + .form-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .35714rem;
    padding-left: 1.85714rem;
    position: relative;
    vertical-align: baseline;
    width: 100%
}

.form-checkbox + .form-label::after,
.form-checkbox + .form-label::before,
.form-radio + .form-label::after,
.form-radio + .form-label::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 50ms ease-out
}

.switch-label,
.switch-toggle,
.switch-toggle::before {
    transition: all .1s ease-out
}

.form-checkbox + .form-label::before,
.form-radio + .form-label::before {
    background-color: #fff;
    border: solid #dfdfdf;
    border-width: 1px;
    height: 1.14286rem;
    left: 0;
    width: 1.14286rem
}

.form-checkbox + .form-label::after,
.form-radio + .form-label::after {
    height: 1rem;
    left: 1px;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 1rem
}

.form-checkbox:checked + .form-label::after,
.form-radio:checked + .form-label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.form-checkbox[disabled] + .form-label,
.form-radio[disabled] + .form-label {
    cursor: default
}

.form-checkbox + .form-label::before {
    border-radius: 4px
}

.form-checkbox + .form-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(79, 79, 79, 0.999)' /%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgba(79, 79, 79, .999);
    content: "";
    font-size: 1rem;
    line-height: 1;
    text-align: center
}

.form-radio + .form-label::before {
    border-radius: 50%
}

.form-radio + .form-label::after {
    background: rgba(79, 79, 79, .999);
    border: 3px solid #fff;
    border-radius: 1rem
}

.form-input.has-action {
    float: left;
    padding-right: 2.85714rem
}

.form-input.has-action + .button--inputAction {
    background: 0 0;
    border: 0;
    border-radius: 0;
    float: left;
    height: 2.85714rem;
    margin: .07143rem 0 0 -2.92857rem;
    width: 2.85714rem
}

.form-input.has-icon {
    float: left;
    padding-right: 2.57143rem
}

.form-input.has-icon + .icon {
    height: 3rem;
    margin-left: -2.57143rem;
    width: 1.42857rem
}

.form-prefixPostfix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.form-prefixPostfix .form-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.form-prefixPostfix .button {
/*    height: 3rem*/
}

.form-prefixPostfix-input {
    border-radius: 0
}

.form-prefixPostfix-label {
    background-color: #fff;
    border: solid #4f4f4f;
    border-width: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 300;
    height: 3rem;
    line-height: normal;
    max-width: 6.42857rem;
    padding: .75rem;
    text-align: center
}

.switch-ariaDescription,
.switch-checkbox {
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.form-prefixPostfix-label--prefix {
    border-radius: 0;
    border-width: 1px 0 1px 1px
}

.form-prefixPostfix-label--prefix + .form-input {
    border-radius: 0
}

.form-prefixPostfix-label--postfix {
    border-radius: 0;
    border-width: 1px 1px 1px 0
}

.form-prefixPostfix-button--prefix {
    margin: 0 .75rem 0 0
}

.switch-checkbox {
    border: 0;
    height: 1px;
    position: absolute;
    width: 1px
}

.switch-checkbox:focus + .switch-toggle {
    border-color: #4f4f4f;
    box-shadow: 0 0 4px rgba(79, 79, 79, .4)
}

.switch-toggle {
    background-color: #989898;
    border: 1px solid #989898;
    border-radius: 2rem;
    cursor: pointer;
    display: inline-block;
    height: 2rem;
    position: relative;
    vertical-align: middle;
    width: 4.28571rem
}

.switch--important .switch-toggle {
    background-color: #d4cb49;
    border-color: #d4cb49
}

.switch--checked .switch-toggle {
    background-color: #69d66f;
    border-color: #69d66f
}

.switch--disabled .switch-toggle {
    background-color: #e8e8e8;
    border-color: #a5a5a5;
    cursor: default
}

.switch-toggle::before {
    background: #fff;
    border-radius: 1.4286rem;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    content: "";
    height: 1.4286rem;
    left: .21427rem;
    position: absolute;
    top: .21427rem;
    width: 1.4286rem
}

.switch--checked .switch-toggle::before {
    left: 2.49999rem
}

.switch-label {
    color: #fff;
    height: 26px;
    line-height: 1.92857;
    position: absolute;
    right: .42857rem
}

.switch-label--icon.icon,
.switch-label--icon.icon svg {
    height: 1.85714rem;
    width: 1.85714rem
}

.switch--checked .switch-label {
    font-weight: 600;
    left: .42857rem;
    right: auto
}

.switch--disabled .switch-label {
    color: #989898
}

.switch-label--icon.icon svg {
    fill: #fff
}

.switch--disabled .switch-label--icon.icon svg {
    fill: #989898
}

.form-field--success .form-input-indicator > svg,
.form-input-indicator > svg {
    fill: #69d66f
}

.switch-description--off {
    color: #2d2d2d;
    margin-right: 5px
}

.switch--checked .switch-description--off {
    color: #989898
}

.switch-description--on {
    color: #989898;
    margin-left: 5px
}

.switch--checked .switch-description--on {
    color: #2d2d2d
}

.switch-ariaDescription {
    border: 0;
    height: 1px;
    position: absolute;
    width: 1px
}

.form-actions {
    background: 0 0;
    border: 0
}

.form-actions > * {
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%
}

@media (min-width:481px) {
    .form-actions {
        text-align: left
    }

    .form-actions > * {
        vertical-align: baseline;
        width: auto
    }

    .form-actions--fixed {
        background: #fff;
        border-top: 1px solid #4f4f4f;
        bottom: 0;
        left: 0;
        padding: 1.5rem 2rem;
        position: fixed;
        right: 0;
        text-align: right;
        z-index: 20
    }
}

.actionBar .buttonGroup,
.alertBox-column,
.slick-dots li button {
    vertical-align: middle
}

.alertBox,
.breadcrumb:before,
.panel,
.tab {
    position: relative
}

.form-input-indicator {
    height: 1.57143rem;
    width: 1.57143rem;
    float: left;
    margin: 0 0 0 -2.14286rem;
    position: relative;
    top: .71429rem
}

.form-field-errors,
.form-field-errors ol,
.form-field-errors ul {
    margin-bottom: 0;
    list-style: none
}

.form-prefixPostfix .form-input-indicator {
    top: 0
}

.form-field-errors {
    margin-left: 0;
    margin-top: .21429rem
}

.form-inlineMessage {
    line-height: 24px;
    margin: .35714rem 0 -.5rem;
    width: 100%
}

.form-field--error .form-input,
.form-field--success .form-input,
.form-field--warning .form-input {
    float: left
}

.form-field--success .form-checkbox + .form-label::before,
.form-field--success .form-input,
.form-field--success .form-prefixPostfix-label,
.form-field--success .form-radio + .form-label::before,
.form-field--success .form-select {
    border-color: #69d66f
}

.form-field--success .form-field-error,
.form-field--success .form-inlineMessage {
    color: #69d66f
}

.form-field--error .form-checkbox + .form-label::before,
.form-field--error .form-input,
.form-field--error .form-prefixPostfix-label,
.form-field--error .form-radio + .form-label::before,
.form-field--error .form-select {
    border-color: #ff7d7d
}

.form-field--error .form-field-error,
.form-field--error .form-inlineMessage {
    color: #ff7d7d
}

.form-field--error .form-input-indicator > svg {
    fill: #ff7d7d
}

.form-field--warning .form-checkbox + .form-label::before,
.form-field--warning .form-input,
.form-field--warning .form-prefixPostfix-label,
.form-field--warning .form-radio + .form-label::before,
.form-field--warning .form-select {
    border-color: #d4cb49
}

.form-field--warning .form-field-error,
.form-field--warning .form-inlineMessage {
    color: #d4cb49
}

.breadcrumb,
.breadcrumb a {
    color: #989898
}

.form-field--warning .form-input-indicator > svg {
    fill: #d4cb49
}

.panel-header {
    background-color: #f2f2f2;
    margin: 0;
    padding: 1.5rem 2rem 0
}

.panel-title {
    line-height: 1.5;
    margin: 0
}

.panel-body {
    margin-bottom: 1.5rem;
    padding: 1rem 2rem 1.5rem;
    background: #f2f2f2
}

.panel-body > :first-child {
    margin-top: 0
}

.panel-body > :last-child {
    margin-bottom: 0
}

.breadcrumbs {
    list-style: none;
    margin-left: 0;
    overflow: hidden
}

.breadcrumb {
    font-size: 13px;
    margin: 0;
    line-height: 1.5
}

.breadcrumb.current,
.breadcrumb.current a {
    color: #989898;
    cursor: default
}

.breadcrumb.current:focus,
.breadcrumb.current:focus a,
.breadcrumb.current:hover,
.breadcrumb.current:hover a {
    text-decoration: none
}

.breadcrumb.unavailable,
.breadcrumb.unavailable a {
    color: #a5a5a5
}

.breadcrumb.unavailable a:focus,
.breadcrumb.unavailable:focus,
.breadcrumb.unavailable:hover,
.breadcrumb.unavailable:hover a {
    color: #a5a5a5;
    cursor: not-allowed;
    text-decoration: none
}

.breadcrumb:before {
    color: #989898;
    content: "/";
    margin: 0;
    top: 1px
}

.breadcrumb:first-child:before {
    content: " ";
    margin: 0
}

.breadcrumb::before {
    margin: 0 .5rem
}

@media (min-width:481px) {
    .breadcrumb::before {
        margin: 0 .5rem
    }
}

.breadcrumb-label {
    cursor: pointer;
    text-decoration: none
}

.breadcrumb-label:hover {
    color: #4f4f4f;
    text-decoration: none
}

.breadcrumb.is-active > .breadcrumb-label {
    color: #989898
}

.breadcrumb.is-unavailable > .breadcrumb-label {
    color: #a5a5a5;
    cursor: default
}

.tabs {
    border-bottom: 1px solid #e8e8e8;
    margin: 0
}

.tabs:after,
.tabs:before {
    content: " ";
    display: table
}

.tab {
    border-bottom: #fff;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0
}

.tab-title {
    color: #989898;
    display: block;
    font-size: 15px
}

.tab-title:hover {
    color: #4f4f4f
}

.tab.is-active .tab-title {
    color: #4f4f4f;
    font-weight: 700
}

@media (min-width:551px) {
    .tabs--vertical {
        border-bottom: 0;
        float: left;
        margin: 0 0 1.5rem;
        max-width: 20%;
        width: 20%
    }
}

.tabs--vertical .tab {
    float: none
}

.tabs-contents {
    margin-bottom: 1.5rem
}

.navBar ol ol,
.navBar ol ul,
.navBar ul ol,
.navBar ul ul,
.navList ol ol,
.navList ol ul,
.navList ul ol,
.navList ul ul {
    margin-bottom: 0;
    list-style: none
}

.tabs-contents:after,
.tabs-contents:before {
    content: " ";
    display: table
}

@media (min-width:551px) {
    .tabs-contents--vertical {
        float: left;
        max-width: 80%;
        padding-left: 1.5rem;
        width: 80%
    }

    .tabs-contents--vertical > .tab-content {
        padding: 0 1.5rem
    }
}

/*
.tab-content {
    display: none;
    padding: 1.5rem 0
}
*/

.tab-content.is-active {
    display: block
}

.no-js .tab-content {
    display: block;
    float: none
}

.navBar-section:after,
.navBar-section:before,
.navBar:after,
.navBar:before {
    content: " ";
    display: table
}

.navBar ol,
.navBar ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.navBar ol li,
.navBar ul li {
    margin: 0;
    padding: 0
}

.navBar-section {
    float: left
}

.navBar-section--alt {
    float: right;
    margin-left: 1.5rem
}

.navBar-section + .navBar-section {
    margin-left: 1.5rem
}

@media (min-width:551px) {
    .navBar-item {
        float: left
    }

    .modal {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.navBar-action,
.navBar-item {
    display: block
}

.navList-section:after,
.navList-section:before,
.navList:after,
.navList:before {
    display: table;
    content: " "
}

.navBar-action {
    color: #2d2d2d;
    font-size: 15px;
    padding: .78571rem
}

.navList ol,
.navList ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.navList ol li,
.navList ul li {
    margin: 0;
    padding: 0
}

.navList-section:after {
    clear: both
}

.navList-section--alt {
    float: right;
    margin-left: 1.5rem
}

.navList-section + .navList-section {
    margin-top: 1.5rem
}

.navList-action,
.navList-item {
    display: block
}

.navList-action {
    color: #4f4f4f;
    font-size: 15px;
    padding: .21429rem 0
}

.pagination-list {
    display: block;
    margin-left: 0
}

.pagination-list li {
    color: #989898;
    font-size: 1rem;
    margin-left: .35714rem;
    display: block
}

.pagination-list li a,
.pagination-list li button {
    border-radius: 4px;
    transition: background-color .3s ease-out;
    background: 0 0;
    color: #989898;
    display: block;
    font-size: 1em;
    font-weight: 400;
    line-height: inherit;
    padding: .28571rem .5rem
}

li.pagination-item {
    cursor: pointer
}

li.pagination-item:first-child {
    margin-left: 0
}

li.pagination-item a:hover {
    color: #4f4f4f
}

li.pagination-item--current a,
li.pagination-item--current button {
    color: #4f4f4f;
    cursor: default
}

.alertBox {
    border-style: none;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .78571rem;
    padding: .78571rem 1.14286rem;
    transition: opacity .3s ease-out;
    background-color: #e8e8e8;
    border-color: #e8e8e8
}

.alertBox .icon {
    height: 1.42857rem;
    width: 1.42857rem
}

.alertBox .button {
    margin: 0 0 0 .78571rem
}

.alertBox--info {
    background-color: #666;
    border-color: #666
}

.alertBox--info svg {
    fill: #dfdfdf
}

.alertBox--success {
    background-color: #d5ffd8;
    border-color: #d5ffd8;
    color: #fff
}

.alertBox--success svg {
    fill: #69d66f
}

.alertBox--warning {
    background-color: #fffdea;
    border-color: #fffdea;
    color: #fff
}

.alertBox--warning svg {
    fill: #d4cb49
}

.alertBox--error {
    background-color: #fdd;
    border-color: #fdd;
    color: #fff
}

.alertBox--error svg {
    fill: #ff7d7d
}

.alertBox-column {
    display: table-cell;
    text-align: center
}

.alertBox-icon {
    padding-right: 1.14286rem
}

.alertBox-message {
    margin: 0;
    text-align: left;
    width: 100%
}

.alertBox-heading {
    margin: 0
}

.alertBox-close {
    cursor: pointer;
    padding-left: 1.14286rem
}

.alertBox-close .icon {
    height: 1.42857rem;
    width: 1.42857rem
}

.alertBox-close svg {
    fill: #4f4f4f
}

.accordion {
    border-width: 1px;
    margin: 0 0 1.5rem
}

.accordion:after,
.accordion:before {
    content: " ";
    display: table
}

.accordion-navigation {
    display: block;
    margin-bottom: 0 !important;
    border: solid #e8e8e8;
    border-width: 1px 0;
    cursor: pointer
}

.accordion-navigation.is-open > a {
    background: #fff;
    color: #2d2d2d
}

.accordion-navigation > a {
    background: #fff;
    color: #4f4f4f;
    padding: 1.85714rem;
    display: block;
    font-family: Karla, Arial, Helvetica, sans-serif;
    font-size: 1rem
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.accordion-navigation > a:hover {
    background: #f2f2f2
}

.accordion-navigation .accordion-title {
    padding: 1.5rem 1.85714rem
}

.accordion-title {
    font-weight: 700;
    line-height: 24px
}

.accordion-content {
    display: none;
    padding: 2rem
}

.accordion-content.is-open {
    display: block
}

.accordion-navigation--success .accordion-title,
.accordion-navigation--success.is-open > a {
    color: #69d66f
}

.accordion-navigation--error .accordion-title,
.accordion-navigation--error.is-open > a {
    color: #ff7d7d
}

.accordion-navigation--warning .accordion-title,
.accordion-navigation--warning.is-open > a {
    color: #d4cb49
}

body.has-activeModal {
    overflow: hidden
}

.modal-background {
    background: #2d2d2d;
    background: rgba(45, 45, 45, .95);
    bottom: 0;
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1004;
    left: 0
}

.has-activeModal .modal-background {
    display: block
}

.modal {
    border-radius: 0;
    display: none;
    width: 100%;
    z-index: 1005;
    background-color: #fff;
    border: 0 solid #e8e8e8;
    box-shadow: none;
    position: fixed
}

@media only screen and (max-width:551px) {
    .modal {
        min-height: 100vh
    }
}

.modal .column,
.modal .columns {
    min-width: 0
}

.modal > :first-child {
    margin-top: 0
}

.modal > :last-child {
    margin-bottom: 0
}

@media only screen and (min-width:551px) {
    .modal {
        left: 0;
        margin: 0 auto;
        max-width: 80%;
        right: 0;
        width: 900px;
        top: 50% !important
    }
}

.modal--large {
    max-height: 90%;
    width: 1280px
}

.modal--small {
    width: 500px
}

.modal-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 1rem 0;
    position: relative
}

.modal-header-title {
    margin: 0
}

.modal-body > :last-child {
    margin-bottom: 0
}

.modal-footer {
    border-top: 1px solid #e8e8e8;
    padding: .78571rem 1.5rem;
    text-align: center
}

.modal-footer .button {
    display: block
}

@media (min-width:481px) {
    .modal-footer {
        text-align: right
    }

    .modal-footer .button {
        display: inline-block;
        margin-bottom: 0
    }
}

.modal-footer-link {
    display: inline-block;
    font-size: 15px;
    margin: 0 0 .78571rem
}

@media (min-width:481px) {
    .modal-footer-link {
        display: inline;
        margin: 1.5rem
    }
}

.modal-close {
    cursor: pointer;
    font-weight: 400;
    top: 1.05rem;
    right: .75rem;
    -webkit-transform: translateY(none);
    transform: translateY(none)
}

.modal-close .icon {
    height: 1.42857rem;
    width: 1.42857rem
}

@media print {
    .modal {
        background: #FFF !important;
        display: none
    }
}

.loadingNotification {
    left: 50%;
    position: fixed;
    text-align: center;
    top: 3rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: all .2s ease-out;
    z-index: 500
}

.loadingNotification.ng-hide-add-active,
.loadingNotification.ng-hide-remove {
    opacity: 0;
    top: 3.6rem;
    -webkit-transform: scale(.9) translateX(-50%);
    transform: scale(.9) translateX(-50%)
}

.loadingNotification.ng-hide-remove-active {
    opacity: 1;
    top: 3rem;
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%)
}

.loadingNotification-label {
    background: #666;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: .35714rem .78571rem
}

.loadingOverlay-container {
    min-height: 120px;
    position: relative
}

.card-figcaption,
.loadingOverlay,
.loadingOverlay::before {
    position: absolute;
    right: 0;
    left: 0
}

.loadingOverlay {
    background: rgba(45, 45, 45, .9);
    bottom: 0;
    height: 100%;
    opacity: 1;
    top: 0;
    transition: all 250ms ease-out;
    width: 100%
}

.loadingOverlay::before {
    height: 2.85714rem;
    width: 2.85714rem;
    border-radius: 2.85714rem;
    border: 2px solid;
    border-color: #fff #fff #989898 #989898;
    content: "";
    display: block;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: spin .5s infinite cubic-bezier(.69, .31, .56, .83);
    animation: spin .5s infinite cubic-bezier(.69, .31, .56, .83)
}

.loadingOverlay.ng-enter,
.loadingOverlay.ng-leave.ng-leave-active {
    opacity: 0
}

.loadingOverlay.ng-enter.ng-enter-active,
.loadingOverlay.ng-leave {
    opacity: 1
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0)
    }

    100% {
        -webkit-transform: translateY(-50%) rotate(360deg);
        transform: translateY(-50%) rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0)
    }

    100% {
        -webkit-transform: translateY(-50%) rotate(360deg);
        transform: translateY(-50%) rotate(360deg)
    }
}

.actionBar {
    margin: 1.5rem 0
}

.actionBar:after,
.actionBar:before {
    content: " ";
    display: table
}

.actionBar .button {
    margin-bottom: 0
}

.actionBar-link {
    display: block;
    padding: .78571rem 0
}

.actionBar-section:after,
.actionBar-section:before {
    content: " ";
    display: table
}

@media (min-width:551px) {
    .actionBar-section {
        float: left
    }

    .actionBar-section .form-label {
        display: inline-block;
        margin: 0 .35714rem 0 0
    }

    .actionBar-section .form-input,
    .actionBar-section .form-select {
        display: inline-block;
        width: 14.28571rem
    }

    .actionBar-section--alt {
        float: right
    }
}

.card-body > :first-child,
.card-figcaption-body > :first-child {
    margin-top: 0
}

.actionBar-item {
    margin-bottom: 1.5rem
}

@media (min-width:551px) {
    .actionBar-item {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 1.5rem;
        vertical-align: middle
    }

    .actionBar-item:last-child {
        margin-right: 0
    }
}

.card {
    background-color: transparent;
    margin-bottom: 3rem;
    padding: 0
}

.card-body > :last-child,
.card-button,
.card-figcaption-body > :last-child,
.card-figure {
    margin-bottom: 0
}

.card-figure {
    background-color: #fff;
    padding: 0
}

.card-figcaption {
    bottom: 0;
    height: 100%;
    opacity: 0;
    text-align: center;
    top: 0
}

.card-figcaption:hover {
    opacity: 1
}

.card-figcaption-action {
    display: block;
    height: 100%
}

.card-figcaption-body {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.card-figcaption-body .card-text {
    color: #989898
}

.card-figcaption-button {
    background-color: rgba(255, 255, 255, .9);
    color: #2d2d2d
}

.card-figcaption-button:hover {
    background-color: #fff;
    color: #2d2d2d
}

.card-body {
    padding: .78571rem 0 0
}

.card-body .card-text {
    color: #989898
}

.card-surTitle {
    float: right;
    margin-left: 1.5rem;
    max-width: 40%;
    text-align: right
}

.card-footer {
    background-color: transparent;
    margin: 0
}

.card-footer:after,
.card-footer:before {
    content: " ";
    display: table
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before,
.slick-track:after,
.slick-track:before,
[dir=rtl] .slick-next:before,
[dir=rtl] .slick-prev:before {
    content: ""
}

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    left: 0;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.slick-track:after,
.slick-track:before {
    display: table
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: center center no-repeat #fff
}

.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: 0 0;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    outline: 0
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    outline: 0;
    background: 0 0;
    color: transparent
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: .8
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .6
}

.slick-next:before,
.slick-prev:before {
    font-size: 20px;
    line-height: 1;
    color: #989898;
    opacity: 1
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    cursor: pointer
}

.slick-dots li button {
    background: 0 0;
    outline: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
    cursor: pointer
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: .8
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 60px;
    line-height: 20px;
    text-align: center;
    color: #2d2d2d;
    opacity: .6
}

.slick-dots li.slick-active button:before {
    color: #666;
    opacity: 1
}

.slick-next,
.slick-prev {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .9);
    z-index: 1;
    border: 1px solid #fff;
    height: 4.35714rem;
    margin-top: -1.07143rem;
    padding: .71429rem;
    width: 2.85714rem
}

.slick-next::before,
.slick-prev::before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    height: 2.92857rem;
    width: 1.42857rem
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .9);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%
}

.slick-next {
    right: -10px
}

.slick-next::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M1.45679 1.00746147l21 20.02482143L1.50885 41.0074615' stroke='%23989898' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E")
}

.slick-next:hover::before {
    background-image: url(data:image/svg+xml;
    base64, PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS40NTY3OSAxLjAwNzQ2MTQ3bDIxIDIwLjAyNDgyMTQzTDEuNTA4ODUgNDEuMDA3NDYxNSIgc3Ryb2tlPSIjOTg5ODk4IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)
}

.slick-prev {
    left: -15px
}

@media (min-width:1261px) {
    .slick-next {
        right: -3.35714rem
    }

    .slick-prev {
        left: -3.35714rem
    }
}

.slick-prev::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='42' viewBox='0 0 24 42'%3E%3Cpath d='M22.4572074 1.00746147l-21 20.02482143 20.9479397 19.9751786' stroke='%23989898' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E")
}

.slick-prev:hover::before {
    background-image: url(data:image/svg+xml;
    base64, PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAyNCA0MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjIuNDU3MjA3NCAxLjAwNzQ2MTQ3bC0yMSAyMC4wMjQ4MjE0MyAyMC45NDc5Mzk3IDE5Ljk3NTE3ODYiIHN0cm9rZT0iIzk4OTg5OCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)
}

.slick-dots {
    margin: 0
}

.slick-dots li {
    height: 2.28571rem;
    width: 2.28571rem;
    margin: 0;
    padding: .35714rem
}

.slick-dots li button,
.slick-dots li button::before {
    height: 1.07143rem;
    width: 1.07143rem;
    border-radius: 50%
}

.slick-dots li button {
    border: 1px solid #2d2d2d;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center
}

.slick-dots li button:hover::before {
    background: #2d2d2d
}

.slick-dots li button::before {
    display: block;
    left: -1px;
    top: -1px;
    transition: background .1s ease-out
}

.slick-dots li.slick-active button::before {
    background: #666
}

.productView .slick-dots {
    position: relative
}

.swal2-container,
body.swal2-iosfix {
    position: fixed;
    left: 0;
    right: 0
}

.slick-disabled {
    cursor: default;
    opacity: .1
}

.nanobar {
    width: 100%;
    height: .35714rem;
    z-index: 9999;
    top: 0;
    user-select: none
}

.nanobar .bar {
    width: 0;
    height: 100%;
    transition: height .1s;
    background-color: #989898
}

body.swal2-shown {
    overflow-y: hidden
}

.swal2-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    padding: 10px;
    background-color: transparent;
    z-index: 1060
}

.account-product-figure,
.swal2-container.swal2-grow-column,
.swal2-modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.swal2-container.swal2-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-container.swal2-top-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-top-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.swal2-container.swal2-center-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-center-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-container.swal2-bottom-left {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.swal2-container.swal2-bottom-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.swal2-container.swal2-grow-fullscreen > .swal2-modal {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-container.swal2-grow-row > .swal2-modal {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-container.swal2-grow-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column
}

.swal2-container.swal2-grow-column.swal2-bottom,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.swal2-container.swal2-grow-column.swal2-bottom-left,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-top-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swal2-container.swal2-grow-column.swal2-bottom-right,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-top-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.swal2-container.swal2-grow-column > .swal2-modal {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.swal2-modal,
.swal2-modal > .swal2-checkbox,
.swal2-modal > .swal2-file,
.swal2-modal > .swal2-input,
.swal2-modal > .swal2-radio,
.swal2-modal > .swal2-select,
.swal2-modal > .swal2-textarea {
    display: none
}

.swal2-container:not(.swal2-top):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-left):not(.swal2-bottom-right) > .swal2-modal {
    margin: auto
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .swal2-container .swal2-modal {
        margin: 0 !important
    }
}

.swal2-container.swal2-fade {
    transition: background-color .1s
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, .4)
}

.swal2-modal {
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    max-width: 100%
}

.swal2-modal:focus {
    outline: 0
}

.swal2-modal.swal2-loading {
    overflow-y: hidden
}

.swal2-modal .swal2-title {
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 0 0 .4em;
    padding: 0;
    display: block;
    word-wrap: break-word
}

.swal2-modal .swal2-buttonswrapper {
    margin-top: 15px
}

.swal2-modal .swal2-buttonswrapper:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: .4;
    cursor: no-drop
}

.swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-confirm {
    box-sizing: border-box;
    border: 4px solid transparent;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 7.5px;
    vertical-align: top;
    background-color: transparent !important;
    color: transparent;
    cursor: default;
    border-radius: 100%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-cancel {
    margin-left: 30px;
    margin-right: 30px
}

.swal2-modal .swal2-buttonswrapper.swal2-loading :not(.swal2-styled).swal2-confirm::after {
    display: inline-block;
    content: '';
    margin-left: 5px;
    vertical-align: -1px;
    height: 15px;
    width: 15px;
    border: 3px solid #999;
    box-shadow: 1px 1px 1px #fff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    animation: rotate-loading 1.5s linear 0s infinite normal
}

.accordion-navigation-actions > a,
.swal2-modal .swal2-checkbox input,
.swal2-modal .swal2-checkbox span,
.swal2-modal .swal2-radio input,
.swal2-modal .swal2-radio span,
.swal2-modal .swal2-styled {
    vertical-align: middle
}

.swal2-modal .swal2-styled {
    border: 0;
    box-shadow: none
}

.swal2-modal .swal2-styled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, .4);
    outline: 0
}

.swal2-modal .swal2-image {
    margin: 20px auto;
    max-width: 100%
}

.swal2-modal .swal2-close {
    background: 0 0;
    border: 0;
    margin: 0;
    padding: 0;
    width: 38px;
    height: 40px;
    font-size: 36px;
    line-height: 40px;
    font-family: serif;
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    color: #ccc;
    transition: color .1s ease
}

.swal2-modal .swal2-close:hover {
    color: #d55
}

.swal2-modal .swal2-content {
    text-align: center;
    font-weight: 300;
    position: relative;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    word-wrap: break-word
}

.swal2-modal .swal2-checkbox,
.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-radio,
.swal2-modal .swal2-select,
.swal2-modal .swal2-textarea {
    margin: 20px auto
}

.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
    transition: border-color .3s, box-shadow .3s
}

.swal2-modal .swal2-file.swal2-inputerror,
.swal2-modal .swal2-input.swal2-inputerror,
.swal2-modal .swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important
}

.swal2-modal .swal2-file:focus,
.swal2-modal .swal2-input:focus,
.swal2-modal .swal2-textarea:focus {
    outline: 0;
    border: 1px solid #b4dbed;
    box-shadow: 0 0 3px #c4e6f5
}

.swal2-modal .swal2-file::-webkit-input-placeholder,
.swal2-modal .swal2-input::-webkit-input-placeholder,
.swal2-modal .swal2-textarea::-webkit-input-placeholder {
    color: #ccc
}

.swal2-modal .swal2-file:-ms-input-placeholder,
.swal2-modal .swal2-input:-ms-input-placeholder,
.swal2-modal .swal2-textarea:-ms-input-placeholder {
    color: #ccc
}

.swal2-modal .swal2-file::placeholder,
.swal2-modal .swal2-input::placeholder,
.swal2-modal .swal2-textarea::placeholder {
    color: #ccc
}

.swal2-modal .swal2-range input {
    float: left;
    width: 80%
}

.swal2-modal .swal2-range output {
    float: right;
    width: 20%;
    font-size: 20px;
    font-weight: 600;
    text-align: center
}

.swal2-modal .swal2-range input,
.swal2-modal .swal2-range output {
    height: 43px;
    line-height: 43px;
    vertical-align: middle;
    margin: 20px auto;
    padding: 0
}

.swal2-modal .swal2-input {
    height: 43px;
    padding: 0 12px
}

.swal2-modal .swal2-input[type=number] {
    max-width: 150px
}

.swal2-modal .swal2-file {
    font-size: 20px
}

.swal2-modal .swal2-textarea {
    height: 108px;
    padding: 12px
}

.swal2-modal .swal2-select {
    font-size: inherit;
    padding: 5px 10px;
    min-width: 40%;
    max-width: 100%
}

.swal2-modal .swal2-radio {
    border: 0
}

.swal2-modal .swal2-radio label:not(:first-child) {
    margin-left: 20px
}

.swal2-modal .swal2-radio input {
    margin: 0 3px 0 0
}

.swal2-modal .swal2-validationerror {
    background-color: #f0f0f0;
    margin: 0 -20px;
    overflow: hidden;
    padding: 10px;
    color: gray;
    font-size: 16px;
    font-weight: 300;
    display: none
}

.swal2-modal .swal2-validationerror::before {
    content: '!';
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea7d7d;
    color: #fff;
    line-height: 24px;
    text-align: center;
    margin-right: 10px
}

.swal2-icon.swal2-info,
.swal2-icon.swal2-question,
.swal2-icon.swal2-warning {
    font-size: 60px;
    line-height: 80px;
    text-align: center
}

@supports (-ms-accelerator:true) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

.swal2-icon {
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-radius: 50%;
    margin: 20px auto 30px;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.swal2-icon.swal2-error {
    border-color: #f27474
}

.swal2-icon.swal2-error .swal2-x-mark {
    position: relative;
    display: block
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #f27474;
    display: block;
    top: 37px;
    border-radius: 2px
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px
}

.swal2-icon.swal2-warning {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f8bb86;
    border-color: #facea8
}

.swal2-icon.swal2-info {
    font-family: 'Open Sans', sans-serif;
    color: #3fc3ee;
    border-color: #9de0f6
}

.swal2-icon.swal2-question {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #87adbd;
    border-color: #c9dae1
}

.swal2-icon.swal2-success {
    border-color: #a5dc86
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px
}

.swal2-icon.swal2-success .swal2-success-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(165, 220, 134, .2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2
}

.swal2-icon.swal2-success .swal2-success-fix {
    width: 7px;
    height: 90px;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    height: 5px;
    background-color: #a5dc86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2
}

.swal2-modal .swal2-styled,
.swal2-progresssteps li {
    position: relative;
    display: inline-block
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.swal2-progresssteps {
    font-weight: 600;
    margin: 0 0 20px;
    padding: 0
}

.swal2-progresssteps .swal2-progresscircle {
    background: #3085d6;
    border-radius: 2em;
    color: #fff;
    height: 2em;
    line-height: 2em;
    text-align: center;
    width: 2em;
    z-index: 20
}

.swal2-progresssteps .swal2-progresscircle:first-child {
    margin-left: 0
}

.swal2-progresssteps .swal2-progresscircle:last-child {
    margin-right: 0
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
    background: #3085d6
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle,
.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
    background: #add8e6
}

.swal2-progresssteps .swal2-progressline {
    background: #3085d6;
    height: .4em;
    margin: 0 -1px;
    z-index: 10
}

@-webkit-keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes showSweetAlert {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes hideSweetAlert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

.swal2-show {
    -webkit-animation: showSweetAlert .3s;
    animation: showSweetAlert .3s
}

.swal2-show.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

.swal2-hide {
    -webkit-animation: hideSweetAlert .15s forwards;
    animation: hideSweetAlert .15s forwards
}

.swal2-hide.swal2-noanimation {
    -webkit-animation: none;
    animation: none
}

@-webkit-keyframes animate-success-tip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@keyframes animate-success-tip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 19px
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px
    }
}

@-webkit-keyframes animate-success-long {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@keyframes animate-success-long {

    0%,
    65% {
        width: 0;
        right: 46px;
        top: 54px
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px
    }
}

@-webkit-keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    100%,
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

.swal2-animate-success-line-tip {
    -webkit-animation: animate-success-tip .75s;
    animation: animate-success-tip .75s
}

.swal2-animate-success-line-long {
    -webkit-animation: animate-success-long .75s;
    animation: animate-success-long .75s
}

.swal2-success.swal2-animate-success-icon .swal2-success-circular-line-right {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in
}

@-webkit-keyframes animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

@keyframes animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

.swal2-animate-error-icon {
    -webkit-animation: animate-error-icon .5s;
    animation: animate-error-icon .5s
}

@-webkit-keyframes animate-x-mark {

    0%,
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        margin-top: 26px;
        opacity: 0
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

@keyframes animate-x-mark {

    0%,
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        margin-top: 26px;
        opacity: 0
    }

    80% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        margin-top: -6px
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin-top: 0;
        opacity: 1
    }
}

.swal2-animate-x-mark {
    -webkit-animation: animate-x-mark .5s;
    animation: animate-x-mark .5s
}

@-webkit-keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swal2-modal {
    background-color: #fff !important;
    border-radius: 4px;
    font-family: Karla, Arial, Helvetica, sans-serif
}

.swal2-modal .swal2-title {
    color: #2d2d2d;
    font-size: 2.14286rem
}

.swal2-modal .swal2-content {
    color: #4f4f4f;
    font-size: 1.14286rem
}

.swal2-modal .swal2-file,
.swal2-modal .swal2-input,
.swal2-modal .swal2-textarea {
    border: 1px solid #dfdfdf;
    color: #454545
}

.swal2-modal .swal2-checkbox,
.swal2-modal .swal2-select {
    color: #454545
}

.swal2-modal .swal2-buttonswrapper {
    margin: 25px 0 0
}

.swal2-modal .swal2-styled {
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 400;
    margin: 0 0 1rem;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border-color: #dfdfdf;
    color: #454545;
    font-size: 1rem;
    padding: .85714rem 2.28571rem;
    border-radius: 4px;
    line-height: 1rem;
    outline: 0;
    transition: all .15s ease
}

.swal2-modal .swal2-styled.active,
.swal2-modal .swal2-styled.is-active,
.swal2-modal .swal2-styled:focus,
.swal2-modal .swal2-styled:hover {
    background-color: transparent;
    border-color: #989898;
    color: #666
}

.swal2-modal .swal2-styled:active {
    background-color: transparent;
    border: 1px solid #454545;
    color: #454545
}

.swal2-modal .swal2-confirm {
    background-color: #454545;
    border-color: #454545;
    color: #fff
}

.swal2-modal .swal2-confirm:focus,
.swal2-modal .swal2-confirm:hover {
    background-color: #666;
    border-color: #666;
    color: #fff
}

.swal2-modal .swal2-confirm:active {
    background-color: #989898;
    border-color: #989898;
    color: #fff
}

.swal2-modal .swal2-cancel {
    background-color: transparent;
    border-color: #dfdfdf;
    color: #454545
}

.swal2-modal .swal2-cancel:focus,
.swal2-modal .swal2-cancel:hover {
    background-color: transparent;
    border-color: #989898;
    color: #666
}

.swal2-modal .swal2-cancel:active {
    background-color: transparent;
    border-color: #454545;
    color: #454545
}

.swal2-modal .button + .button {
    margin-left: .78571rem
}



a {
    transition: color .15s ease
}

cite {
    line-height: 1.5;
    margin: .5rem 0 0
}

.page-heading {
    margin: 25px 0 3rem;
    font-size: 28px;
    text-align: center
}


.definitionList-key {
    color: #989898;
    float: left;
    font-weight: 400;
    margin: 0 .35714rem 0 0
}

.definitionList-value {
    margin: 0
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z' fill='rgba(130, 130, 130, 0.999)' /%3E%3C/svg%3E");
    background-position: right .57143rem top .71429rem;
    border-radius: 4px;
    padding: .75rem 3rem .75rem 1rem
}

.form-label small {
    float: right;
    margin-top: .35714rem
}

.form-label--inlineSmall small {
    color: #989898;
    float: none;
    font-size: inherit;
    font-weight: 400;
    margin-left: .35714rem;
    text-transform: none
}

.table {
    margin-top: 2rem
}

.table td + td {
    border-left: 1px solid #e8e8e8
}

.table--line,
.table--line .table-thead {
    border-color: #e8e8e8;
    border-width: 0 0 1px
}

.table .table-alignCenter {
    text-align: center
}

.table .table-alignRight {
    text-align: right
}

.table-actions {
    margin: 1.5rem;
    text-align: center
}

.table-actions .form {
    margin-bottom: 0
}

.table-actions .button {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%
}

.table--line .table-thead {
    background-color: #fff
}

.table--line .table-thead tr th {
    padding-left: 0;
    padding-right: 0
}

@media (min-width:551px) {
    .table-actions .button {
        display: inline-block;
        margin-bottom: 0;
        width: auto
    }

    .table-actions .button + .button {
        margin-left: .35714rem
    }

    .table--line .table-thead tr th {
        text-align: center
    }

    .table--line .table-thead tr th:first-child {
        text-align: left
    }

    .table--line .table-thead tr th:last-child {
        text-align: right
    }

    .table--line tr td {
        text-align: center
    }

    .table--line tr td:first-child {
        text-align: left
    }

    .table--line tr td:last-child {
        text-align: right
    }
}

.table--line .table-thead tr th + th {
    padding-left: 1.5rem
}

.table--line tr {
    border-color: 1px solid #e8e8e8
}

.table--line tr td {
    display: block;
    padding-left: 0;
    padding-right: 0
}

.table--line tr td + td {
    padding-left: 1.5rem
}

.table--line td + td {
    border-left: 0
}

.dropdown {
    left: -9999px;
    outline: 0;
    position: absolute
}

.dropdown-menu.is-loading .loadingOverlay {
    background: 0 0;
    padding: 4.5rem 0;
    position: relative
}

.dropdown-menu.is-open {
    display: block
}

.dropdown-menu-item {
    text-align: left
}

.breadcrumbs,
.modal--alert,
.modal-close,
.pagination-list,
.tab-title {
    text-align: center
}

.dropdown-menu-item:first-child > a {
    padding-top: .78571rem
}

.dropdown-menu-item:last-child > a {
    padding-bottom: 1rem
}

.dropdown-menu-item > a {
    margin: 0;
    padding: .28571rem 1.14286rem;
    text-decoration: none
}

.form-wishlist {
    position: relative
}

.dropdown-menu-button {
    width: 100%
}

.dropdown-menu-button.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.dropdown-menu-button .icon {
    float: right;
    margin-left: 10px
}

#wishlist-dropdown.is-open {
    background: 0 0;
    left: auto !important;
    max-width: none !important;
    width: 100% !important
}

@media (min-width:551px) {
    #wishlist-dropdown.is-open {
        padding-right: 20px
    }
}

@media (min-width:801px) {
    #wishlist-dropdown.is-open {
        padding-right: 0
    }
}

@media (min-width:1261px) {
    #wishlist-dropdown.is-open {
        padding-right: 11px
    }
}

#wishlist-dropdown.is-open:focus {
    outline: 0
}

#wishlist-dropdown.is-open [data-wishlist] {
    border-top: none;
    margin-bottom: 0;
    width: 100%
}

#wishlist-dropdown.is-open .button {
    background-color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%
}

#wishlist-dropdown.is-open .button--has-items {
    font-weight: 700
}

#wishlist-dropdown.is-open li:not(:last-child) .button {
    border-bottom: none;
    border-radius: 0;
    border-top: none;
    margin-bottom: 0
}

.modal {
    margin: 0;
    max-height: 90%;
    max-width: 95%;
    min-height: 240px;
    outline: 0;
    overflow: hidden;
    padding: 0;
    left: 50%;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media (min-width:1261px) {
    .modal--large {
        width: 1280px
    }
}

.modal-header {
    padding-left: 2.25rem;
    padding-right: 3.03571rem
}

.modal-header-title {
    font-size: 22px;
    text-align: center
}

@media (min-width:801px) {
    .modal-header-title {
        font-size: 25px
    }
}

.modal-close {
    height: 2.28571rem;
    width: 2.28571rem;
    color: #4f4f4f;
    font-size: 26px;
    line-height: 2.28571rem;
    padding: 0;
    position: absolute;
    text-decoration: none;
    z-index: 50
}

@media (min-width:801px) {
    .modal-close {
        font-size: 32px
    }
}

.modal-close:hover {
    color: #a5a5a5
}

.modal-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.25rem
}

.modal--alert {
    background-color: #fff !important;
    border-radius: 4px;
    font-family: Karla, Arial, Helvetica, sans-serif;
    padding: 40px 20px 20px
}

.cart-total-grandTotal,
.compareTable-heading,
.form-label--alternate {
    font-family: Montserrat, Arial, Helvetica, sans-serif
}

.modal--alert .modal-content {
    color: #4f4f4f;
    font-size: 1.14286rem
}

.modal--alert .button-container {
    margin: 25px 0 0
}

.modal--alert .button-container .confirm {
    background-color: #454545;
    border-color: #454545;
    color: #fff
}

.modal--alert .button-container .confirm:focus,
.modal--alert .button-container .confirm:hover {
    background-color: #666;
    border-color: #666;
    color: #fff
}

.modal--alert .button-container .confirm:active {
    background-color: #989898;
    border-color: #989898;
    color: #fff
}

.pagination-item .pagination-link:hover,
.pagination-item.pagination-item--next > a,
.pagination-item.pagination-item--previous > a {
    color: #4f4f4f
}

.breadcrumbs {
    display: none;
    font-size: 0
}

@media (min-width:551px) {
    .breadcrumbs {
        display: block
    }
}

.breadcrumb {
    display: inline-block;
    float: none
}

.breadcrumb.is-active > .breadcrumb-label {
    cursor: text
}

.panel-title {
    font-size: 20px
}

.panel--large .panel-body {
    margin-bottom: 2rem;
    padding: 2rem
}

.pagination-list {
    font-size: 0;
    margin-bottom: 1.5rem
}

.pagination-list:after,
.pagination-list:before {
    content: " ";
    display: table
}

.pagination-list .pagination-item {
    display: inline-block
}

.pagination-item {
    border: 1px solid transparent;
    line-height: 1
}

.pagination-item .pagination-link {
    text-decoration: none;
    transition: all .2s ease
}

.button,
.card--alternate,
.form-option {
    transition: all .15s ease
}

.pagination-item.pagination-item--current {
    border-color: #e8e8e8;
    border-radius: 4px;
    margin: 0 .35714rem 0 .78571rem
}

.pagination-item.pagination-item--next > a:hover,
.pagination-item.pagination-item--previous > a:hover {
    color: #a5a5a5
}

.pagination-item.pagination-item--next > a:hover .icon > svg,
.pagination-item.pagination-item--previous > a:hover .icon > svg {
    fill: #a5a5a5
}

.pagination-item--next .icon,
.pagination-item--previous .icon {
    height: 1.42857rem;
    margin-top: -.14286rem;
    width: 1.42857rem
}

.pagination-item--previous {
    float: left
}

.pagination-item--previous .icon {
    margin-left: -.85714rem
}

.pagination-item--next {
    float: right
}

.pagination-item--next .icon {
    margin-right: -.85714rem
}

.pagination-list--small {
    position: relative
}

.pagination-list--small .pagination-item {
    color: #989898;
    cursor: inherit;
    line-height: 1.5
}

.pagination-list--small .pagination-link {
    padding: 0 .35714rem
}

.pagination-list--small .pagination-item--next,
.pagination-list--small .pagination-item--previous {
    position: absolute;
    top: 0
}

.pagination-list--small .pagination-item--previous {
    left: 0
}

.pagination-list--small .pagination-item--next {
    right: 0
}

.button {
/*    line-height: 1rem*/
}

.button + .button {
    margin-left: 0
}

.button[disabled] {
    cursor: not-allowed
}

.button--icon svg {
    fill: #4f4f4f
}

.tab {
    border-top: 1px solid #e8e8e8;
    float: none
}

.tab.is-active {
    border-left-color: #fff;
    border-right-color: #fff
}

@media (min-width:551px) {
    .tab.is-active {
        margin-bottom: -1px
    }

    .tab-title {
        text-align: left
    }
}

.accordion .navList,
.accordion-content .form:only-child {
    margin-bottom: 0
}

.tab-title {
    padding: 1.14286rem 0;
    text-decoration: none
}

.card-body,
.form-actions,
.form-option-variant {
    text-align: center
}

@media (min-width:801px) {
    .button + .button {
        margin-left: .78571rem
    }

    .tab {
        border-top-color: #fff;
        float: left
    }

    .tab.is-active {
        border: 1px solid #e8e8e8;
        border-bottom: 1px solid #fff
    }

    .tab-title {
        padding: .78571rem 1.5rem
    }
}

.tab-content.has-jsContent {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    visibility: hidden
}

.tab-content.has-jsContent.is-active {
    height: auto;
    overflow: visible;
    padding: 1.5rem 0;
    visibility: visible
}

@media (min-width:551px) {
    .tab-content .productReview {
        width: 50%
    }
}

@media (min-width:801px) {
    .tab-content .productReview {
        width: 33.33333%
    }
}

@media (min-width:1261px) {
    .tab-content .productReview {
        width: 50%
    }
}

.tab-content .productReviews {
    border-top: 0
}

.accordion {
    border-radius: 4px;
    box-shadow: none
}

.accordion-content {
    border: 0
}

.accordion-title {
    margin: 0
}

.accordion-navigation {
    margin-top: -1px;
    position: relative;
    text-decoration: none
}

.accordion--navList .accordion-content {
    padding: 1rem
}

@media (min-width:801px) {
    .accordion--navList {
        border: 0
    }

    .accordion--navList .accordion-block,
    .sidebarBlock + .accordion--navList {
        margin-top: 2rem
    }

    .accordion--navList .accordion-content {
        padding: 0
    }

    .accordion--navList .accordion-navigation {
        background-position: right 0 top 50%;
        border: 0
    }
}

.accordion--navList .accordion-title {
    font-weight: 400;
    padding: 1rem;
    text-decoration: none;
    text-transform: inherit
}

.navPages-action,
.navUser-action,
.ribbon {
    text-transform: uppercase
}

.accordion--navList .accordion-indicator {
    fill: #a5a5a5
}

.accordion--navList .accordion-navigation-actions {
    right: 1rem;
    top: 1.21429rem
}

@media (min-width:801px) {
    .accordion--navList .accordion-title {
        margin-bottom: .78571rem;
        margin-top: 0;
        padding: 0
    }

    .accordion--navList .accordion-navigation-actions {
        right: 0;
        top: 0
    }
}

.accordion-block:first-child {
    margin-top: 0
}

.accordion-block:first-child .accordion-navigation {
    border-radius: 4px 4px 0 0
}

.accordion-block:last-child .accordion-content,
.accordion-block:last-child .accordion-navigation {
    border-radius: 0 0 4px 4px
}

.accordion-block:last-child .accordion-navigation {
    border-bottom-width: 0
}

.accordion-block:last-child .accordion-navigation.is-open {
    border-bottom-width: 1px;
    border-radius: 0
}

.accordion-navigation-actions {
    position: absolute;
    right: 1.85714rem;
    top: 1.5rem
}

.accordion-navigation-actions > a {
    color: #989898
}

.accordion-navigation-actions > a:hover,
.alertBox {
    color: #4f4f4f
}

.inlineList--labels {
    margin-bottom: 0;
    margin-left: -.78571rem
}

.inlineList--labels > li {
    margin-bottom: .78571rem;
    margin-left: .78571rem
}

.alertBox {
    border-radius: 4px
}

.alertBox-icon .icon {
    height: 1.78571rem;
    width: 1.78571rem
}

.alertBox--info {
    color: #fff
}

.alertBox--info .alertBox-close svg {
    fill: #dfdfdf
}

.lazyload,
.lazyloading {
    height: 100%
}

.form--hiddenLabels .form-label {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.form-inlineMessage {
    display: block
}

.form-field--error .form-input {
    float: none
}

.form-field--error .form-inlineMessage:before {
    background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z' fill='rgba(255, 125, 125, 0.999)' /%3E%3C/svg%3E") no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    height: 1rem;
    left: -.14286rem;
    margin-right: .07143rem;
    position: relative;
    top: .21429rem;
    width: 1rem
}

.form-field--success .form-input[type=text] {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(105, 214, 111, 0.999)' /%3E%3C/svg%3E");
    background-position: right .71429rem center;
    background-repeat: no-repeat;
    padding-right: 3rem
}

.form-checkbox + .form-label:last-child,
.form-radio + .form-label:last-child {
    display: block;
    margin-bottom: -.28571rem
}

.form-checkbox + .form-label::after,
.form-radio + .form-label::after {
    top: .28571rem
}

.form-checkbox + .form-label::before,
.form-radio + .form-label::before {
    top: .21429rem
}

.form-actions {
    margin: 0 auto;
    max-width: 85.71429rem;
    width: 100%;
    display: block
}

.form-actions:after,
.form-actions:before {
    content: " ";
    display: table
}

.form-actions .button,
.form-actions a,
.form-actions input {
    vertical-align: top;
    width: 100%
}

@media (min-width:551px) {
    .form-actions {
        margin-top: 1.5rem
    }

    .form-actions .button,
    .form-actions a,
    .form-actions input {
        margin-bottom: 0;
        width: auto
    }
}

.form-actions .button + .button,
.form-actions .button + a,
.form-actions .button + input,
.form-actions a + .button,
.form-actions a + a,
.form-actions a + input,
.form-actions input + .button,
.form-actions input + a,
.form-actions input + input {
    margin-top: .78571rem
}

@media (min-width:551px) {

    .form-actions .button + .button,
    .form-actions .button + a,
    .form-actions .button + input,
    .form-actions a + .button,
    .form-actions a + a,
    .form-actions a + input,
    .form-actions input + .button,
    .form-actions input + a,
    .form-actions input + input {
        margin: 0 0 0 .78571rem
    }
}

.form-label--alternate {
    font-size: 13px;
    margin-bottom: .78571rem
}

.form-select--date {
    width: initial
}

.form-select--date + .form-select--date {
    margin-left: .35714rem
}

.form-select--date,
.form-select--small {
    background-position: right .5rem top .5rem;
    background-size: 1.28571rem;
    font-size: 13px;
    height: 2.28571rem;
    line-height: 1rem;
    max-width: 20rem;
    padding: .57143rem 2rem .57143rem .78571rem
}

.form-select--short {
    max-width: 6rem;
    width: 4.5rem
}

.form-file {
    margin-bottom: .5rem
}

.form-fileDescription {
    color: #a5a5a5;
    font-size: 13px
}

.form-field-group {
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    padding: 1.5rem
}

.form-column {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left
}

@media (min-width:551px) {
    .form-column {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 50%;
        float: left
    }
}

.form-prefixPostfix.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form-prefixPostfix .button,
.form-prefixPostfix .form-input {
    display: block;
    width: 100%
}

.form-prefixPostfix .form-inlineMessage {
    margin-bottom: .35714rem
}

@media (min-width:1261px) {

    .form-prefixPostfix .button,
    .form-prefixPostfix .form-input {
        width: auto
    }

    .form-prefixPostfix .form-inlineMessage {
        margin-bottom: 0
    }
}

.form-prefixPostfix-button--postfix {
    margin: .78571rem 0 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

@media (min-width:1261px) {
    .form-prefixPostfix-button--postfix {
        margin: 0 0 0 .78571rem;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
}

.form-increment .button {
    margin: 0;
    padding: .21429rem .35714rem
}

.form-input--incrementTotal {
    border: 0;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    height: auto;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    width: 2.5rem
}

.form-option {
    border: 1px solid #dfdfdf;
    color: #666;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    margin-bottom: .5rem;
    margin-right: .5rem;
    padding: 1px
}

.navList-action--checkbox.is-disabled,
.navUser-or,
.ribbon {
    cursor: default
}

.form-option:hover {
    border-color: #989898
}

.form-radio:checked + .form-option {
    border-color: #4f4f4f;
    box-shadow: 0 0 0 1px #4f4f4f
}

.form-option-variant {
    display: inline-block;
    font-size: 1rem;
    min-width: 2.71429rem;
    padding: 1px .35714rem;
    pointer-events: none
}

.form-option-variant--color,
.form-option-variant--pattern {
    min-width: initial;
    padding: 0
}

.form-option-variant--pattern {
    background-position: center;
    background-repeat: no-repeat
}

.form-input--small {
    font-size: 13px;
    height: 2.28571rem;
    line-height: 1rem;
    padding: .57143rem .78571rem
}

.form-minMaxRow {
    margin-left: -.375rem;
    margin-right: -.375rem
}

.form-minMaxRow:after,
.form-minMaxRow:before {
    content: " ";
    display: table
}

.form-minMaxRow .form-field {
    width: 33.33333%;
    float: left;
    margin-bottom: 0;
    padding-left: .375rem;
    padding-right: .375rem
}

.form-minMaxRow .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

@media (min-width:551px) {

    .form-option-variant--color,
    .form-option-variant--pattern {
        pointer-events: inherit
    }

    .form-row--half > .form-field:nth-child(odd) {
        clear: left
    }

    .card-body {
        text-align: left
    }
}

.account--addReturn-row:after,
.banner:after,
.cart-item,
.cart-item-info,
.facetedSearch-toggle:after,
.navUser-section:after,
.navUser:after,
.productCarousel:after,
.productReviews-list:after,
.productView-info-name,
.productView-info:after,
.productView-options:after,
.quickView:after,
.socialLinks:after {
    clear: both
}

[data-product-attribute] .form-option {
    overflow: hidden;
    position: relative
}

[data-product-attribute] .form-option.unavailable {
    background-color: #ddd;
    opacity: .3
}

[data-product-attribute] .form-option.unavailable:before {
    background-color: #000;
    content: "";
    height: 2px;
    left: -5px;
    position: absolute;
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 141%
}

[data-product-attribute=set-radio] .unavailable,
[data-product-attribute=product-list] .unavailable {
    opacity: .6;
    text-decoration: line-through
}

.card-title > a,
.facetLabel,
.heroCarousel-slide a,
.navBar-action,
.navList-action,
.navPages-action,
.navUser-action,
.socialLinks .icon,
.tag a {
    text-decoration: none
}

.card-figure {
    margin-top: 0;
    position: relative
}

.card-figure:hover .card-figcaption {
    opacity: 1
}

.card-img-container {
    max-width: 500px
}

.card-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 131.8%
}

.card-figcaption {
    display: none;
    margin: 0;
    pointer-events: none
}

@media (min-width:801px) {
    .card-figcaption {
        display: block
    }
}

.card-figcaption-body {
    display: inline-block;
    pointer-events: all;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.card-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 0;
    width: auto;
    max-height: 100%
}

.card-title {
    font-size: 15px;
    margin: 0 0 .28571rem
}

.card-title > a {
    color: #2d2d2d
}

.card-title > a:hover {
    color: #a5a5a5
}

.card-text {
    margin-bottom: .21429rem
}

.card-text abbr {
    border: 0;
    color: inherit;
    font-size: inherit
}

.card-figcaption-button {
    border: none;
    display: block;
    margin: .35714rem 0 0
}

.card-figcaption-button:active {
    background-color: #fff;
    border: none
}

.card-figcaption-button + .card-figcaption-button {
    margin: .35714rem 0 0
}

.card--alternate {
    border: 3px solid #fff
}

.card--alternate .card-body {
    background-color: #fff;
    padding: .78571rem;
    transition: all .15s ease
}

@media (min-width:551px) {
    .card--alternate .card-body {
        padding: 1.5rem
    }
}

.card--alternate:hover {
    border-color: #4f4f4f
}

.card--alternate:hover .card-body {
    background-color: #4f4f4f
}

.card--alternate:hover .card-body .card-text,
.card--alternate:hover .card-title > a {
    color: #fff
}

.navBar,
.navList {
    margin-left: 0
}

.navList-action.is-active {
    font-weight: 700
}

.navList-action--checkbox {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .35714rem;
    padding-left: 1.85714rem;
    position: relative;
    vertical-align: baseline;
    width: 100%
}

.navList-action--checkbox::after,
.navList-action--checkbox::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 50ms ease-out
}

.navList-action--checkbox::before {
    background-color: #fff;
    border: solid #dfdfdf;
    border-width: 1px;
    height: 1.14286rem;
    left: 0;
    top: 0;
    width: 1.14286rem;
    border-radius: 4px
}

.navList-action--checkbox::after {
    height: 1rem;
    left: 1px;
    opacity: 0;
    top: 1px;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 1rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(79, 79, 79, 0.999)' /%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgba(79, 79, 79, .999);
    content: "";
    font-size: 1rem;
    line-height: 1;
    text-align: center
}

.navList-action--checkbox:after,
.navList-action--checkbox:before {
    top: 50%
}

.navList-action--checkbox:before {
    margin-top: -.57143rem
}

.navList-action--checkbox:after {
    margin-top: -.5rem
}

.navList-action--checkbox.is-disabled::before {
    background-color: #fff
}

.navList-action--checkbox.is-checked::after,
.navList-action--checkbox.is-selected::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.navList-action-close {
    background: #f2f2f2;
    border-radius: 100%;
    display: inline-block;
    float: right;
    line-height: 0;
    opacity: 0;
    padding: .28571rem;
    transition: opacity .3s ease;
    visibility: hidden
}

.icon,
.icon svg,
.navPages-action svg,
.navUser-action svg,
.socialLinks .icon svg {
    transition: all .15s ease
}

.navList-action-close .icon {
    height: .92857rem;
    width: .92857rem;
    fill: #4f4f4f
}

.navList-action.is-selected:hover .navList-action-close {
    opacity: 1;
    visibility: visible
}

.navBar--sub {
    margin-bottom: 4.5rem;
    text-align: center
}

.navBar--sub .navBar-section {
    float: none
}

.navBar--sub .navBar-item {
    float: none;
    margin: 0 .78571rem
}

.navBar--sub .navBar-item.is-active > .navBar-action {
    color: #666
}

@media (min-width:801px) {
    .navBar--sub .navBar-item {
        display: inline-block
    }

    .navBar--sub .navBar-item.is-active {
        border-bottom: 1px solid #4f4f4f
    }

    .navBar--sub .navBar-item.navBar-item--separate {
        border-left: 1px solid #989898;
        margin: 0;
        padding-left: .78571rem
    }
}

.navBar--sub .navBar-action {
    color: #989898;
    font-size: 1rem;
    padding: 0
}

.navBar--sub .navBar-action:hover {
    color: #4f4f4f
}

.loadingOverlay {
    background-color: rgba(255, 255, 255, .9);
    display: none;
    z-index: 20
}

.icons-svg-sprite {
    display: none
}

.actionBar-section .form-field {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    overflow: hidden
}

.actionBar-section .form-field:hover {
    border-color: #989898
}

.actionBar-section .form-label {
    color: #989898;
    font-size: 13px;
    line-height: 2.14286rem;
    margin-bottom: 0;
    padding-left: .78571rem
}

.actionBar-section .form-input,
.actionBar-section .form-select {
    border: 0;
    padding-left: .21429rem;
    width: auto
}

.actionBar-section .form-input,
.actionBar-section .form-label,
.actionBar-section .form-select {
    display: inline-block
}

.navUser-section:after,
.navUser-section:before,
.navUser:after,
.navUser:before {
    content: " ";
    display: table
}

.actionBar-section .form-select {
    color: #4f4f4f;
    height: 2.14286rem
}

.has-ribbon {
    position: relative
}

.navUser,
.ribbon {
    position: absolute;
    right: 0
}

.ribbon {
    background-color: #454545;
    color: #fff;
    font-weight: 700;
    margin: -.78571rem -.78571rem 0 0;
    padding: .07143rem 1rem;
    top: 0;
    z-index: 1
}

.navUser {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 26px;
    width: 100%;
    z-index: 5
}

.navUser .dropdown-menu.is-open:after,
.navUser .dropdown-menu.is-open:before {
    width: 0;
    content: "";
    display: block;
    position: absolute
}

.navUser ol,
.navUser ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.navUser ol ol,
.navUser ol ul,
.navUser ul ol,
.navUser ul ul {
    list-style: none;
    margin-bottom: 0
}

.navUser ol li,
.navUser ul li {
    margin: 0;
    padding: 0
}

.navUser-section {
    float: left
}

.navUser-section--alt {
    float: right;
    margin-left: 1.5rem
}

.navUser-section + .navUser-section {
    margin-left: 1.5rem
}

.navUser-action,
.navUser-item {
    display: block
}

@media (min-width:801px) {
    .navUser {
        padding: 0 1.5rem;
        position: relative;
        right: auto;
        top: auto;
        -webkit-transform: none;
        transform: none;
        z-index: 50
    }
}

.navUser .dropdown-menu {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .13);
    position: absolute
}

.navUser .dropdown-menu.is-open:before {
    border: 10px inset;
    height: 0;
    border-color: transparent transparent #e8e8e8;
    border-bottom-style: solid;
    bottom: 100%;
    left: .78571rem
}

.navUser .dropdown-menu.is-open:after {
    border: 8px inset;
    height: 0;
    border-color: transparent transparent #fff;
    border-bottom-style: solid;
    bottom: 100%;
    left: .92857rem
}

.navUser-action--quickSearch.is-open,
.navUser-or {
    position: relative
}

.navUser-action {
    color: #4f4f4f;
    font-weight: 700;
    padding: 1rem .78571rem
}

.navUser-action.is-open,
.navUser-action:hover {
    color: #a5a5a5
}

.navUser-action.is-open svg,
.navUser-action:hover svg {
    fill: #a5a5a5;
    stroke: #a5a5a5
}

.navUser-action .icon {
    height: .57143rem;
    width: .57143rem;
    margin: -1px 0 0 .21429rem
}

.navUser-action svg {
    fill: #4f4f4f;
    stroke: #4f4f4f
}

.navUser-action--currencySelector + .dropdown-menu:before {
    left: auto !important;
    right: .78571rem
}

.navUser-action--currencySelector + .dropdown-menu:after {
    left: auto !important;
    right: .92857rem
}

.navUser-action--storeCredit + .dropdown-menu {
    max-width: 21.42857rem;
    padding: 1.5rem
}

.navUser-action--storeCredit + .dropdown-menu:before {
    left: 10rem !important
}

.navUser-action--storeCredit + .dropdown-menu:after {
    left: 10.14286rem !important
}

.navUser-action-divider {
    border-right: 1px solid #e8e8e8;
    color: #989898;
    display: inline-block;
    padding: 0 1.42857rem 0 0;
    text-decoration: none
}

.navUser-item {
    display: none
}

.navUser-item--cart {
    display: block
}

.navUser-item--cart .navUser-action {
    color: #4f4f4f
}

.navUser-item--cart .navUser-action.is-open,
.navUser-item--cart .navUser-action:hover {
    color: #a5a5a5
}

.navUser-item--cart .dropdown-menu {
    max-width: 22.85714rem
}

.navUser-item--cart .dropdown-menu.is-open {
    top: auto !important;
    left: auto !important;
    right: .35714rem
}

@media (min-width:801px) {
    .navUser-section {
        position: relative
    }

    .navUser-item {
        display: block
    }

    .navUser-item.navUser-item--social {
        margin-top: .35714rem;
        padding-right: .35714rem
    }

    .navUser-item.navUser-item--divider {
        font-size: 1.78571rem;
        margin-top: .57143rem;
        padding-left: .14286rem
    }

    .navUser-item--cart .dropdown-menu.is-open {
        right: 0
    }
}

.navUser-item--cart .dropdown-menu.is-open:after,
.navUser-item--cart .dropdown-menu.is-open:before {
    left: auto
}

.navUser-item--cart .dropdown-menu.is-open:before {
    right: .42857rem
}

@media (min-width:801px) {
    .navUser-item--cart .dropdown-menu.is-open:before {
        right: .78571rem
    }
}

.navUser-item--cart .dropdown-menu.is-open:after {
    right: .57143rem
}

@media (min-width:801px) {
    .navUser-item--cart .dropdown-menu.is-open:after {
        right: .92857rem
    }
}

.navUser-item-cartLabel {
    display: none
}

@media (min-width:551px) {
    .navUser-item {
        float: left
    }

    .navUser-item-cartLabel {
        display: inline
    }
}

.navUser-item--compare {
    display: none
}

.navUser-item--compare.show {
    display: block
}

.navUser-item--account .navUser-action,
.navUser-or {
    display: inline-block
}

.navUser-item--account .navUser-or + .navUser-action {
    margin-right: -.5rem
}

.navUser-or {
    color: #4f4f4f;
    margin: 0 -.85714rem;
    padding: 0 2px;
    z-index: 1
}

.cart-remove,
.jstree-ocl {
    cursor: pointer
}

.navUser-action--quickSearch.is-open:before {
    border: 10px inset;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: transparent transparent #e8e8e8;
    border-bottom-style: solid;
    bottom: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.dropdown--quickSearch {
    background-color: #e8e8e8;
    padding: 1.5rem 0
}

@media (min-width:551px) {
    .dropdown--quickSearch {
        padding: 3rem
    }
}

.dropdown--quickSearch.is-open {
    left: 0 !important;
    outline: 0;
    right: 0 !important;
    width: 100% !important;
    z-index: 50
}

.dropdown--quickSearch .form {
    margin: auto;
    max-width: 30rem
}

.dropdown--quickSearch .form,
.dropdown--quickSearch .form-field {
    margin-bottom: 0
}

.dropdown--quickSearch .form-input {
    font-size: 20px;
    height: unset
}

.dropdown--quickSearch .productGrid {
    padding: 1.5rem 0 0
}

@media (min-width:551px) {
    .dropdown--quickSearch .productGrid {
        padding: 3rem 0 0
    }
}

.countPill {
    background-color: #4f4f4f;
    border-radius: 50%;
    color: #fff;
    display: none;
    font-size: 12px;
    font-weight: 700;
    height: 20px;
    line-height: 20px;
    margin-left: .21429rem;
    text-align: center;
    width: 20px
}

.countPill--positive {
    display: inline-block
}

.countPill--alt {
    background-color: #dfdfdf;
    color: #454545
}

.navPage-childList,
.navPages .navPage-subMenu-list {
    border-left: 1px solid #dfdfdf;
    margin: .35714rem .78571rem;
    padding-left: .78571rem
}

.has-activeNavPages {
    overflow: hidden;
    -webkit-overflow-scrolling: auto
}

.navPages-container {
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    right: 0;
    z-index: 10
}

@media (min-width:801px) {
    .navPages-container {
        background: 0 0;
        display: block;
        height: auto;
        padding: 0;
        position: relative
    }
}

.navPages-container.is-open {
    display: block;
    padding-top: 55px;
    z-index: 0
}

.navPages {
    background-color: #f2f2f2;
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem
}

@media (min-width:801px) {

    .navPages-section:after,
    .navPages-section:before,
    .navPages:after,
    .navPages:before {
        content: " ";
        display: table
    }

    .navPages-section:after,
    .navPages:after {
        clear: both
    }

    .navPages {
        margin: 0 auto;
/*        max-width: 85.71429rem;*/
        width: 100%;
        background: 0 0;
        font-size: 15px;
        overflow-y: visible;
        padding: 0;
        text-align: center
    }
    .menu-header-menu   {
    display: inline-flex !important;
}}

    .navPages ol,
    .navPages ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    .navPages ol ol,
    .navPages ol ul,
    .navPages ul ol,
    .navPages ul ul {
        list-style: none;
        margin-bottom: 0
    }

    .navPages ol li,
    .navPages ul li {
        margin: 0;
        padding: 0
    }

    .navPages-section {
        float: left
    }

    .navPages-section--alt {
        float: right;
        margin-left: 1.5rem
    }

    .navPages-section + .navPages-section {
        margin-left: 1.5rem
    }

    .navPages-action,
    .navPages-item {
        display: block
    }
}

@media (min-width:801px) and (min-width:551px) {
    .navPages-item {
        float: left
    }
}

.navPages ul {
    list-style: none
}

.navPages .navPage-subMenu-list {
    border-left: 0;
    list-style: none;
    margin-left: 0;
    padding-left: 0
}

@media (min-width:801px) {
    .navPages .navPage-subMenu-list {
        max-width: 85.71429rem;
        width: 100%;
        border-left: 0;
        margin: auto;
        padding-left: 0
    }

    .navPages .navPage-subMenu-list:after,
    .navPages .navPage-subMenu-list:before {
        content: " ";
        display: table
    }

    .navPages .navPage-subMenu-list:after {
        clear: both
    }

    .navPages-list {
        display: inline-block;
        float: none
    }
}

.navPages-list {
    margin: 0
}

.navPages-list + .navPages-list {
    border-top: 1px solid #dfdfdf;
    margin-top: .78571rem;
    padding-top: .78571rem
}

.navPages-list-depth-max.subMenu-is-open .is-hidden {
    display: none
}

@media (min-width:801px) {
    .navPages-list-depth-max.subMenu-is-open .is-hidden {
        display: inline-block
    }
}

.navPages-list-depth-max.subMenu-is-open .navPages-item-page {
    display: none
}

.navPages-action-depth-max.has-subMenu.is-open {
    border-bottom: 1px solid #dfdfdf;
    text-align: center
}

@media (min-width:801px) {
    .navPages-list-depth-max.subMenu-is-open .navPages-item-page {
        display: inline-block
    }

    .navPages-action-depth-max.has-subMenu.is-root.is-open .navPages-action-moreIcon {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    .navPages-action-depth-max.has-subMenu.is-open {
        border-bottom: 0;
        text-align: left
    }
}

.navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
    border: 1px solid #d6cdc0;
    border-radius: 4px;
    float: left;
    height: 35px;
    margin-top: -10px;
    padding: 11.7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 35px
}

@media (min-width:801px) {
    .navPages-action-depth-max.has-subMenu.is-open .navPages-action-moreIcon {
        height: .57143rem;
        width: .57143rem;
        border: 0;
        border-radius: 0;
        float: none;
        margin-top: 0;
        padding: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
}

.navPages-action-depth-max.has-subMenu.is-open svg {
    height: 9.6px;
    width: 9.6px
}

.navPages-action {
    color: #4f4f4f;
    display: block;
    font-size: 15px;
    font-weight: 700;
    padding: .78571rem 0
}

@media (min-width:801px) {
    .navPages-action-depth-max.has-subMenu.is-open svg {
        height: 100%;
        width: 100%
    }

    .navPages-action {
        display: inline-block;
        padding: .78571rem 1.14286rem 1.14286rem
    }

    .navPages-action.is-open {
        background-color: #f2f2f2
    }

    .navPages-action.is-open svg {
        fill: #a5a5a5;
        stroke: #a5a5a5
    }
}

.navPages-action.activePage,
.navPages-action:hover {
    color: #a5a5a5
}

.navPages-action.activePage svg,
.navPages-action:hover svg {
    fill: #a5a5a5;
    stroke: #a5a5a5
}

.navPages-action svg {
    fill: #4f4f4f;
    stroke: #4f4f4f
}

.navPages-action--storeCredit {
    color: #989898
}

.navPages-action--compare {
    display: none
}

.navPages-action--compare.show {
    display: block
}

.navPages-action-moreIcon {
    height: .57143rem;
    width: .57143rem;
    margin-left: .35714rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media (min-width:801px) {
    .navPages-action-moreIcon {
        -webkit-transform: none;
        transform: none
    }
}

.has-subMenu.is-open .navPages-action-moreIcon {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.navPage-childList {
    display: none
}

@media (min-width:801px) {
    .navPage-childList {
        border: 0;
        display: block
    }
}

.navPage-childList.is-open {
    display: block
}

.navPage-subMenu {
    display: none;
    outline: 0
}

@media (min-width:801px) {
    .navPage-subMenu {
        background-color: #f2f2f2;
        padding: 1.5rem 1.5rem 2.28571rem !important;
        position: absolute;
        text-align: left
    }

    .navPage-subMenu.is-open {
        display: block;
        left: 0;
        width: 100%
    }

    .navPage-subMenu .navPages-action-moreIcon {
        display: none
    }

    .has-subMenu.is-root + .navPage-subMenu-horizontal {
        border-left: 0;
        height: auto;
        left: inherit;
        margin: auto;
        top: inherit;
        width: 15.35714rem
    }
}

.navPage-subMenu.is-open {
    display: block
}

@media (min-width:801px) {
    .navPage-subMenu-horizontal.is-open {
        border-left: 1px solid #dfdfdf;
        display: inherit;
        height: auto;
        margin-left: 15.35714rem;
        padding: 0 !important;
        top: 0;
        width: 16.35714rem
    }

    .navPage-subMenu-horizontal .navPages-action-moreIcon {
        display: inline-block;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .navPage-subMenu-item {
        width: 25%;
        float: left;
        padding: 0 .75rem !important
    }

    .navPage-subMenu-item .navPages-action {
        text-transform: none;
        width: 100%
    }

    .navPage-subMenu-item > .navPage-subMenu-action {
        border-bottom: 1px solid #dfdfdf;
        margin-bottom: 1.14286rem
    }

    .navPage-subMenu-item-child .navPage-subMenu-action,
    .navPage-subMenu-item-parent .navPage-subMenu-action {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 100%
    }

    .navPage-subMenu-item-child .navPage-subMenu-action.is-open,
    .navPage-subMenu-item-child .navPage-subMenu-action:hover,
    .navPage-subMenu-item-parent .navPage-subMenu-action.is-open,
    .navPage-subMenu-item-parent .navPage-subMenu-action:hover {
        background: #c8bdb2;
        color: #000;
        font-weight: 500;
        opacity: .3
    }
}

.navPages-list--user #currencySelection2 .dropdown-menu-item:not(:last-child),
.navPages-quickSearch {
    border-bottom: 1px solid #e8e8e8
}

.navPage-subMenu-item-child,
.navPage-subMenu-item-parent {
    width: 100%
}

.navPage-subMenu-action {
    padding: .78571rem 0
}

@media (min-width:801px) {
    .navPage-subMenu-action {
        padding: .78571rem 0 1.14286rem
    }

    .navPages-quickSearch {
        display: none
    }
}

.navPage-childList-action {
    font-weight: 400;
    padding: 0 0 .35714rem
}

.navPages-list--user #currencySelection2 .dropdown-menu-item,
.navPages-quickSearch > .container {
    padding: 0
}

.navPages-quickSearch {
    margin-bottom: .78571rem
}

.navPages-quickSearch .form {
    margin: 0
}

.navPages-quickSearch .form-field {
    margin-bottom: 0
}

@media (min-width:801px) {
    .navPages-list--user {
        display: none;
    }
}

.tag,
.tag a {
    display: inline-block
}

.navPages-list--user #currencySelection2 {
    background-color: #fff;
    border: 1px solid #e8e8e8
}

.navPages-list--user #currencySelection2 a {
    padding: .78571rem 1.5rem
}

.tags {
    list-style: none;
    margin-left: 0;
    font-size: 0;
    text-align: center
}

.tags ol,
.tags ul {
    list-style: none;
    margin-bottom: 0
}

.tag {
    font-size: 1rem
}

.tag a {
    color: #989898;
    padding: .35714rem .5rem
}

.socialLinks,
.socialLinks li {
    padding: 0;
    margin: 0
}

.tag a:hover {
    color: #4f4f4f
}

.socialLinks {
    list-style: none;
    line-height: 37px
}

.socialLinks:after,
.socialLinks:before {
    content: " ";
    display: table
}

.socialLinks ol,
.socialLinks ul {
    list-style: none;
    margin-bottom: 0
}

.socialLinks .icon {
    height: 1.42857rem;
    width: 1.42857rem;
    margin: 0
}

.socialLinks .icon:hover svg {
    fill: #a5a5a5
}

.socialLinks .icon svg {
    fill: #4f4f4f
}

.google_plusone_iframe_widget {
    width: inherit !important
}

.socialLinks-item--pinterest {
    width: 25px
}

.pin_it_iframe_widget {
    display: none
}

.socialLinks-item {
    display: inline-block;
    font-size: 0
}

.socialLinks .socialLinks-item {
    margin-bottom: .35714rem;
    margin-right: .78571rem
}

.socialLinks .socialLinks-item:last-child {
    margin-right: 0
}

.socialLinks--alt .icon {
    height: 1.5rem;
    width: 1.5rem
}

.socialLinks--alt svg {
    fill: #989898
}

.heroCarousel {
    width: 1px;
    min-width: 100%;
    margin-bottom: 4.5rem;
    margin-top: -1.5rem
}

.heroCarousel.slick-initialized {
    max-height: 71.42857rem;
    opacity: 1
}

.heroCarousel:not(.slick-initialized) :not(.heroCarousel-slide--first).heroCarousel-slide {
    display: none
}

.heroCarousel .slick-next,
.heroCarousel .slick-prev {
    top: 50%
}

.heroCarousel .slick-next {
    right: 15px
}

.heroCarousel .slick-prev {
    left: 15px
}

.heroCarousel .slick-dots {
    bottom: .5rem
}

.heroCarousel .slick-dots li {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .9)
}

.heroCarousel-slide {
    position: relative
}

.heroCarousel-slide.compat-object-fit {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}

.heroCarousel-slide.compat-object-fit .heroCarousel-image {
    opacity: 0
}

.heroCarousel-content {
    background-color: #fff;
    padding: .78571rem 1.5rem 3rem;
    text-align: center
}

@media (min-width:801px) {
    .heroCarousel {
        margin-top: -2.5rem
    }

    .heroCarousel .slick-next {
        right: 25px
    }

    .heroCarousel .slick-prev {
        left: 25px
    }

    .heroCarousel .slick-dots {
        bottom: 1.5rem
    }

    .heroCarousel-slide .heroCarousel-image {
        -o-object-fit: cover;
        object-fit: cover;
        max-height: 42.85714rem;
        width: 100%
    }

    .heroCarousel-slide .heroCarousel-image-wrapper {
        max-height: 42.85714rem
    }

    .heroCarousel-content {
        background-color: #fff;
        background-color: rgba(255, 255, 255, .9);
        left: 0;
        margin: 0 auto;
        padding: 2.25rem;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 50rem
    }

    .heroCarousel-content.heroCarousel-content--empty {
        background-color: transparent
    }
}

.heroCarousel-title {
    color: #2d2d2d;
    font-size: 20px;
    margin-top: 0
}

@media (min-width:801px) {
    .heroCarousel-title {
        font-size: 50px
    }
}

.heroCarousel-description {
    color: #2d2d2d;
    font-size: 12px
}

@media (min-width:551px) {
    .heroCarousel-description {
        font-size: 13px
    }
}

.heroCarousel-action {
    margin: 0
}

@media (min-width:801px) {
    .heroCarousel-description {
        font-size: 15px
    }

    .heroCarousel-action {
        margin-top: 1.5rem
    }

    .writeReview-form,
    .writeReview-productDetails {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 50%;
        float: left
    }
}

.writeReview-productDetails .product-brand {
    color: #a5a5a5;
    margin: 0
}

.writeReview-productDetails .product-title {
    margin-top: 0
}

.writeReview-productImage-container {
    position: relative
}

.writeReview-productImage-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.writeReview-productImage-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 131.8%
}

.account--addReturn .table {
    display: block;
    margin-bottom: 3rem
}

@media (min-width:551px) {
    .account--addReturn .table {
        display: table;
        margin-bottom: 6rem
    }
}

.account--addReturn .table tr {
    display: block;
    padding: 1.5rem 0
}

@media (min-width:551px) {
    .account--addReturn .table tr {
        display: table-row;
        padding: 0
    }
}

.account--addReturn .table td,
.account--addReturn .table th {
    display: block;
    padding: 0
}

.account--addReturn .table td + td,
.account--addReturn .table td + th,
.account--addReturn .table th + td,
.account--addReturn .table th + th {
    padding-left: 0
}

.account--addReturn .table .return-itemTitle + .definitionList {
    margin-top: .21429rem
}

@media (min-width:551px) {

    .account--addReturn .table td,
    .account--addReturn .table th {
        display: table-cell;
        padding-bottom: .78571rem;
        padding-top: .78571rem
    }

    .account--addReturn .table td + td,
    .account--addReturn .table td + th,
    .account--addReturn .table th + td,
    .account--addReturn .table th + th {
        padding-left: 1.5rem
    }

    .account--addReturn .table .return-itemPrice {
        text-align: center
    }

    .account--addReturn .table .return-itemQuantity {
        text-align: right
    }
}

.account--addReturn .table-thead {
    display: none
}

@media (min-width:551px) {
    .account--addReturn .table-thead {
        display: table-header-group
    }
}

.account--addReturn .table-thead th {
    font-size: 15px
}

.account--addReturn .table-thead th:first-child {
    width: 60%
}

.account--addReturn .table-tbody {
    display: block
}

.return-itemName {
    font-size: 15px;
    font-weight: 700
}

.return-itemPrice {
    color: #a5a5a5;
    margin-bottom: .35714rem
}

@media (min-width:551px) {
    .account--addReturn .table-tbody {
        display: table-row-group
    }

    .return-itemName {
        font-size: 1rem;
        font-weight: 400
    }

    .return-itemPrice {
        color: inherit;
        margin-bottom: 0;
        text-align: center
    }

    .return-itemQuantity .form-label {
        border: 0;
        clip: rect(1px, 1px, 1px, 1px);
        height: 1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }
}

.return-itemQuantity .form-label {
    display: inline;
    margin-right: .35714rem
}

.account--addReturn-row:after,
.account--addReturn-row:before,
.productCarousel:after,
.productCarousel:before,
.productReviews-list:after,
.productReviews-list:before,
.quickView:after,
.quickView:before {
    content: " ";
    display: table
}

.account--addReturn-row {
    max-width: none;
    width: auto;
    margin: 0 -1rem
}

.account--addReturn-column {
    width: 100%;
    float: left;
    padding: 0 1rem
}

.productCarousel-slide,
.productReview {
    padding-left: .75rem;
    padding-right: .75rem
}

@media (min-width:551px) {
    .account--addReturn-column {
        width: 50%
    }
}

.productCarousel {
    min-width: 100%;
    margin: 0 -.75rem;
    max-width: none;
    width: auto
}

.productCarousel-slide {
    width: 50%;
    float: left
}

@media (min-width:551px) {
    .productCarousel-slide {
        width: 33.33333%
    }
}

@media (min-width:801px) {
    .productCarousel-slide {
        width: 25%
    }
}

@media (min-width:1261px) {
    .heroCarousel-slide.compat-object-fit.stretch {
        background-size: 100% 100%
    }

    .productCarousel-slide {
        width: 16.66667%
    }
}

.productCarousel-slide .card {
    margin-bottom: 0
}

.productCarousel-slide .card .card-title {
    overflow-wrap: break-word
}

.productReviews-list {
    list-style: none;
    margin: 0 -.75rem;
    max-width: none;
    width: auto;
    font-size: 0
}

.productReviews-list ol,
.productReviews-list ul {
    list-style: none;
    margin-bottom: 0
}

.productReview {
    width: 100%;
    display: inline-block;
    float: none;
    font-size: 1rem;
    vertical-align: top
}

@media (min-width:801px) {
    .productReview {
        width: 50%
    }

    .productView-image {
        min-height: 366px;
        min-width: inherit
    }
}

@media (min-width:1261px) {
    .productReview {
        width: 33.33333%
    }
}

.productReview-title {
    margin: 0;
    text-transform: none
}

.productReview-author {
    color: #989898;
    margin-bottom: 1rem
}

.productReview-rating {
    display: inline-block;
    margin-bottom: .35714rem
}

.productReview-ratingNumber {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.productView {
    padding-top: 1rem
}

.productView-images {
    margin-bottom: 3rem
}

.productView-image {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    position: relative
}

.productView-image + .productView-thumbnails {
    margin-top: .78571rem
}

@media (min-width:320px) and (max-width:801px) {
    .productView-image {
        pointer-events: none
    }
}

.productView-img-container {
    position: relative;
    margin: auto;
    max-width: 500px;
    width: 100%
}

.productView-img-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    width: auto
}

.productView-img-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 131.8%
}

.productView-thumbnails {
    list-style: none;
    margin: 0 -.35714rem;
    max-width: none;
    width: auto
}

.productView-thumbnails ol,
.productView-thumbnails ul {
    list-style: none;
    margin-bottom: 0
}

.productView-thumbnails:after,
.productView-thumbnails:before {
    content: " ";
    display: table
}

.productView-thumbnails:after {
    clear: both
}

.productView-thumbnails .slick-list {
    margin-left: 2.85714rem;
    margin-right: 2.85714rem
}

.productView-thumbnails .slick-next {
    right: 0
}

.productView-thumbnails .slick-prev {
    left: 0
}

.productView-thumbnails img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 50px;
    max-width: 50px;
    width: auto
}

.productView-thumbnail {
    width: 25%;
    float: left;
    padding-left: .35714rem;
    padding-right: .35714rem;
    text-align: center
}

@media (min-width:1261px) {
    .productView-thumbnail {
        width: 20%
    }
}

.productView-thumbnail-link {
    border: 1px solid #e8e8e8;
    display: inline-block;
    height: 67px;
    max-width: 75px;
    padding: 2px;
    position: relative;
    text-align: center;
    width: 100%
}

.productView-thumbnail-link.is-active,
.productView-thumbnail-link:hover {
    border-color: #454545
}

.productView-details {
    margin-bottom: 2rem
}

.productView-product > :last-child {
    margin-bottom: 0
}

.productView-title {
    font-size: 20px;
    margin: -.78571rem 0 .35714rem
}

@media (min-width:801px) {
    .productView-product {
        border-bottom: 1px solid #e8e8e8;
        padding-bottom: 2rem
    }

    .productView-title {
        margin-top: 1.5rem
    }
}

@media (min-width:1261px) {
    .productView-title {
        font-size: 28px
    }
}

.productView-brand {
    color: #989898;
    font-size: 15px;
    margin: 0 0 .78571rem
}

@media (min-width:1261px) {
    .productView-brand {
        font-size: 20px;
        margin: -.21429rem 0 1rem
    }
}

.productView-brand a {
    color: #989898
}

.productView-brand a:hover {
    color: #4f4f4f
}

.productView-price {
    font-size: 15px;
    margin-bottom: .5rem
}

@media (min-width:801px) {
    .productView-price {
        font-size: 25px;
        margin-bottom: 1rem
    }
}

.productView-price .price-section--saving {
    font-size: 15px
}

.productView-price abbr {
    border: 0;
    color: inherit;
    font-size: inherit
}

.productView-reviewLink {
    display: inline-block;
    margin-left: .78571rem;
    vertical-align: middle
}

.productView-reviewLink + .productView-reviewLink {
    display: block;
    margin-left: auto
}

@media (min-width:551px) {
    .productView-reviewLink + .productView-reviewLink {
        display: inline-block;
        margin-left: .78571rem
    }
}

.productView-info:after,
.productView-info:before,
.productView-options:after,
.productView-options:before {
    display: table;
    content: " "
}

.productView-reviewLink > a {
    color: #989898
}

.productView-reviewLink > a:hover {
    color: #4f4f4f
}

.productView-info {
    margin-top: .78571rem
}

.productView-info > :last-child {
    margin-bottom: 0
}

.productView-info-name,
.productView-info-value {
    float: left
}

.productView-info-name {
    margin-bottom: .21429rem;
    margin-right: .35714rem
}

.productView-info-value {
    margin-bottom: .35714rem
}

@media (min-width:551px) {
    .productView-info {
        margin-top: 0
    }

    .productView-info > :first-child {
        margin-top: 1.5rem
    }

    .productView-info-name,
    .productView-info-value {
        float: none
    }

    .productView-info-name {
        font-family: Montserrat, Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 400
    }

    .productView-info-value {
        margin-bottom: 1rem
    }
}

.productView-options {
    margin-bottom: 1.5rem;
    text-align: center
}

@media (min-width:551px) {
    .productView-options {
        text-align: left
    }

    .productView-options .form-input[type=number] {
        width: 16.66667%
    }
}

.productView-options .form {
    display: inline
}

.productView-options input[type=file] {
    font-size: 13px
}

.productView-options .form-field {
    font-size: 0;
    margin-bottom: 2rem
}

.productView-options .form-field > .form-checkbox + .form-label,
.productView-options .form-field > .form-radio + .form-label {
    display: inline-block;
    margin-left: 1.5rem;
    width: auto
}

.productView-options .form-field > .form-label:nth-of-type(2) {
    margin-left: 0
}

@media (min-width:551px) {

    .productView-options .form-field > .form-checkbox + .form-label,
    .productView-options .form-field > .form-radio + .form-label {
        margin-left: 0;
        width: 100%
    }

    .productView-options .form-action {
        float: left;
        padding: 0 .71429rem;
        width: 50%
    }
}

@media (min-width:801px) {
    .productView-options .form-action {
        float: none;
        padding: 0;
        width: auto
    }
}

.productView-options .form-action .button {
    width: 100%
}

@media (min-width:1261px) {
    .productView-options .form-action {
        display: inline-block;
        margin-top: 1rem
    }

    .productView-options .form-action .button {
        margin-right: .78571rem;
        width: auto
    }
}

.productOptions-list {
    border: 1px solid #dfdfdf;
    list-style: none;
    margin: 0
}

.productOptions-list-item {
    padding: 1.5rem
}

.productOptions-list-item + .productOptions-list-item {
    border-top: 1px solid #dfdfdf
}

.compareTable,
.compareTable-row + .compareTable-row .compareTable-heading,
.compareTable-row + .compareTable-row .compareTable-item {
    border-top: 1px solid #e8e8e8
}

.productOptions-list-item .form-label {
    text-align: left;
    top: -2px
}

.productOptions-list-item-content,
.productOptions-list-item-figure {
    display: table-cell;
    vertical-align: middle
}

.productOptions-list-item-figure {
    width: 3rem
}

.productOptions-list-item-content {
    padding-left: 1.28571rem
}

.shareProduct {
    text-align: center
}

.productView-image .easyzoom-flyout {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%
}

.productView-image .easyzoom-flyout img {
    max-width: none;
    width: auto
}

.banner,
.facetedSearch-toggle,
.previewCartAction,
.previewCartItem {
    max-width: 85.71429rem
}

.price--discounted,
.price--non-sale,
.price--rrp {
    text-decoration: line-through
}

.price-section--minor {
    color: #a5a5a5
}

.compareTable {
    table-layout: fixed;
    width: 100%
}

.compareTable-row {
    vertical-align: top
}

.compareTable-row + .compareTable-row .compareTable-heading:empty {
    border-top: 0
}

.compareTable-heading {
    font-size: 15px;
    font-weight: 400;
    padding: 1.28571rem 1rem;
    position: relative;
    text-align: right;
    width: 0
}

.compareTable-headingText {
    position: absolute;
    top: 1.28571rem;
    white-space: nowrap
}

.compareTable-item {
    padding: 3.28571rem 1rem 1.28571rem
}

@media (min-width:801px) {
    .compareTable-heading {
        width: 25%
    }

    .compareTable-headingText {
        position: inherit;
        top: inherit
    }

    .compareTable-item {
        padding-top: 1.28571rem
    }
}

.compareTable-removeProduct {
    background-color: #f2f2f2;
    border-radius: 50%;
    height: 2.5rem;
    position: absolute;
    right: -1rem;
    top: -1rem;
    transition: background-color .15s ease;
    width: 2.5rem
}

.compareTable-removeProduct .icon {
    fill: #4f4f4f;
    height: 1.5rem;
    margin-top: .5rem;
    width: 1.5rem
}

.compareTable-product {
    font-weight: 400;
    padding: 2rem 1rem 1.28571rem
}

.compareTable-product .card {
    margin-bottom: 0
}

.compareTable-product .card-body {
    min-height: 6rem;
    padding-top: 1rem
}

.compareTable-action {
    padding: 0 1rem 1rem
}

.compareTable-action .button {
    display: block;
    padding-left: .78571rem;
    padding-right: .78571rem;
    width: 100%
}

.blocker {
    background: rgba(255, 255, 255, .5);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 500
}

.blocker-container,
.cart-item-figure,
.facetLabel .icon,
.textTruncate {
    position: relative
}

.textTruncate {
    padding-bottom: 1.5rem;
    transition: max-height .1s ease-out
}

.js .textTruncate {
    max-height: 110px;
    overflow: hidden
}

.js .textTruncate--visible {
    max-height: 71.42857rem
}

.textTruncate-viewMore {
    background-color: #fff;
    bottom: 0;
    padding-top: 10px;
    position: absolute;
    width: 100%
}

.toggle {
    border-top: 1px solid #e8e8e8;
    margin-bottom: 2.28571rem
}

.toggle:last-of-type {
    margin-bottom: 4.57143rem
}

.toggle-title {
    margin-bottom: 2.28571rem
}

.toggleLink {
    color: #989898
}

.toggleLink:hover {
    color: #4f4f4f
}

.banners,
.banners a {
    color: #fff
}

.toggle-title .toggleLink {
    float: right;
    line-height: 24px
}

.toggleLink-text {
    font-size: 13px;
    font-weight: 400
}

.toggleLink-text--off {
    display: inline-block
}

.toggleLink-text--on,
.toggleLink.is-open .toggleLink-text--off {
    display: none
}

.toggleLink.is-open .toggleLink-text--on {
    display: inline-block
}

.toggle-content {
    display: none
}

.toggle-content.is-open {
    display: block
}

.facetedSearch-toggle {
    margin: 0 auto 2rem;
    width: 100%;
    border: solid #e8e8e8;
    border-radius: 4px;
    border-width: 1px;
    display: block;
    padding: 1rem
}

.blog + .blog,
.cart-list,
.footer,
.previewCartAction,
.previewCartItem + .previewCartItem,
.sidebarBlock + .sidebarBlock {
    border-top: 1px solid #e8e8e8
}

.facetedSearch-toggle:after,
.facetedSearch-toggle:before {
    content: " ";
    display: table
}

@media (min-width:801px) {
    .facetedSearch-toggle {
        display: none !important
    }
}

.facetedSearch-toggle.is-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0
}

.facetedSearch-toggle-indicator,
.facetedSearch-toggle-text {
    display: block;
    font-weight: 400
}

.facetedSearch-toggle-text {
    width: 58.33333%;
    float: left;
    padding: 0;
    text-align: left
}

.facetedSearch-toggle-indicator {
    width: 41.66667%;
    float: left;
    font-weight: 700;
    padding: 0;
    text-align: right
}

.facetedSearch-navList {
    display: none
}

@media (min-width:801px) {
    .facetedSearch-navList {
        display: block !important
    }
}

.facetedSearch-navList.is-open {
    display: block
}

.facetedSearch-navList.is-open .accordion--navList,
.facetedSearch-navList.is-open .accordion-block:first-child .accordion-navigation {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.facetedSearch-toggle + .facetedSearch-navList,
.sidebarBlock + .facetedSearch-navList {
    margin-top: 2rem
}

.facetedSearch-toggle + .facetedSearch-navList.is-open,
.sidebarBlock + .facetedSearch-navList.is-open {
    margin-top: -1px
}

.facetedSearch-navList .navList--inner {
    margin-left: 1.5rem
}

.facet-quick-heading {
    text-transform: capitalize
}

.facetedSearch-optionColumns {
    -webkit-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    column-gap: 20px
}

.facetedSearch-refineFilters {
    display: none
}

@media (min-width:801px) {

    .facetedSearch-toggle + .facetedSearch-navList.is-open,
    .sidebarBlock + .facetedSearch-navList.is-open {
        margin-top: 2rem
    }

    .facetedSearch-refineFilters {
        display: block
    }
}

.facetedSearch-content--rating .is-selected {
    font-weight: 700
}

.banners {
    background-color: #4f4f4f;
    padding: .78571rem 0;
    text-align: center
}

.banners p:last-child {
    margin-bottom: 0
}

.banner {
    margin: 0 auto;
    width: 100%
}

.banner:after,
.banner:before {
    content: " ";
    display: table
}

.banner + .banner {
    margin-top: 1.5rem
}

.facetLabel {
    background: #f2f2f2;
    border-radius: 4px;
    padding: .21429rem .5rem .21429rem .71429rem
}

.facetLabel .icon {
    height: .85714rem;
    width: .85714rem;
    display: inline-block;
    fill: #989898;
    top: -1px
}

.cart {
    display: block;
    margin-bottom: 1.5rem;
    width: 100%
}

@media (min-width:801px) {
    .cart {
        display: table
    }
}

.cart-header {
    display: none
}

@media (min-width:801px) {
    .cart-header {
        display: table-header-group;
        text-align: left
    }
}

.cart-header-item {
    padding-bottom: 1rem
}

.cart-header-item:last-child {
    text-align: right
}

.cart-list {
    display: block
}

@media (min-width:801px) {
    .cart-list {
        display: table-row-group
    }
}

.cart-item {
    border-bottom: 1px solid #e8e8e8;
    display: block;
    padding: 1.5rem 0
}

@media (min-width:551px) {
    .cart-item {
        padding-left: 25%
    }

    .cart-item:after,
    .cart-item:before {
        content: " ";
        display: table
    }

    .cart-item:after {
        clear: both
    }
}

@media (min-width:801px) {
    .cart-item {
        display: table-row;
        padding-left: 0
    }

    .cart-item:after,
    .cart-item:before {
        display: none
    }
}

.cart-item-title,
.cart-item-value {
    padding-left: 1.5rem
}

.cart-item-block {
    display: block
}

.cart-item-block .definitionList {
    margin-bottom: .35714rem
}

.cart-item-figure {
    float: left;
    height: 7.14286rem;
    margin-bottom: 1.5rem;
    width: 33.33333%
}

@media (min-width:551px) {
    .cart-item-figure {
        margin-bottom: 0;
        margin-left: -33.33333%;
        width: 33.33333%
    }
}

@media (min-width:801px) {
    .cart-item-block {
        display: table-cell
    }

    .cart-item-figure {
        float: none;
        width: 8.33333%
    }
}

.cart-item-figure:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%
}

.cart-item-fixed-image {
    width: 100%
}

.cart-item-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.cart-item-title {
    display: table-cell;
    height: 7.14286rem
}

.cart-item-info {
    width: 100%
}

@media (min-width:551px) {
    .cart-item-title {
        display: block;
        height: auto;
        margin-bottom: 1.5rem;
        overflow: hidden
    }

    .cart-item-info {
        clear: none;
        float: left;
        overflow: hidden;
        width: 33.33333%
    }

    .cart-item-info + .cart-item-info {
        margin-top: 0
    }
}

.cart-actions,
.cart-actions:after,
.cart-gift-certificate-form:after,
.cart-total:after,
.coupon-form:after,
.estimator-form-row:after {
    clear: both
}

.cart-item-info + .cart-item-info {
    margin-top: .78571rem
}

@media (min-width:801px) {
    .cart-item-image {
        margin-left: 0
    }

    .cart-item-title {
        display: table-cell;
        padding: 1.5rem
    }

    .cart-item-info {
        float: none;
        width: 16.66667%
    }

    .cart-item-info:last-child {
        text-align: right
    }

    .cart-header-quantity,
    .cart-item-quantity {
        text-align: center
    }
}

.cart-item-quantity .form-increment {
    display: inline-block;
    margin: 0 .21429rem 1px 1.5rem;
    vertical-align: middle
}

.cart-item-label {
    color: #a5a5a5;
    float: left;
    margin-bottom: .35714rem;
    text-align: right;
    width: 33.33333%
}

@media (min-width:551px) {
    .cart-item-label {
        display: block;
        padding-left: 1.5rem;
        text-align: left;
        width: 100%
    }
}

@media (min-width:801px) {
    .cart-item-quantity .form-increment {
        margin-left: 0
    }

    .cart-item-label {
        display: none
    }

    .cart-item-value {
        padding-left: 0
    }
}

.cart-item-brand {
    color: #a5a5a5;
    margin-bottom: .21429rem
}

.cart-item-name {
    font-size: 15px;
    margin: 0
}

.cart-item-name + .definitionList {
    margin-top: .35714rem
}

.cart-item-options--giftWrapping {
    margin-top: 1.14286rem
}

.cart-item-options--giftWrapping .cart-item-option-description {
    color: #4f4f4f
}

.cart-remove {
    background-color: #f2f2f2;
    border-radius: 50%;
    float: right;
    height: 1.28571rem;
    margin-top: .14286rem;
    padding: .21429rem;
    transition: background-color .15s ease;
    width: 1.28571rem
}

@media (min-width:551px) {
    .cart-remove {
        margin-left: 1rem
    }
}

.cart-remove.cart-remove--spacer {
    visibility: hidden
}

.cart-remove > svg {
    fill: #4f4f4f
}

.cart-totals {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
    text-align: right;
    width: 100%
}

.cart-total .form-inlineMessage,
.cart-total-value {
    text-align: left
}

.cart-totals ol,
.cart-totals ul {
    list-style: none;
    margin-bottom: 0
}

@media (min-width:551px) {
    .cart-totals {
        float: right;
        width: 75%
    }
}

@media (min-width:801px) {
    .cart-totals {
        margin-bottom: 1rem;
        width: 58.33333%
    }

    .cart-total + .cart-total {
        border-top: 1px solid #e8e8e8
    }
}

@media (min-width:1261px) {
    .cart-totals {
        width: 41.66667%
    }
}

.cart-total {
    border-bottom: 0
}

.account-heading,
.account-listItem,
.account-listShipping,
.account-orderTotal-value {
    border-bottom: 1px solid #e8e8e8
}

.cart-total:after,
.cart-total:before {
    content: " ";
    display: table
}

.cart-total .form-input {
    display: inline-block;
    height: 2.28571rem;
    padding: .5rem;
    vertical-align: top;
    width: 75%
}

.cart-total .form-select {
    background-position: right .35714rem top .5rem;
    background-size: 1.42857rem 1.42857rem;
    height: 2.28571rem;
    margin-bottom: .78571rem;
    padding: .5rem .78571rem
}

.cart-total-label {
    color: #989898;
    width: 33.33333%
}

@media (min-width:801px) {
    .cart-total-label {
        display: block;
        padding-left: 0;
        text-align: left
    }

    .cart-total-value {
        width: 50%
    }
}

.cart-gift-certificate-form:after,
.cart-gift-certificate-form:before,
.coupon-form:after,
.coupon-form:before,
.estimator-form-row:after,
.estimator-form-row:before {
    display: table;
    content: " "
}

@media (min-width:551px) {
    .cart-total-label {
        width: 50%
    }

    .cart-total-value {
        text-align: right
    }
}

.cart-total-label,
.cart-total-value {
    float: left;
    padding: .5rem 0 .5rem 1.5rem
}

@media (min-width:801px) {

    .cart-total-label,
    .cart-total-value {
        padding: 1rem 0
    }
}

.cart-total-grandTotal {
    font-size: 20px;
    padding-bottom: .21429rem;
    padding-top: .21429rem;
    position: relative
}

@media (min-width:801px) {
    .cart-total-grandTotal {
        padding: 1rem 0;
        top: -.28571rem
    }
}

.coupon-code-add,
.coupon-code-cancel,
.gift-certificate-add,
.gift-certificate-cancel,
.shipping-estimate-hide,
.shipping-estimate-show {
    color: #989898;
    padding: 0;
    text-decoration: underline;
    transition: color .15s ease
}

.panel--newAddress,
.previewCartItem-name > a,
.video {
    text-decoration: none
}

.coupon-code-add:hover,
.coupon-code-cancel:hover,
.gift-certificate-add:hover,
.gift-certificate-cancel:hover,
.shipping-estimate-hide:hover,
.shipping-estimate-show:hover {
    color: #4f4f4f
}

.cart-gift-certificate-form,
.coupon-form {
    font-size: 0;
    margin-bottom: 1rem
}

.cart-gift-certificate-form .button,
.cart-gift-certificate-form .form-input,
.coupon-form .button,
.coupon-form .form-input {
    float: left
}

.cart-gift-certificate-form .form-input,
.coupon-form .form-input {
    width: 78%
}

.cart-gift-certificate-form .button,
.coupon-form .button {
    margin: 0 0 0 2%;
    padding-left: .78571rem;
    padding-right: .78571rem;
    width: 20%
}

.estimator-form {
    margin-bottom: 0
}

.estimator-form .form-input {
    margin-bottom: .78571rem;
    width: 100%
}

.estimator-form .button--primary {
    width: 60%
}

.estimator-form-label {
    clear: both;
    float: left;
    font-weight: 400;
    margin-bottom: 0
}

.estimator-form-label .form-label {
    line-height: 2.28571rem;
    margin-bottom: 0
}

.estimator-form-label-text {
    margin-left: .71429rem
}

.estimator-form-input {
    float: right;
    margin-bottom: 1em;
    width: 60%
}

.estimator-form-input .form-input,
.estimator-form-input .form-select {
    margin-bottom: 0
}

.estimator-form-input--price {
    width: 30%
}

.estimator-form-toggleUPSRate {
    display: block;
    margin-bottom: 1em
}

.cart-actions:after,
.cart-actions:before {
    content: " ";
    display: table
}

.cart-actions .button {
    display: block;
    margin-bottom: 0
}

@media (min-width:551px) {
    .cart-actions .button {
        display: inline-block;
        float: right
    }
}

.cart-actions .checkoutMultiple {
    clear: right;
    display: block;
    float: right;
    padding-top: .35714rem
}

.account-product-body:after,
.account-product-details:after,
.account-product:after,
.brandGrid:after,
.cart-additionalCheckoutButtons .FloatRight:after,
.cart-additionalCheckoutButtons:after,
.footer-info:after,
.header-logo > a:after,
.login-row:after,
.page:after,
.previewCart:after,
.previewCartAction-checkoutMultiple,
.previewCartAction:after,
.previewCartItem:after,
.productGrid:after,
.productView:after,
.video-body:after,
.video:after,
.videoGallery-list:after,
.wishlist-form:after {
    clear: both
}

.cart-additionalCheckoutButtons:after,
.cart-additionalCheckoutButtons:before {
    content: " ";
    display: table
}

.cart-additionalCheckoutButtons .FloatRight:after,
.cart-additionalCheckoutButtons .FloatRight:before {
    content: " ";
    display: table
}

.cart-additionalCheckoutButtons .FloatRight p {
    float: none !important;
    margin: .5rem 0;
    text-align: right
}

.cart-additionalCheckoutButtons .FloatRight div {
    float: right
}

.cart-additionalCheckoutButtons .CheckoutButton {
    margin-bottom: 1rem
}

.cart-additionalCheckoutButtons .CheckoutButton:first-child {
    margin-top: 1.5rem
}

.cart-additionalCheckoutButtons .CheckoutButton:last-child {
    margin-bottom: 1.5rem
}

.previewCartList,
.previewCartList li {
    margin: 0;
    padding: 0
}

.previewCartList {
    list-style: none;
    display: table;
    table-layout: fixed;
    width: 100%
}

.previewCartList ol,
.previewCartList ul {
    list-style: none;
    margin-bottom: 0
}

.previewCartItem {
    margin: 0 auto;
    width: 100%;
    display: table-row;
    line-height: 19px
}

.previewCartItem:after,
.previewCartItem:before {
    content: " ";
    display: table
}

.previewCartItem-content,
.previewCartItem-image {
    display: table-cell;
    vertical-align: middle
}

.previewCartItem-image {
    width: 33.33333%;
    padding: 0;
    text-align: center;
    position: relative
}

.previewCartItem-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.previewCartItem-image:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%
}

.previewCartItem-content {
    padding-right: .75rem;
    width: 66.66667%;
    padding-left: 0
}

.previewCartItem-name {
    margin: 0;
    text-transform: none
}

.previewCartItem-brand,
.previewCartItem-name {
    margin-bottom: .21429rem
}

.previewCartItem-brand,
.previewCartItem-price {
    color: #989898;
    display: inline-block;
    font-size: 13px
}

.previewCartAction {
    margin: 0 auto;
    width: 100%;
    display: block;
    padding: 1.5rem .78571rem
}

.previewCartAction:after,
.previewCartAction:before {
    content: " ";
    display: table
}

.previewCartAction .button {
    margin: 0;
    padding-left: .78571rem;
    padding-right: .78571rem;
    width: 100%
}

.previewCartAction-checkout,
.previewCartAction-viewCart {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 50%;
    float: left
}

.previewCartAction-checkout.previewCartAction-viewCart--sole,
.previewCartAction-viewCart.previewCartAction-viewCart--sole {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    float: none
}

.previewCartAction-checkout {
    padding-right: .35714rem
}

.previewCartAction-checkoutMultiple {
    padding-left: .78571rem;
    padding-top: .35714rem
}

.previewCartAction-viewCart {
    padding-left: .35714rem
}

.previewCart-emptyBody {
    padding: 3rem;
    text-align: center
}

.addressList {
    font-size: 0;
    list-style: none;
    margin-left: -.78571rem;
    margin-right: -.78571rem
}

.address {
    display: inline-block;
    padding: 0 .78571rem;
    vertical-align: top;
    width: 100%
}

@media (min-width:551px) {
    .address {
        width: 50%
    }
}

@media (min-width:1261px) {
    .address {
        width: 33.33333%
    }
}

.panel--address {
    font-size: 1rem;
    position: relative
}

.panel--address .panel-body {
    min-height: 17.85714rem;
    padding: 1.5rem
}

.panel--address .form-actions {
    margin-bottom: -.78571rem;
    margin-top: 1.5rem;
    text-align: left
}

.panel--address .form-actions .button {
    margin-bottom: .78571rem
}

.panel--address .form-actions .button + .button {
    margin-left: 0;
    margin-top: 0
}

@media (min-width:551px) {
    .panel--address .panel-body {
        padding: 1.5rem 1.5rem 4.5rem
    }

    .panel--address .form-actions {
        bottom: 1.5rem;
        position: absolute;
        width: auto
    }

    .panel--address .form-actions .button + .button {
        margin-left: .35714rem
    }
}

.address-title {
    margin: 0 0 .78571rem;
    text-transform: none
}

.address-details {
    list-style: none;
    margin: 0 0 .78571rem
}

.address-details--postal {
    font-size: 15px
}

.address-description,
.address-label {
    display: inline-block;
    font-size: 1rem;
    margin: 0
}

.address-label {
    color: #989898;
    font-weight: 400
}

.panel--newAddress {
    display: block;
    text-align: center
}

.panel--newAddress:hover .address-title {
    color: #a5a5a5
}

.panel--newAddress .panel-body {
    background-color: transparent;
    border: 1px solid #e8e8e8;
    display: block
}

.panel--newAddress .address-title {
    margin-bottom: 0;
    transition: all .15s ease
}

.address-addNew {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-55%);
    transform: translateX(-50%) translateY(-55%)
}

.address-symbol {
    font-size: 50px;
    line-height: 1
}

.videoGallery-main {
    height: 0;
    overflow: hidden;
    padding-bottom: 67.5%;
    padding-top: 1.78571rem;
    position: relative;
    margin-bottom: 1.85714rem
}

.videoGallery-main.widescreen {
    padding-bottom: 56.34%
}

.videoGallery-main.vimeo {
    padding-top: 0
}

.videoGallery-main embed,
.videoGallery-main iframe,
.videoGallery-main object,
.videoGallery-main video {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0
}

.videoGallery-list {
    list-style: none;
    margin: 0 -.75rem;
    max-width: none;
    width: auto;
    font-size: 0
}

.videoGallery-list ol,
.videoGallery-list ul {
    list-style: none;
    margin-bottom: 0
}

.videoGallery-list:after,
.videoGallery-list:before {
    content: " ";
    display: table
}

.videoGallery-item {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    display: inline-block;
    float: none;
    vertical-align: top
}

.video {
    display: block;
    margin-bottom: 1.85714rem;
    opacity: .4;
    transition: opacity .1s ease-out
}

.video:after,
.video:before {
    content: " ";
    display: table
}

.video-figure {
    float: left
}

.video-figure > img {
    display: block
}

.previewCart:after,
.previewCart:before,
.video-body:after,
.video-body:before {
    display: table;
    content: " "
}

.video-figure--opposite {
    float: right;
    margin-left: .78571rem;
    margin-right: 0
}

@media (min-width:801px) {
    .videoGallery-item {
        width: 50%
    }

    .video {
        margin-bottom: 1.85714rem
    }
}

.video.is-active,
.video:hover {
    color: #454545;
    opacity: 1
}

.video-figure {
    margin-right: 1.85714rem
}

.video-title {
    margin-bottom: 0;
    margin-top: 0;
    text-transform: none
}

.video-description {
    font-size: 1rem;
    margin-bottom: 0
}

.previewCart {
    margin: 0 auto;
    max-width: 85.71429rem;
    width: 100%
}

@media (min-width:801px) {
    .previewCart .productView {
        width: 75%;
        float: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        padding: 0 .75rem
    }

    .previewCart .productView-image {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 58.33333%;
        float: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .previewCart .productView-image--cart {
        -ms-flex-item-align: start;
        align-self: flex-start;
        margin: 0 auto;
        width: auto
    }

    .previewCart .productView-details {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 41.66667%;
        float: left
    }
}

.previewCart .productView-title {
    margin-top: 0
}

.previewCartCheckout {
    background: #f2f2f2;
    padding: 1rem;
    text-align: center
}

@media (min-width:801px) {
    .previewCartCheckout {
        width: 25%;
        float: right;
        padding: 1.5rem
    }
}

.previewCartCheckout .button {
    display: block;
    margin: 0;
    width: 100%
}

.previewCartCheckout .button + .button,
.previewCartCheckout .button + p {
    margin-top: .78571rem
}

.previewCartCheckout-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    text-align: center
}

.adminBar,
.adminBar-content a {
    font-weight: 600;
    text-decoration: none
}

.previewCartCheckout-subtotal {
    display: block;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem
}

.previewCartCheckout-additionalCheckoutButtons p {
    float: none !important;
    margin: .5rem 0
}

.previewCartCheckout-additionalCheckoutButtons .CheckoutButton {
    margin-bottom: 1rem
}

.previewCartCheckout-additionalCheckoutButtons .CheckoutButton:first-child {
    margin-top: 1.5rem
}

.previewCartCheckout-additionalCheckoutButtons .CheckoutButton:last-child {
    margin-bottom: 1.5rem
}

.suggestiveCart {
    display: none;
    text-align: center
}

.maintenanceNotice {
    background-color: #fffdea;
    box-shadow: 0 0 5px #a5a5a5;
    color: #454545;
    left: 1.14286rem;
    padding: 1rem 1.28571rem;
    position: fixed;
    top: 1.14286rem;
    width: 24rem;
    z-index: 500
}

.maintenanceNotice > :last-child {
    margin-bottom: 0
}

.maintenanceNotice a {
    color: #454545
}

.maintenanceNotice-header {
    font-family: Montserrat;
    margin: 0 0 .78571rem
}

body.hasAdminBar {
    padding-top: 101px
}

@media (min-width:801px) {
    .suggestiveCart {
        display: block
    }

    body.hasAdminBar,
    body.hasAdminBar .header {
        padding-top: 0
    }

    body.hasAdminBar .banners {
        margin-top: 46px
    }
}

body.hasAdminBar .header {
    padding-top: 46px
}

body.hasAdminBar .navPages-container.is-open {
    padding-top: 101px
}

.adminBar {
    background-color: #fff;
    box-shadow: 0 .14286rem .5rem 0 rgba(0, 0, 0, .2);
    color: #626568;
    float: left;
    font-family: "Source Sans Pro", arial, "sans serif", sans-serif;
    font-size: 14px;
    height: 46px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000
}

.account-product-detail-heading,
.account-product-subtitle,
.paymentMethodForm-heading {
    font-family: Karla, Arial, Helvetica, sans-serif
}

.adminBar-logo {
    background-color: #273a8a;
    float: left;
    height: 46px;
    width: 45px
}

.adminBar-logo svg {
    height: 100%;
    padding: 7px 10px 11px 7px;
    width: 100%
}

.adminBar-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 46px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 45px;
    padding: 17px 20.5px 14px 20px
}

.adminBar-content a {
    color: #4b71fc
}

.adminBar-private {
    float: right;
    text-align: right
}

.adminBar-private span {
    white-space: nowrap
}

.preview {
    font-weight: 400;
    padding-left: 9px
}

.cookieMessage {
    background: #e8e8e8;
    color: #454545;
    display: none
}

.cookieMessage .button {
    width: 100%
}

@media (min-width:801px) {
    .cookieMessage .button {
        vertical-align: middle;
        width: 25%
    }

    .cookieMessage-container {
        width: 83.33333%
    }
}

.cookieMessage-container {
    margin: 0 auto;
    padding: 1.5rem
}

@media (min-width:1261px) {
    .cookieMessage .button {
        vertical-align: top
    }

    .cookieMessage-container {
        width: 58.33333%
    }
}

@media (min-width:801px) {
    .cookieMessage-text {
        display: inline-block;
        padding: 0 .78571rem;
        vertical-align: middle;
        width: 66.66667%
    }
}

.login-form,
.new-customer {
    padding-left: .75rem;
    padding-right: .75rem;
    float: left
}

.login {
    margin: 3rem auto 6rem;
    max-width: 64.28571rem
}

.login-row {
    margin: 0 auto;
    max-width: 85.71429rem;
    width: 100%
}

.login-row:after,
.login-row:before {
    content: " ";
    display: table
}

.login-form {
    width: 100%
}

@media (min-width:801px) {
    .login-row {
        margin-top: 6rem
    }

    .login-form {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 50%;
        float: left;
        margin-top: 3rem
    }
}

.new-customer {
    width: 100%
}

@media (min-width:801px) {
    .new-customer {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 50%;
        float: left
    }
}

.new-customer-intro {
    margin-bottom: 0
}

.new-customer-fact-list {
    margin-left: 3rem
}

.new-customer-fact {
    padding-left: .78571rem
}

.search-suggestion {
    margin-bottom: 2rem
}

.search-suggestion > :last-child {
    margin-bottom: 0
}

.suggestion-title {
    margin-top: 0;
    text-transform: inherit
}

.advancedSearch-form {
    margin-bottom: 3rem
}

.advancedSearch-form .form-row {
    margin-bottom: -1.5rem
}

.quickSearchResults {
    margin-top: 1.5rem
}

.quickSearchResults .modal-close {
    display: none
}

@media (min-width:801px) {
    .quickSearchResults {
        margin-top: 0
    }

    .quickSearchResults .modal-close {
        display: block
    }
}

.advancedSearch-separator {
    display: none
}

.advancedSearch-title {
    margin: 0 0 1.5rem;
    text-transform: inherit
}

.search-price-range label {
    display: inline
}

.search-price-range label input {
    display: block;
    padding-left: 1.5rem
}

@media (min-width:551px) {
    .search-price-range label input {
        display: inline;
        width: 6rem
    }

    .search-price-range label span {
        display: inline;
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

.category-suggestion-list {
    margin: 0 -.75rem;
    max-width: none;
    width: auto;
    list-style-type: none
}

.category-suggestion-list:after,
.category-suggestion-list:before {
    content: " ";
    display: table
}

.category-suggestion-list:after {
    clear: both
}

.category-suggestion {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 33.33333%;
    float: left;
    font-size: 15px
}

.search-refine {
    margin-left: 1.5rem
}

.quickSearchMessage {
    font-size: 28px;
    margin: 1.5rem 0 0;
    text-align: center
}

.navBar--account {
    display: none
}

@media (min-width:801px) {
    .navBar--account {
        display: block
    }
}

.account-heading {
    margin: 0;
    padding-bottom: 1rem
}

.account-list {
    list-style: none;
    margin-left: 0
}

.account-listItem {
    padding: 1.5rem 0;
    position: relative
}

.account-listItem img {
    width: 100%
}

.account-listItem .account-product-image {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: relative
}

.account-listShipping {
    font-weight: 700;
    padding: 2rem 0
}

.account-listShipping .account-listShipping-title {
    margin: 0;
    text-transform: inherit
}

.account-product:after,
.account-product:before {
    content: " ";
    display: table
}

.account-product-figure {
    float: left;
    margin-right: .78571rem
}

.account-product-figure > img {
    display: block
}

.account-product-figure--opposite {
    float: right;
    margin-left: .78571rem;
    margin-right: 0
}

.account-product-body:after,
.account-product-body:before {
    content: " ";
    display: table
}

.account-product-figure {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 2rem 0 0;
    position: relative;
    width: 70px
}

.account-product-figure:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 100%
}

.account-product-download {
    border-radius: 50%;
    height: 2.35714rem;
    padding: 0;
    position: absolute;
    right: -.78571rem;
    top: -.78571rem;
    width: 2.35714rem;
    z-index: 1
}

.account-product-download .icon {
    height: 1.5rem;
    margin-top: .35714rem;
    width: 1.5rem
}

.account-product-download svg {
    fill: #fff
}

.account-product-body {
    overflow: hidden;
    padding-bottom: 3.5rem;
    position: relative
}

.account-product-body .definitionList {
    font-size: 15px;
    margin-bottom: 0
}

.account-product-title {
    margin: 0 0 .21429rem;
    text-transform: inherit
}

.account-product-title > a {
    text-decoration: none
}

.account-product-title + .definitionList {
    margin-top: .78571rem
}

.account-product-subtitle {
    color: #a5a5a5;
    font-size: 15px;
    margin: -.21429rem 0 1rem;
    text-transform: inherit
}

.account-product-price {
    float: right;
    font-size: 15px
}

.account-product-description + .definitionList {
    margin: -1.35714rem 0 1.5rem
}

.account-product-refundQty {
    color: #a5a5a5;
    margin-bottom: 0
}

.account-product-details {
    margin: 0 -.75rem;
    max-width: none;
    width: auto
}

.account-product-details:after,
.account-product-details:before {
    content: " ";
    display: table
}

.account-product-detail {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left
}

.account-product-detail + .account-product-detail {
    margin-top: 1rem
}

@media (min-width:551px) {
    .account-product-body {
        padding-bottom: 0
    }

    .account-product-detail {
        width: 33.33333%
    }

    .account-product-detail + .account-product-detail {
        margin-top: 0
    }

    .account-product-detail + .account-product-detail--full {
        margin-top: 1.5rem
    }
}

@media (min-width:1261px) {
    .account-product-detail {
        width: 25%
    }

    .account-product-detail--large {
        width: 50%
    }

    .account-product--alignMiddle .account-product-checkItem {
        left: -2.5rem
    }
}

.account-product-detail--full {
    width: 100%
}

.account-product-detail-heading {
    color: #989898;
    font-size: 12px;
    margin: 0 0 .35714rem
}

.account-product--alignMiddle {
    display: table;
    width: 100%
}

.account-product--alignMiddle .account-product-checkItem {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 2rem
}

.account-product--alignMiddle .account-product-checkItem .form-label {
    height: 1.5rem;
    margin: 0;
    padding: 0;
    width: 1.5rem
}

.account-product--alignMiddle .account-product-body,
.account-product--alignMiddle .account-product-figure {
    display: table-cell
}

.account-product--alignMiddle .account-product-figure {
    float: none;
    margin-right: 0
}

.account-product--alignMiddle .account-product-body {
    padding-left: 2rem;
    vertical-align: middle
}

@media (min-width:1261px) {
    .account-product--alignMiddle .account-product-figure {
        left: -2rem
    }

    .account-product--alignMiddle .account-product-body {
        padding-left: 0
    }
}

.account-orderTotal {
    float: right;
    font-size: 15px;
    margin-top: -1.5rem;
    width: 66.66667%
}

.account-orderTotal-key,
.account-orderTotal-value {
    margin: 0;
    padding: 1.5rem 0
}

.account-orderTotal-key {
    color: #989898;
    float: left;
    font-weight: 400
}

.account-orderTotal-key:last-of-type {
    position: relative;
    top: .28571rem
}

.account-orderTotal-value {
    text-align: right
}

.account-orderTotal-value:last-child {
    border-bottom: 0;
    font-size: 20px
}

.account-orderStatus {
    bottom: 0;
    left: 0;
    position: absolute
}

.account-orderStatus-label {
    background-color: #bfbfbf;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    margin: 0 0 .35714rem;
    padding: .21429rem .5rem
}

.account-orderStatus-action {
    color: #989898;
    display: inline-block;
    font-size: 12px;
    letter-spacing: .25px;
    margin-left: .78571rem;
    text-align: right;
    text-decoration: underline;
    vertical-align: top
}

@media (min-width:551px) {
    .account-orderStatus {
        float: right;
        position: inherit;
        text-align: right
    }

    .account-orderStatus-action {
        display: block;
        margin-left: 0
    }
}

.account-orderStatus-action:hover {
    color: #4f4f4f
}

.account .pagination {
    color: #a5a5a5;
    margin-top: 3rem;
    text-align: center
}

.account-message .is-read {
    color: #a5a5a5
}

.account-sidebar-block {
    font-size: 15px
}

.account-sidebar-block + .account-sidebar-block {
    margin-top: 3rem
}

.account-sidebar-block .account-heading {
    margin-bottom: 1.5rem
}

.account-downloadsList ol,
.account-downloadsList ul,
.account-order-address ol,
.account-order-address ul {
    margin-bottom: 0;
    list-style: none
}

.account-order-address {
    list-style: none;
    margin-left: 0
}

.account-reorder-form {
    display: inline-block
}

.order-payments-description {
    color: #4f4f4f;
    font-weight: 400;
    margin-top: 1.5rem
}

.account-downloads-summary {
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    padding-bottom: 1.5rem
}

.account-downloadsList {
    list-style: none;
    margin-left: 0
}

.account-downloadsItem {
    margin-bottom: 1.5rem
}

.account-downloadsItem > :first-child {
    margin-top: 0
}

.account-downloadsItem > :last-child {
    margin-bottom: 0
}

.account-downloadsItem-title {
    color: #989898;
    font-size: 15px;
    margin-bottom: .21429rem;
    text-transform: inherit
}

.account-downloadsItem-description {
    margin-bottom: 0
}

.account-downloadsItem-availability {
    color: #989898
}

.wishlists-table {
    margin-left: auto;
    margin-right: auto;
    max-width: 85.71429rem
}

.wishlist-header {
    display: none;
    text-align: center
}

.modal .wishlist-header {
    display: block
}

.wishlist-form {
    margin: 0 auto;
    width: 100%;
    max-width: 39.28571rem
}

.wishlist-form:after,
.wishlist-form:before {
    content: " ";
    display: table
}

.wishlist-form .form-field {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left
}

.share-wishlist {
    margin-left: auto;
    margin-right: auto;
    max-width: 46.42857rem;
    text-align: center
}

.icon--ratingEmpty svg {
    fill: #dfdfdf
}

.icon--ratingFull svg {
    fill: #454545
}

.rating--small {
    display: inline-block
}

.rating--small .icon {
    height: 1rem;
    width: 1rem;
    margin-top: -3px
}

.apple-pay-checkout-button {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% 60%;
    border-radius: .28571rem;
    cursor: pointer;
    display: none;
    max-height: 4.57143rem;
    min-height: 2.28571rem;
    min-width: 9.57143rem;
    padding: 1.5rem;
    background-color: #000;
    background-image: -webkit-named-image(apple-pay-logo-white)
}

.cart-additionalCheckoutButtons .apple-pay-checkout-button {
    margin-top: .78571rem
}

.apple-pay-supported .apple-pay-checkout-button {
    display: block
}

@media (min-width:551px) {
    .apple-pay-supported .apple-pay-checkout-button {
        display: inline-block;
        float: right
    }
}

.previewCartCheckout .apple-pay-checkout-button {
    float: none;
    margin-top: .78571rem
}

.paymentMethodList {
    font-size: 0;
    list-style: none;
    margin-left: -.78571rem;
    margin-right: -.78571rem
}

.paymentMethodName {
    margin-top: 0;
    padding: 0 .78571rem;
    text-transform: none
}

.paymentMethod {
    display: inline-block;
    padding: 0 .78571rem;
    vertical-align: top;
    width: 100%
}

@media (min-width:551px) {
    .paymentMethod {
        width: 50%
    }

    .paymentMethodForm {
        max-width: 60%
    }

    .paymentMethodForm .paymentMethodForm-column {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:first-child {
        width: 70%
    }

    .paymentMethodForm .paymentMethodForm-column .paymentMethodForm-inputs:last-child {
        padding-left: 1.5rem;
        width: 30%
    }

    .paymentMethodForm .paymentMethodForm-column:first-child .form-field {
        margin-bottom: .78571rem
    }
}

.panel--paymentMethod {
    font-size: 1rem;
    position: relative
}

.panel--paymentMethod .panel-body {
    border: 1px solid #e8e8e8;
    border-radius: .21429rem;
    min-height: 16.28571rem;
    padding: 0
}

.panel--paymentMethod .form-actions {
    font-size: 0;
    margin-top: 0;
    text-align: left
}

.panel--paymentMethod .form-actions .button {
    margin-top: 0
}

.paymentMethod-card,
.paymentMethod-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    margin-bottom: 0
}

.paymentMethod-card {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    padding: .78571rem
}

.paymentMethod-icon {
    margin-right: .78571rem;
    width: 2rem
}

.paymentMethod-brand {
    font-size: 13px;
    font-weight: 600
}

@media (min-width:1261px) {
    .paymentMethod-card {
        padding: 1.5rem
    }

    .paymentMethod-icon {
        width: 3rem
    }

    .paymentMethod-brand {
        font-size: 1rem
    }
}

.paymentMethod-default {
    margin-left: .78571rem
}

.paymentMethod-default.icon {
    fill: #666;
    height: 1.28571rem;
    width: 1.28571rem
}

@media (min-width:1261px) {
    .paymentMethod-default.icon {
        height: 1.42857rem;
        width: 1.42857rem
    }
}

.paymentMethod-expiry {
    font-size: 15px;
    margin-left: auto;
    text-transform: capitalize
}

.paymentMethod-details {
    padding: 1.5rem
}

.paymentMethod-description,
.paymentMethod-label {
    display: inline-block;
    font-size: 13px;
    margin-bottom: .78571rem
}

.paymentMethod-label {
    -webkit-box-flex: 7.14286rem;
    -ms-flex: 7.14286rem;
    flex: 7.14286rem;
    font-weight: 600
}

.paymentMethod-description {
    -webkit-box-flex: calc(100% - 100px);
    -ms-flex: calc(100% - 100px);
    flex: calc(100% - 100px);
    padding-left: .78571rem
}

.paymentMethod-form {
    padding: 0 1.5rem .78571rem
}

.panel--newPaymentMethod {
    display: block;
    text-align: center;
    text-decoration: none
}

.panel--newPaymentMethod:hover .paymentMethod-title {
    color: #a5a5a5
}

.panel--newPaymentMethod .panel-body {
    background-color: transparent
}

.panel--newPaymentMethod .paymentMethod-title {
    margin-bottom: 0;
    text-transform: none;
    transition: all .15s ease
}

.paymentMethod-addNew {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-55%);
    transform: translateX(-50%) translateY(-55%)
}

.paymentMethod-symbol {
    font-size: 50px;
    line-height: 1
}

.paymentMethodForm-heading {
    color: #454545;
    margin-top: 1.5rem;
    text-transform: capitalize
}

.paymentMethodForm-subheading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600
}

@media (min-width:551px) {
    .paymentMethod-form {
        bottom: .78571rem;
        position: absolute;
        width: auto
    }

    .paymentMethodForm-cards {
        margin-left: auto
    }
}

.paymentMethodForm-cards-icon {
    margin-right: .21429rem;
    width: 2.42857rem
}

.paymentMethodForm-inputs {
    position: relative
}

.paymentMethodForm-inputs-icon {
    position: absolute;
    right: .64286rem;
    top: 2.78571rem
}

.paymentMethodForm-inputs-icon.icon {
    fill: #a5a5a5;
    height: 1.5rem;
    width: 1.5rem
}

.paymentMethodForm-details {
    margin-bottom: 0
}

@media (min-width:551px) {
    .paymentMethodForm-details {
        display: inline-block;
        margin: 0 3rem 0 0
    }
}

.paymentMethodForm-details-term {
    font-weight: 400;
    margin-bottom: .78571rem
}

.paymentMethodForm-details-description {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .25px
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.header.is-open {
    height: 100%
}

.header-logo {
    font-size: 0;
    margin: 0 3.92857rem;
    text-align: center
}

@media (min-width:551px) {
    .header-logo {
        margin-left: 5.89286rem;
        margin-right: 5.89286rem
    }
}

@media (min-width:801px) {
    .header {
        border-bottom: 0px solid #e8e8e8;
        overflow: visible;
        position: relative
    }

    .header.is-open {
        height: auto
    }

    .header-logo {
        margin: 4rem auto 4.5rem;
        padding: 0;
    }

    .header.fixed .header-logo {
        background-color: #e8e8e8;
        margin: 0;
        padding: .35714rem 0;
        position: absolute;
        top: 0;
        width: 100%
    }
}

.header-logo-image-container,
.header-logo > a {
    position: relative
}

.header-logo > a {
    color: #4f4f4f;
    display: inline-block;
    padding: .78571rem 0;
    text-decoration: none;
    width: 60%;
    z-index: 20
}

.header-logo > a:after,
.header-logo > a:before {
    content: " ";
    display: table
}

.header-logo > a:active,
.header-logo > a:hover {
    color: #a5a5a5
}

.header-logo--left {
    text-align: left
}

.header-logo--left .header-logo-image {
    right: unset
}

.header-logo--right {
    text-align: right
}

.footer-info-col,
.page-content--textCenter {
    text-align: center
}

@media (min-width:801px) {
    .header-logo > a {
        background: 0 0;
        border-bottom: 0;
        display: inline;
        padding: 0;
        width: 100%
    }

    .header-logo--left {
        margin-left: 2.85714rem
    }

    .header-logo--right {
        margin-right: 2.85714rem
    }
}

.header-logo--right .header-logo-image {
    left: unset
}

.header-logo-text {
    display: block;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: .14286rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: .21429rem 0;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap
}

@media (min-width:551px) {
    .header-logo-text {
        font-size: 22px;
        padding-bottom: 0;
        padding-top: 0
    }
}

@media (min-width:801px) {
    .header-logo-text {
        display: inline;
        font-size: 28px;
        margin-left: 0;
        margin-right: -.14286rem;
        max-width: none;
        overflow: auto;
        white-space: normal
    }

    .header.fixed .header-logo-text {
        font-size: 25px
    }
}

.product,
.productMasonry {
/*    overflow: hidden*/
}

.jstree-anchor,
.jstree-node {
    white-space: nowrap
}

.header-logo-image-container:after {
    content: '';
    display: block;
    padding-bottom: 2.35714rem
}

.header-logo-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 2.35714rem;
}

@media (min-width:801px) {
    .header-logo-image-container:after {
        padding-bottom: 100px
    }

    .header-logo-image {
        max-height: none
    }
}

.header-logo-image-unknown-size {
    max-height: 2.35714rem
}

.mobileMenu-toggle {
    height: 3.92857rem;
    width: 3.92857rem;
    display: inline-block;
    font-size: 0;
    left: 0;
    overflow: hidden;
    padding: 0 1.28571rem;
    position: absolute;
    z-index: 50
}

@media (min-width:801px) {
    .header-logo-image-unknown-size {
        max-height: none
    }

    .mobileMenu-toggle {
        display: none
    }
}

.mobileMenu-toggle .mobileMenu-toggleIcon,
.mobileMenu-toggle .mobileMenu-toggleIcon::after,
.mobileMenu-toggle .mobileMenu-toggleIcon::before {
    background: #2d2d2d;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: top .1s ease-in 150ms, bottom .1s ease-in 150ms, -webkit-transform .1s ease-in;
    transition: transform .1s ease-in, top .1s ease-in 150ms, bottom .1s ease-in 150ms;
    transition: transform .1s ease-in, top .1s ease-in 150ms, bottom .1s ease-in 150ms, -webkit-transform .1s ease-in;
    width: 1.42857rem
}

.footer-info:after,
.footer-info:before,
.page:after,
.page:before {
    content: " ";
    display: table
}

.mobileMenu-toggle .mobileMenu-toggleIcon {
    top: 1.92857rem;
    transition: background-color 10ms ease-in .1s
}

.mobileMenu-toggle .mobileMenu-toggleIcon::before {
    top: -.5rem
}

.mobileMenu-toggle .mobileMenu-toggleIcon::after {
    bottom: -.5rem
}

.mobileMenu-toggle.is-open .mobileMenu-toggleIcon {
    background-color: transparent;
    transition-delay: .1s
}

.mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after,
.mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before {
    background-color: #2d2d2d;
    bottom: auto;
    top: auto;
    transition: top .1s ease-in, bottom .1s ease-in, -webkit-transform .1s ease-in 150ms;
    transition: transform .1s ease-in 150ms, top .1s ease-in, bottom .1s ease-in;
    transition: transform .1s ease-in 150ms, top .1s ease-in, bottom .1s ease-in, -webkit-transform .1s ease-in 150ms
}

.mobileMenu-toggle.is-open .mobileMenu-toggleIcon::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.mobileMenu-toggle.is-open .mobileMenu-toggleIcon::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.body {
    margin-bottom: 6rem;
    margin-top: 1.5rem
}

@media (min-width:801px) {
    .body {
        margin-top: 2.5rem
    }
}

.page {
    margin: 0 -.75rem;
    max-width: none;
    width: auto
}

.page-content,
.page-content--full {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left
}

@media (min-width:801px) {
    .page-content--centered {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 66.66667%;
        margin-left: auto;
        margin-right: auto;
        float: none
    }
}

.page-sidebar {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    float: left;
    position: relative
}

@media (min-width:801px) {

    .page-sidebar,
    .page-sidebar + .page-content {
        padding-left: .75rem;
        padding-right: .75rem;
        float: left
    }

    .page-sidebar {
        width: 25%
    }

    .page-sidebar + .page-content {
        width: 75%
    }
}

.footer {
    background-color: #fff;
    padding: 3rem 0
}

.footer-info {
    margin: 0 -.75rem;
    max-width: none;
    width: auto;
    font-size: 0
}

.footer-info-col {
    padding-left: .75rem;
    padding-right: .75rem;
    width: 100%;
    color: #989898;
    display: inline-block;
    float: none;
    font-size: 1rem;
    margin-bottom: 3rem;
    vertical-align: top
}

@media (min-width:551px) {
    .footer-info-col {
        text-align: left;
        width: 50%
    }

    .footer-info-col--left {
        padding: 0
    }
}

.footer-info-col > :first-child {
    margin-top: 0
}

.footer-info-col > :last-child {
    margin-bottom: 0
}

@media (min-width:801px) {
    .footer-info-col {
        width: 33.33334%
    }

    .footer-info-col--small {
        width: 16.66667%
    }
}

.footer-info-col--social {
    width: 100%
}

@media (min-width:551px) {
    .footer-info-col--right {
        left: 50%;
        position: inherit
    }
}

@media (min-width:801px) {
    .footer-info-col--right {
        left: 0;
        padding: 0;
        text-align: right
    }
}

.footer-info-heading {
    font-size: 1rem;
    text-transform: inherit
}

.footer-info-list {
    list-style: none;
    margin-left: 0
}

.footer-info-list a {
    color: #989898;
    text-decoration: none
}

.footer-info-list a:hover {
    color: #4f4f4f
}

.footer-copyright {
    text-align: center
}

.footer-copyright > .powered-by {
    color: #989898;
    font-size: 12px;
    margin: 0
}

.footer-copyright a {
    color: #989898;
    text-decoration: none
}

.footer-copyright a:hover {
    color: #4f4f4f
}

.footer-payment-icons {
    height: 2.85714rem;
    margin-top: 1.5rem
}

@media (min-width:801px) {
    .footer-payment-icons {
        margin-top: 3rem
    }
}

.footer-payment-icons .footer-payment-icon {
    height: 100%;
    margin: .35714rem;
    vertical-align: middle;
    width: 3.57143rem
}

.footer-payment-icons svg {
    fill: #4f4f4f
}

@media (min-width:551px) {
    .footer-copyright {
        text-align: left
    }

    .footer-geotrust-ssl-seal {
        bottom: 0;
        position: absolute;
        right: 16px
    }
}

.footer-geotrust-ssl-seal table {
    margin: auto
}

.footer-newsletter-summary {
    text-align: left
}

.blog .socialLinks,
.blog .tags {
    text-align: center
}
/*

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 91.71429rem;
    padding: 0 1.5rem;
    position: relative;
    width: 100%
}

@media (min-width:1261px) {
    .container {
        padding: 0 6rem
    }
}
*/

.brandGrid .brand,
.productGrid .product {
    padding-left: .75rem;
    padding-right: .75rem;
    float: none;
    vertical-align: top
}

.blog {
    margin-bottom: 1.5rem
}

@media (min-width:801px) {
    .blog {
        margin: auto;
        width: 100%
    }
}

.blog .addthis_toolbox,
.blog .tags,
.blog + .blog {
    margin-top: 3rem
}

.blog + .blog {
    padding-top: 3rem
}

.blog-title {
    font-size: 22px;
    margin: 0 1.5rem .35714rem
}

.blog-title a {
    text-decoration: none
}

.blog-author,
.blog-date {
    color: #989898;
    text-align: center
}

.blog-author {
    margin-bottom: 2.5rem
}

.blog-post {
    font-size: 15px;
    text-align: left
}

.account-head,
.blog-post-body,
.blog-post-figure,
.brandGrid .brand .card-title,
.sale-flag-sash,
.sale-text-burst {
    text-align: center
}

.blog-thumbnail {
    margin: 0 auto 2rem;
    position: relative;
    max-width: 190px
}

.blog-thumbnail img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.blog-thumbnail:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    padding-bottom: 131.57895%
}

.blog-post-figure {
    display: block;
    margin: auto
}

@media (min-width:801px) {
    .blog-post-figure {
        width: 66.66667%
    }
}

.blog-post-body {
    display: block;
    margin: 0 auto;
    width: 100%
}

@media (min-width:551px) {
    .blog-post-body {
        width: 83.33333%
    }
}

@media (min-width:801px) {
    .blog-post-body {
        width: 66.66667%
    }
}

@media (min-width:1261px) {
    .blog-post-body {
        width: 50%
    }
}

.sidebarBlock + .sidebarBlock {
    margin-top: 2rem;
    padding-top: 2rem
}

.sidebarBlock-heading {
    margin-top: 0;
    text-transform: inherit
}

.brandGrid {
    list-style: none;
    margin: 0 -.75rem 1.5rem;
    max-width: none;
    width: auto;
    font-size: 0
}

.brandGrid ol,
.brandGrid ul {
    list-style: none;
    margin-bottom: 0
}

.brandGrid:after,
.brandGrid:before {
    content: " ";
    display: table
}

.brandGrid .brand {
    width: 50%;
    display: inline-block;
    font-size: 1rem
}

@media (min-width:551px) {
    .brandGrid .brand {
        width: 33.33333%
    }
}

@media (min-width:801px) {
    .brandGrid .brand {
        width: 25%
    }
}

.brand .card-img-container:after,
.brand-image-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%
}

.brand-image-container {
    position: relative;
    max-width: 100px
}

.brand-image-container img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.brand-image-container:after {
    padding-bottom: 100%
}

.brand .card-img-container {
    max-width: 190px
}

.brand .card-img-container:after {
    padding-bottom: 131.57895%
}

.productGrid {
    list-style: none;
    margin: 0 -.75rem 1.5rem;
    max-width: none;
    width: auto;
    font-size: 0
}

.productGrid ol,
.productGrid ul {
    list-style: none;
    margin-bottom: 0
}

.productGrid:after,
.productGrid:before {
    content: " ";
    display: table
}

.productGrid .product {
    width: 50%;
    display: inline-block;
    font-size: 1rem
}

@media (min-width:551px) {
    .productGrid .product {
        width: 33.33333%
    }
}

@media (min-width:801px) {
    .productGrid .product {
        width: 25%
    }
}

.productMasonry {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-fill: auto;
    column-fill: auto;
    -webkit-column-gap: 1.42857rem;
    column-gap: 1.42857rem;
    margin: 0 0 1.5rem
}

@media (min-width:551px) {
    .page-sidebar + .page-content .productGrid .product {
        width: 33.33333%
    }

    .productMasonry {
        -webkit-column-count: 3;
        column-count: 3
    }
}

.productMasonry .product {
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
    display: block;
    margin-bottom: 3rem;
    padding: 0;
    width: 100%
}

.productMasonry .card {
    margin: 0
}

@media (min-width:801px) {
    .productMasonry {
        -webkit-column-count: 4;
        column-count: 4
    }

    .no-csscolumns .productGrid--maxCol6 .product {
        width: 16.66667%
    }

    .csscolumns .productGrid--maxCol6 {
        -webkit-column-count: 6;
        column-count: 6
    }

    .no-csscolumns .productGrid--maxCol3 .product {
        width: 33.33333%
    }

    .csscolumns .productGrid--maxCol3 {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 100%;
        float: left;
        float: none
    }

    .csscolumns .productGrid--maxCol3 .product {
        padding-left: .75rem;
        padding-right: .75rem;
        width: 33.33333%;
        float: none
    }
}

.productList {
    list-style: none;
    margin: .78571rem
}

.productList ol,
.productList ul {
    list-style: none;
    margin-bottom: 0
}

.productList .product + .product {
    margin-top: 4rem
}

@media (min-width:551px) {
    .listItem {
        margin: 0 -.75rem;
        max-width: none;
        width: auto;
        display: table
    }

    .listItem:after,
    .listItem:before {
        content: " ";
        display: table
    }

    .listItem:after {
        clear: both
    }

    .listItem-body,
    .listItem-figure {
        display: table-cell;
        vertical-align: top
    }
}

.listItem-button {
    background-color: rgba(255, 255, 255, .9);
    color: #2d2d2d
}

.listItem-button:hover {
    background-color: #fff;
    color: #2d2d2d
}

.listItem-figure {
    margin: 0 0 1.5rem
}

@media (min-width:551px) {
    .listItem-figure {
        margin-bottom: 0;
        padding-left: .78571rem;
        padding-right: .78571rem;
        width: 25%
    }
}

.listItem-figure .listItem-button {
    margin: 1.5rem 0
}

.listItem-figureBody {
    opacity: 1;
    text-align: center
}

.listItem-image {
    width: 100%
}

@media (min-width:551px) {
    .listItem-body {
        padding-left: 1.28571rem;
        padding-right: .78571rem;
        width: 75%
    }
}

@media (min-width:1261px) {

    .listItem-body,
    .listItem-figure {
        vertical-align: middle
    }

    .listItem-figure {
        position: relative
    }

    .listItem-figure .listItem-button {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        display: inline-block;
        margin: 0 0 1.5rem;
        pointer-events: all;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }

    .listItem-figureBody {
        bottom: 0;
        height: 100%;
        left: .78571rem;
        opacity: 0;
        position: absolute;
        right: .78571rem;
        top: 0
    }

    .listItem-figureBody:hover {
        opacity: 1
    }

    .listItem-content {
        display: table
    }

    .listItem-actions,
    .listItem-details {
        display: table-cell;
        vertical-align: top
    }

    .listItem-details {
        padding-right: 6rem
    }

    .listItem-details > :last-child {
        margin-bottom: 0
    }
}

.listItem-rating {
    margin-bottom: .35714rem
}

.listItem-brand {
    color: #a5a5a5;
    font-size: 1rem;
    margin: 0 0 .21429rem
}

@media (min-width:801px) {
    .listItem-brand {
        font-size: 15px;
        margin-bottom: 0
    }
}

.listItem-title {
    font-size: 15px;
    margin: 0 0 .21429rem
}

.listItem-title > a {
    text-decoration: none
}

.listItem-price {
    margin-bottom: 1rem
}

@media (min-width:801px) {

    .listItem-price,
    .listItem-title {
        font-size: 20px
    }
}

.listItem-actions .button {
    margin-bottom: 0
}

@media (min-width:1261px) {
    .listItem-actions {
        vertical-align: middle;
        width: 22%
    }

    .listItem-actions .button--compare {
        font-size: 13px;
        padding: .57143rem 1.5rem
    }

    .listItem-actions .button {
        width: 100%
    }

    .listItem-actions .button + .button {
        margin: .78571rem 0 0
    }

    .page-sidebar + .page-content .productList .listItem-details {
        padding-right: 3rem
    }

    .page-sidebar + .page-content .productList .listItem-actions {
        width: 30%
    }
}

.productView-description,
.productView-details,
.productView-images {
    padding-left: 1rem;
    padding-right: 1rem
}

.productView {
    margin: 0 -1rem;
    max-width: none;
    width: auto
}

.productView:after,
.productView:before {
    content: " ";
    display: table
}

.modal .productView {
    padding-bottom: 0;
    padding-top: 0
}

.productView--quickView .socialLinks-item--print {
    display: none
}

.productView-images {
    width: 100%;
    float: left
}

@media (min-width:801px) {
    .productView-images {
        width: 50%
    }
}

.productView-details {
    width: 100%;
    float: left
}

@media (min-width:801px) {
    .productView-details {
        clear: right;
        float: right;
        width: 50%
    }
}

.productView-description {
    width: 100%;
    float: left
}

@media (min-width:1261px) {
    .productView-description {
        clear: right;
        float: right;
        width: 50%
    }
}

.productView-description .productView-title {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width:801px) {
    .productView-description .productView-description {
        clear: both;
        float: none;
        width: 100%
    }
}

.sale-text-burst,
.starwrap {
    position: absolute;
    width: 3.57143rem
}

.sale-flag-star,
.sale-flag-star:after,
.sale-flag-star:before {
    background: #007dc6;
    content: "";
    display: block;
    height: 3.57143rem;
    left: 0;
    overflow: visible;
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
    transform: scaleX(1) scaleY(1) scaleZ(1);
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    width: 3.57143rem;
    z-index: 10
}

.sale-flag-star:before {
    -webkit-transform: rotateZ(30deg) scaleX(1) scaleY(1) scaleZ(1);
    transform: rotateZ(30deg) scaleX(1) scaleY(1) scaleZ(1)
}

.sale-flag-star:after {
    -webkit-transform: rotateZ(60deg) scaleX(1) scaleY(1) scaleZ(1);
    transform: rotateZ(60deg) scaleX(1) scaleY(1) scaleZ(1)
}

.starwrap {
    height: 3.57143rem;
    top: 10px
}

.sale-text-burst {
    color: #fff;
    font-weight: 600;
    line-height: 1.07143rem;
    top: 20%;
    z-index: 50
}

.sale-flag-sash,
.sale-flag-side {
    color: #fff;
    font-size: 15px;
    height: 1.42857rem;
    line-height: 1.14286rem;
    padding-top: .10714rem;
    z-index: 10;
    transition: .8s ease;
    position: absolute;
    font-weight: 700
}

.sale-flag-side {
    background: #007dc6;
    border-radius: 0 50px 50px 0;
    padding-left: .5rem;
    padding-right: .78571rem
}

.product:hover .sale-flag-side {
    background: #000;
    transition: .8s ease
}

.sale-flag-sash {
    background: #007dc6;
    left: -35px;
    top: 25px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 8.5rem
}

.product:hover .sale-flag-sash {
    background: #000;
    transition: .8s ease
}

[data-product-attribute] .form-option.form-option-swatch {
    overflow: visible
}

.form-option-variant--color,
.form-option-variant--pattern {
    height: 22px;
    width: 22px
}

.form-option-expanded {
    background-color: #fff;
    border: 1px solid #989898;
    left: calc(100% + 55px);
    opacity: 0;
    padding: 3px;
    position: absolute;
    top: calc(100% + 5px);
    transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
    visibility: hidden
}

.form-option:hover .form-option-expanded {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    visibility: visible;
    z-index: 5000
}

.form-option-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 100px;
    width: 100px
}

.account {
    margin-bottom: 1.5rem
}

@media (min-width:801px) {
    .account--fixed {
        margin: 0 auto;
        width: 66.66667%
    }

    .account--fixedSmall {
        margin: 0 auto;
        width: 50%
    }

    .account--fixedLarge {
        margin: 0 auto;
        width: 75%
    }
}

.account-head {
    margin-bottom: 3rem
}

.account-head .alertBox {
    padding-left: 3rem;
    padding-right: 3rem;
    text-align: left
}

.account-content,
.account-sidebar {
    padding-left: .75rem;
    padding-right: .75rem;
    float: left
}

.account-body {
    margin: 0 -.75rem;
    max-width: none;
    width: auto
}

.account-body:after,
.account-body:before {
    content: " ";
    display: table
}

.account-body:after {
    clear: both
}

.account-content {
    width: 100%
}

@media (min-width:801px) {
    .account-content--fixed {
        width: 66.66667%
    }

    .account-content--fixedSmall {
        width: 50%
    }
}

.account-sidebar {
    width: 100%
}

@media (min-width:801px) {
    .account-sidebar {
        width: 33.33333%
    }

    .account-content--fixedSmall + .account-sidebar {
        float: right
    }
}

.jstree-children,
.jstree-container-ul,
.jstree-node {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none
}

.jstree-anchor,
.jstree-icon,
.jstree-icon:empty {
    display: inline-block;
    margin: 0;
    vertical-align: top
}

.jstree-anchor {
    padding: 0 4px 0 1px
}

.jstree-anchor:focus {
    outline: 0
}

.jstree-anchor,
.jstree-anchor:active,
.jstree-anchor:hover,
.jstree-anchor:link,
.jstree-anchor:visited {
    text-decoration: none;
    color: inherit
}

.jstree-icon,
.jstree-icon:empty {
    text-decoration: none;
    padding: 0;
    text-align: center
}

.jstree-leaf > .jstree-ocl {
    cursor: default
}

.jstree .jstree-open > .jstree-children {
    display: block
}

.jstree .jstree-closed > .jstree-children,
.jstree .jstree-leaf > .jstree-children,
.jstree-anchor > .jstree-themeicon-hidden,
.jstree-hidden,
.jstree-no-icons .jstree-themeicon {
    display: none
}

.jstree-anchor > .jstree-themeicon {
    margin-right: 2px
}

.jstree-rtl .jstree-anchor {
    padding: 0 1px 0 4px
}

.jstree-rtl .jstree-anchor > .jstree-themeicon {
    margin-left: 2px;
    margin-right: 0
}

.jstree-rtl .jstree-node {
    margin-left: 0
}

.jstree-rtl .jstree-container-ul > .jstree-node {
    margin-right: 0
}

.jstree-wholerow-ul {
    position: relative;
    display: inline-block;
    min-width: 100%
}

.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
    cursor: pointer
}

.jstree-wholerow-ul .jstree-anchor,
.jstree-wholerow-ul .jstree-icon {
    position: relative
}

.jstree-wholerow-ul .jstree-wholerow {
    width: 100%;
    cursor: pointer;
    position: absolute;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.vakata-context {
    display: none
}

.vakata-context,
.vakata-context ul {
    margin: 0;
    padding: 2px;
    position: absolute;
    background: #f5f5f5;
    border: 1px solid #979797;
    box-shadow: 2px 2px 2px #999
}

.vakata-context .vakata-context-hover > a,
.vakata-context li > a:hover {
    position: relative;
    background-color: #e8eff7;
    box-shadow: 0 0 2px #0a6aa1
}

.vakata-context ul {
    list-style: none;
    left: 100%;
    margin-top: -2.7em;
    margin-left: -4px
}

.vakata-context .vakata-context-right ul {
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: -4px
}

.vakata-context li {
    list-style: none;
    display: inline
}

.vakata-context li > a {
    display: block;
    padding: 0 2em;
    text-decoration: none;
    width: auto;
    color: #000;
    white-space: nowrap;
    line-height: 2.4em;
    text-shadow: 1px 1px 0 #fff;
    border-radius: 1px
}

.vakata-context li > a > i,
.vakata-context li > a > i:empty {
    width: 2.4em;
    line-height: 2.4em
}

.vakata-context li > a.vakata-context-parent {
    background-image: url(data:image/gif;
    base64, R0lGODlhCwAHAIAAACgoKP ///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==);background-position:right center;background-repeat:no-repeat}.vakata-context li>a:focus{outline:0}.vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:#fff;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0}.vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0}.vakata-context li>a>i{text-decoration:none;display:inline-block;height:2.4em;background:0 0;margin:0 0 0 -2em;vertical-align:top;text-align:center}.vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:#fff;margin:0 .5em 0 0;border-left:1px solid #e2e3e3}.vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none}.vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px}.vakata-context-rtl li>a.vakata-context-parent{background-image:url(data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7);background-position:left center;background-repeat:no-repeat}.vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3}.vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto}.vakata-context-rtl li>a>i{margin:0 -2em 0 0}.vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:#fff;background:#e2e3e3}#jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0}#jstree-dnd{line-height:16px;margin:0;padding:4px}#jstree-dnd .jstree-copy,#jstree-dnd .jstree-icon{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px}#jstree-dnd .jstree-ok{background:green}#jstree-dnd .jstree-er{background:red}#jstree-dnd .jstree-copy{margin:0 2px}.jstree-default .jstree-icon,.jstree-default .jstree-node{background-repeat:no-repeat;background-color:transparent}.jstree-default .jstree-anchor,.jstree-default .jstree-wholerow{transition:background-color .15s,box-shadow .15s}.jstree-default .jstree-hovered{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #ccc}.jstree-default .jstree-clicked{background:#beebff;border-radius:2px;box-shadow:inset 0 0 1px #999}.jstree-default .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none}.jstree-default .jstree-disabled{color:#666}.jstree-default .jstree-disabled.jstree-hovered{box-shadow:none}.jstree-default .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default .jstree-search{font-style:italic;color:#8b0000;font-weight:700}.jstree-default .jstree-no-checkboxes .jstree-checkbox{display:none!important}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked{background:0 0;box-shadow:none}.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#e7f4f9}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:0 0}.jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#e7f4f9}.jstree-default>.jstree-striped{min-width:100%;display:inline-block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==) left top}.jstree-default>.jstree-wholerow-ul .jstree-clicked,.jstree-default>.jstree-wholerow-ul .jstree-hovered{background:0 0;box-shadow:none;border-radius:0}.jstree-default .jstree-wholerow{box-sizing:border-box;height:24px}.jstree-default .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default .jstree-wholerow-clicked{background:#beebff;background:linear-gradient(to bottom,#beebff 0,#a8e4ff 100%)}.jstree-default .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px;background-position:-292px -4px;background-repeat:repeat-y}.jstree-default .jstree-anchor{line-height:24px;height:24px}.jstree-default .jstree-icon,.jstree-default .jstree-icon:empty{width:24px;height:24px;line-height:24px}.jstree-default .jstree-icon,.jstree-default .jstree-node{background-image:url(../img/vendor/jstree/32px.png)}.jstree-default .jstree-last{background:0 0}.jstree-default .jstree-open>.jstree-ocl{background-position:-132px -4px}.jstree-default .jstree-closed>.jstree-ocl{background-position:-100px -4px}.jstree-default .jstree-leaf>.jstree-ocl{background-position:-68px -4px}.jstree-default .jstree-themeicon{background-position:-260px -4px}.jstree-default>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default>.jstree-no-dots .jstree-node{background:0 0}.jstree-default>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px}.jstree-default>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px}.jstree-default .jstree-disabled,.jstree-default .jstree-disabled.jstree-hovered{background:0 0}.jstree-default .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default .jstree-checkbox{background-position:-164px -4px}.jstree-default .jstree-checkbox:hover{background-position:-164px -36px}.jstree-default .jstree-checked>.jstree-checkbox,.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox{background-position:-228px -4px}.jstree-default .jstree-checked>.jstree-checkbox:hover,.jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover{background-position:-228px -36px}.jstree-default .jstree-anchor>.jstree-undetermined{background-position:-196px -4px}.jstree-default .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px}.jstree-default .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default>.jstree-striped{background-size:auto 48px}.jstree-default.jstree-rtl .jstree-node{margin-right:24px;background-position:100% 1px;background-repeat:repeat-y}.jstree-default.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px}.jstree-default.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px}.jstree-default.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default.jstree-rtl>.jstree-no-dots .jstree-node{background:0 0}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px}.jstree-default.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px}.jstree-default .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(../img/vendor/jstree/throbber.gif) center center no-repeat}.jstree-default .jstree-file{background:url(../img/vendor/jstree/32px.png) -100px -68px no-repeat}.jstree-default .jstree-folder{background:url(../img/vendor/jstree/32px.png) -260px -4px no-repeat}.jstree-default>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default{line-height:24px;padding:0 4px}#jstree-dnd.jstree-default .jstree-er,#jstree-dnd.jstree-default .jstree-ok{background-image:url(../img/vendor/jstree/32px.png);background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default i{background:0 0;width:24px;height:24px;line-height:24px}#jstree-dnd.jstree-default .jstree-ok{background-position:-4px -68px}#jstree-dnd.jstree-default .jstree-er{background-position:-36px -68px}.jstree-default.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==)}.jstree-default.jstree-rtl .jstree-last{background:0 0}.jstree-default-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px;background-position:-295px -7px;background-repeat:repeat-y}.jstree-default-small .jstree-anchor{line-height:18px;height:18px}.jstree-default-small .jstree-icon,.jstree-default-small .jstree-icon:empty{width:18px;height:18px;line-height:18px}.jstree-default-small .jstree-wholerow{height:18px}.jstree-default-small .jstree-icon,.jstree-default-small .jstree-node{background-image:url(../img/vendor/jstree/32px.png)}.jstree-default-small .jstree-last{background:0 0}.jstree-default-small .jstree-open>.jstree-ocl{background-position:-135px -7px}.jstree-default-small .jstree-closed>.jstree-ocl{background-position:-103px -7px}.jstree-default-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px}.jstree-default-small .jstree-themeicon{background-position:-263px -7px}.jstree-default-small>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default-small>.jstree-no-dots .jstree-node{background:0 0}.jstree-default-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px}.jstree-default-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px}.jstree-default-small .jstree-disabled,.jstree-default-small .jstree-disabled.jstree-hovered{background:0 0}.jstree-default-small .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-small .jstree-checkbox{background-position:-167px -7px}.jstree-default-small .jstree-checkbox:hover{background-position:-167px -39px}.jstree-default-small .jstree-checked>.jstree-checkbox,.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox{background-position:-231px -7px}.jstree-default-small .jstree-checked>.jstree-checkbox:hover,.jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover{background-position:-231px -39px}.jstree-default-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px}.jstree-default-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px}.jstree-default-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-small>.jstree-striped{background-size:auto 36px}.jstree-default-small.jstree-rtl .jstree-node{margin-right:18px;background-position:100% 1px;background-repeat:repeat-y}.jstree-default-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px}.jstree-default-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px}.jstree-default-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-node{background:0 0}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px}.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px}.jstree-default-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(../img/vendor/jstree/throbber.gif) center center no-repeat}.jstree-default-small .jstree-file{background:url(../img/vendor/jstree/32px.png) -103px -71px no-repeat}.jstree-default-small .jstree-folder{background:url(../img/vendor/jstree/32px.png) -263px -7px no-repeat}.jstree-default-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-small{line-height:18px;padding:0 4px}#jstree-dnd.jstree-default-small .jstree-er,#jstree-dnd.jstree-default-small .jstree-ok{background-image:url(../img/vendor/jstree/32px.png);background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-small i{background:0 0;width:18px;height:18px;line-height:18px}#jstree-dnd.jstree-default-small .jstree-ok{background-position:-7px -71px}#jstree-dnd.jstree-default-small .jstree-er{background-position:-39px -71px}.jstree-default-small.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==)}.jstree-default-small.jstree-rtl .jstree-last{background:0 0}.jstree-default-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px;background-position:-288px 0;background-repeat:repeat-y}.jstree-default-large .jstree-anchor{line-height:32px;height:32px}.jstree-default-large .jstree-icon,.jstree-default-large .jstree-icon:empty{width:32px;height:32px;line-height:32px}.jstree-default-large .jstree-wholerow{height:32px}.jstree-default-large .jstree-icon,.jstree-default-large .jstree-node{background-image:url(../img/vendor/jstree/32px.png)}.jstree-default-large .jstree-last{background:0 0}.jstree-default-large .jstree-open>.jstree-ocl{background-position:-128px 0}.jstree-default-large .jstree-closed>.jstree-ocl{background-position:-96px 0}.jstree-default-large .jstree-leaf>.jstree-ocl{background-position:-64px 0}.jstree-default-large .jstree-themeicon{background-position:-256px 0}.jstree-default-large>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default-large>.jstree-no-dots .jstree-node{background:0 0}.jstree-default-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0}.jstree-default-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0}.jstree-default-large .jstree-disabled,.jstree-default-large .jstree-disabled.jstree-hovered{background:0 0}.jstree-default-large .jstree-disabled.jstree-clicked{background:#efefef}.jstree-default-large .jstree-checkbox{background-position:-160px 0}.jstree-default-large .jstree-checkbox:hover{background-position:-160px -32px}.jstree-default-large .jstree-checked>.jstree-checkbox,.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox{background-position:-224px 0}.jstree-default-large .jstree-checked>.jstree-checkbox:hover,.jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover{background-position:-224px -32px}.jstree-default-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0}.jstree-default-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px}.jstree-default-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='jstree-grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)}.jstree-default-large>.jstree-striped{background-size:auto 64px}.jstree-default-large.jstree-rtl .jstree-node{margin-right:32px;background-position:100% 1px;background-repeat:repeat-y}.jstree-default-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px}.jstree-default-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px}.jstree-default-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl,.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-node{background:0 0}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px}.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px}.jstree-default-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(../img/vendor/jstree/throbber.gif) center center no-repeat}.jstree-default-large .jstree-file{background:url(../img/vendor/jstree/32px.png) -96px -64px no-repeat}.jstree-default-large .jstree-folder{background:url(../img/vendor/jstree/32px.png) -256px 0 no-repeat}.jstree-default-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}#jstree-dnd.jstree-default-large{line-height:32px;padding:0 4px}#jstree-dnd.jstree-default-large .jstree-er,#jstree-dnd.jstree-default-large .jstree-ok{background-image:url(../img/vendor/jstree/32px.png);background-repeat:no-repeat;background-color:transparent}#jstree-dnd.jstree-default-large i{background:0 0;width:32px;height:32px;line-height:32px}#jstree-dnd.jstree-default-large .jstree-ok{background-position:0 -64px}#jstree-dnd.jstree-default-large .jstree-er{background-position:-32px -64px}.jstree-default-large.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==)}.jstree-default-large.jstree-rtl .jstree-last{background:0 0}@media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:700;font-size:1.1em;text-shadow:1px 1px #fff}#jstree-dnd.jstree-dnd-responsive>i{background:0 0;width:40px;height:40px}#jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url(../img/vendor/jstree/40px.png);background-position:0 -200px;background-size:120px 240px}#jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url(../img/vendor/jstree/40px.png);background-position:-40px -200px;background-size:120px 240px}#jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px}.jstree-default-responsive .jstree-leaf>.jstree-ocl,.jstree-default-responsive .jstree-node{background:0 0}.jstree-default-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap}.jstree-default-responsive .jstree-anchor{line-height:40px;height:40px;font-weight:700;font-size:1.1em;text-shadow:1px 1px #fff}.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px}.jstree-default-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px}.jstree-default-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-ocl,.jstree-default-responsive .jstree-themeicon{background-size:120px 240px}.jstree-default-responsive .jstree-leaf>.jstree-ocl{background:0 0}.jstree-default-responsive .jstree-open>.jstree-ocl{background-position:0 0!important}.jstree-default-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px!important}.jstree-default-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0!important}.jstree-default-responsive .jstree-themeicon{background-position:-40px -40px}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-checkbox:hover{background-position:-40px -80px}.jstree-default-responsive .jstree-checked>.jstree-checkbox,.jstree-default-responsive .jstree-checked>.jstree-checkbox:hover,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover{background-position:0 -80px}.jstree-default-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px}.jstree-default-responsive>.jstree-striped{background:0 0}.jstree-default-responsive .jstree-wholerow{border-top:1px solid rgba(255,255,255,.7);border-bottom:1px solid rgba(64,64,64,.2);background:#ebebeb;height:40px}.jstree-default-responsive .jstree-wholerow-hovered{background:#e7f4f9}.jstree-default-responsive .jstree-wholerow-clicked{background:#beebff}.jstree-default-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #666}.jstree-default-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #666;border-top:0}.jstree-default-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none}.jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-node>.jstree-ocl,.jstree-default-responsive .jstree-themeicon{background-image:url(../img/vendor/jstree/40px.png);background-size:120px 240px}.jstree-default-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y}.jstree-default-responsive .jstree-last{background:0 0}.jstree-default-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px}.jstree-default-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px}.jstree-default-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0}.jstree-default-responsive .jstree-file{background:url(../img/vendor/jstree/40px.png) 0 -160px no-repeat;background-size:120px 240px}.jstree-default-responsive .jstree-folder{background:url(../img/vendor/jstree/40px.png) -40px -40px no-repeat;background-size:120px 240px}.jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0}}