/** Shopify CDN: Minification failed

Line 65:4 Comments in CSS use "/* ... */" instead of "//"
Line 76:4 Comments in CSS use "/* ... */" instead of "//"
Line 94:0 Comments in CSS use "/* ... */" instead of "//"
Line 102:0 Comments in CSS use "/* ... */" instead of "//"
Line 108:0 Comments in CSS use "/* ... */" instead of "//"
Line 124:4 Expected identifier but found "*"
Line 127:0 Comments in CSS use "/* ... */" instead of "//"
Line 142:0 Comments in CSS use "/* ... */" instead of "//"
Line 187:0 Comments in CSS use "/* ... */" instead of "//"
Line 188:0 Comments in CSS use "/* ... */" instead of "//"
... and 571 more hidden warnings

**/
@font-face {
    font-family: "ObjectSans-Heavy";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Heavy.otf?v=108735356772770197711708434585 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Heavy.otf?v=108735356772770197711708434585 ") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ObjectSans-Regular";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Regular.otf?v=52558557247107569481708434586 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Regular.otf?v=52558557247107569481708434586 ") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ObjectSans-Bold";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Bold.otf?v=79019875619459637361708434585 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Bold.otf?v=79019875619459637361708434585 ") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "ObjectSans-Slanted";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Slanted.otf?v=37350376679476881321708434587 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/ObjectSans-Slanted.otf?v=37350376679476881321708434587 ") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "NEONLEDLight";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/NEONLEDLight.ttf?15310 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/NEONLEDLight.ttf?15310 ") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "StarlitDrive";
    src: url(" //violabrands.com/cdn/shop/t/37/assets/StarlitDrive.otf?15310 ");
    src: url(" //violabrands.com/cdn/shop/t/37/assets/StarlitDrive.otf?15310 ") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@mixin breakpoint($class) {
    // MAX WIDTHS
    @if $class == xs {
        @media (max-width: 767px) {
            @content;
        }
    } @else if $class == xm {
        @media (max-width: 992px) {
            @content;
        }
    }

    // MIN WIDTHS
    @else if $class == sm {
        @media (min-width: 768px) {
            @content;
        }
    } @else if $class == md {
        @media (min-width: 1200px) {
            @content;
        }
    } @else if $class == lg {
        @media (min-width: 1300px) {
            @content;
        }
    } @else {
        @warn "Breakpoint mixin supports: xs, xm, sm, md, lg";
    }
}

// mixins
@mixin ease($time) {
    -webkit-transition: all $time ease-in-out;
    -moz-transition: all $time ease-in-out;
    -o-transition: all $time ease-in-out;
    transition: all $time ease-in-out;
}

// unknown height vertical align
@mixin vertical-align {
    top: 50%;
    transform: translateY(-50%);
}

// vertical align flexbox
@mixin flexbox-vert {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

// mixin for horizontal and vertical centering
@mixin center($horizontal: true, $vertical: true) {
    position: absolute;
    @if ($horizontal and $vertical) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    } @else if ($horizontal) {
        left: 50%;
        transform: translate(-50%, 0);
    } @else if ($vertical) {
        top: 50%;
        transform: translate(0, -50%);
    }
}
// markup: @include center(true, false);   ---> ( x, y )

.vertical {
    @include center(false, true);
}
.horizontal {
    @include center(true, false);
}
.middle {
    @include center(true, true);
}

.visible-xs {
    display: none;
    @include breakpoint(xs) {
        display: block !important;
    }
}
.hidden-xs {
    display: block;
    @include breakpoint(xs) {
        display: none !important;
    }
}

@mixin activeclosebtn {
    .close-btn {
        visibility: visible;
        opacity: 1;
        &:hover {
            cursor: pointer;
        }
    }
    .close-btn::after {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .close-btn::before {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

// .waypoint.up {
//   @include ease(1s);
//   position: relative;
//   opacity: 0;
//   visibility: hidden;
//   top: 30px;
//   &.visible {
//     opacity: 1;
//     visibility: visible;
//     top: 0;
//   }
// }
// .waypoint.up2 {
//   @include ease(1s);
//   position: relative;
//   opacity: 0;
//   visibility: hidden;
//   top: 60px;
//   &.visible {
//     opacity: 1;
//     visibility: visible;
//     top: 0;
//   }
// }

.waypoint.fade-in {
    // @include ease(1s);
    // position: relative;
    // opacity: 0;
    // visibility: hidden;

    opacity: 1;
    visibility: visible;

    // &.visible {
    //   opacity: 1;
    //   visibility: visible;
    // }
}

// .waypoint.slide-in {
//   @include ease(1s);
//   position: relative;
//   opacity: 0;
//   visibility: hidden;
//   left: -60px;
//   &.visible {
//     left: 0;
//     opacity: 1;
//     visibility: visible;
//   }
// }

@font-face {
    font-family: "Gotham";
    src: url("gothambook-webfont.eot");
    src: url("gothambook-webfontt.eot?#iefix") format("embedded-opentype"), url("gothambook-webfont.woff2") format("woff2"), url("gothambook-webfont.woff") format("woff"), url("gothambook-webfont.ttf") format("truetype"), url("gothambook-webfont.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "GothamMedium";
    src: url("gothammedium-webfont.eot");
    src: url("gothammedium-webfontt.eot?#iefix") format("embedded-opentype"), url("gothammedium-webfont.woff2") format("woff2"), url("gothammedium-webfont.woff") format("woff"), url("gothammedium-webfont.ttf") format("truetype"), url("gothammedium-webfont.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gotham-Black";
    src: url("Gotham-Black.eot?#iefix") format("embedded-opentype"), url("Gotham-Black.otf") format("opentype"), url("Gotham-Black.woff") format("woff"), url("Gotham-Black.ttf") format("truetype"), url("Gotham-Black.svg#Gotham-Black") format("svg");
    font-weight: normal;
    font-style: normal;
}

// fonts
@font-face {
    font-family: "Futura";
    src: url("FuturaStd-Book.eot");
    src: url("FuturaStd-Book.eot?#iefix") format("embedded-opentype"), url("FuturaStd-Book.woff") format("woff"), url("FuturaStd-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "nobellight";
    src: url("nobel_light_regular-webfont.woff2") format("woff2"), url("nobel_light_regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "nobelbold";
    src: url("nobel-bold-webfont.woff2") format("woff2"), url("nobel-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nobel-Bold";
    src: url("Nobel-Bold.eot?#iefix") format("embedded-opentype"), url("Nobel-Bold.otf") format("opentype"), url("Nobel-Bold.woff") format("woff"), url("Nobel-Bold.ttf") format("truetype"), url("Nobel-Bold.svg#Nobel-Bold") format("svg");
    font-weight: normal;
    font-style: normal;
}

html {
    padding-bottom: 0 !important;
    background: white;
}

body {
    font-family: ObjectSans-Regular;
    font-size: 16px;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: ObjectSans-Heavy;
    line-height: 1.2em;
    color: black;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: ObjectSans-Bold;
    line-height: 1.2em;
    color: black;
}

strong {
    font-family: ObjectSans-Regular;
}

.hide-mobile {
    @include breakpoint(xs) {
        display: none !important;
    }
}
.show-mobile {
    display: none;
    @include breakpoint(xs) {
        display: block !important;
    }
}

$dark-purple: #342839;
$light-purple: #7f35b2;

// hide admin for love of god
#preview-bar-iframe {
    display: none !important;
}

// _________________________________________________
//
//
//
//
//
//
//       GLOBAL
//
//
//
//
//
// _________________________________________________

#PageContainer {
    padding-top: 0;
    @include breakpoint(xs) {
        padding-top: 84px;
    }
}

.section-header {
    margin-bottom: 30px;
}

.site-overlay {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: white;
    z-index: 99999999;

    @include ease(0.5s);
    opacity: 1;
    visibility: visible;
    &.loaded2 {
        opacity: 0;
        visibility: hidden;
    }
    .spinner {
        position: absolute;
        width: 50px;
        height: 50px;
        left: 50%;
        top: 45%;
        margin-left: -25px;
        //margin-top: -25px;
        @include ease(0.5s);
        opacity: 1;
        visibility: visible;
        .spinner-bg {
            background: url("/cdn/shop/files/loading3.gif?v=1575522824") center center no-repeat;
            background-size: 50px;
            width: 50px;
            height: 50px;
        }
    }
    &.loaded .spinner {
        opacity: 0;
        visibility: hidden;
    }
}

.btn {
    font-family: ObjectSans-Bold;
    background: $light-purple;
    color: white;
    letter-spacing: 2px;
    font-size: 10px;
    &:hover {
        color: white;
        background: $dark-purple;
    }
}

// _________________________________________________
//
//
//
//
//
//
//      HEADER
//
//
//
//
//
// _________________________________________________

.uk-flag {
    position: absolute;
    width: 20px;
    width: 22px;
    right: 10px;
    top: 7px;
}
.us-flag {
    position: absolute;
    width: 20px;
    width: 20px;
    right: 35px;
    top: 7px;
}

.header-wrapper {
    @include ease(0.4s);
    position: fixed;
    top: 0;
    background: transparent;
    width: 100%;
    //padding: 10px 0;
    //border-bottom: 1px solid transparent;
    @include breakpoint(xs) {
        background: var(--brand-purple);
    }
}
body.scrolled .header-wrapper {
    background: var(--brand-purple);
    //padding: 20px 0;
}

// dark header templates
.template-article .header-wrapper {
    background: var(--brand-purple);
}
// dark header templates
#terms-of-service .header-wrapper {
    background: var(--brand-purple);
}
#privacy-policy .header-wrapper {
    background: var(--brand-purple);
}
.template-collection .header-wrapper {
    background: var(--brand-purple);
}

.header-container {
    z-index: 99999;
}

.site-header {
    @include ease(0.4s);
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 9;
    display: block;
    //background: white;
    padding: 0px 30px;
    @include ease(0.4s);
    margin-top: 5px;
}
body.scrolled .site-header {
    //padding: 10px 15px;
    margin-top: 0;
}

.site-header.desktop-header {
    display: block;
    position: relative;
    @include breakpoint(xs) {
        display: none;
    }
}
.site-header.mobile-header {
    display: none;
    @include breakpoint(xs) {
        display: block;
    }
}

.left-main-menu {
    float: left;
}
.right-main-menu {
    float: right;
    padding-right: 6%;
}

.desktop-logo {
    position: absolute;
    top: 0;
    left: 11%;
    width: 168px;
    margin-left: -100px;
    padding: 25px 10px;
    img {
        display: block;
        width: 100%;
    }
}

.desktop-search {
    position: absolute;
    display: none;
    visibility: hidden;
    right: 45px;
    top: 20px;
    opacity: 0.8;
    &:hover {
        opacity: 1;
    }
    a {
        display: block;
        margin-right: 13px;
    }
    span {
        font-size: 12px;
        color: white;
    }
}
.site-nav--mobile {
    display: grid !important;
    justify-content: right !important;
}
.desktop-cart {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.8;
    padding: 20px 2px;
    margin: 0;
    &:hover {
        opacity: 1;
    }
}

.burger-icon {
    @include breakpoint(xs) {
        background: white;
    }
}

.site-nav__link {
    font-family: ObjectSans-Bold;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: normal;
    padding: 40px 0px;
    border-top: 3px solid transparent;
    background: transparent;
    text-transform: uppercase;
    @include ease(0.4s);
    &:hover {
        background: transparent;
        color: white;
        border-top: 3px solid white;
    }
}
.site-nav--active a {
}

.site-header__logo img {
    max-height: 35px;
}

.site-header__toggle-nav {
    display: none;
}

.site-nav--has-dropdown {
    span {
        display: none;
    }
}
.site-nav--has-dropdown:hover > a,
.site-nav--has-dropdown > a.nav-focus,
.site-nav--has-dropdown.nav-hover > a {
    background: transparent;
}

.site-nav .site-nav__item {
    margin: 0 15px;
}

.site-nav__dropdown {
    background: transparent;
    box-shadow: none;
}

.site-nav__dropdown-link {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    color: black;
    padding: 3px 0;
    margin: 0;
    &:hover {
        opacity: 0.5;
    }
}

.dropbox-menu {
    text-align: left;
    padding-left: 30px;
    ul {
        margin: 0;
        padding-left: 15px;
    }
    li {
        list-style-type: none;
        margin: 0;
    }
    li > a {
        font-weight: 400;
        font-size: 12px;
        color: #666;
        &:hover {
            color: black;
        }
    }
}

.site-nav__link--icon {
    padding: 20px 20px;
}

.announcement-bar {
    @include ease(0.4s);
    height: 25px;
    line-height: 25px;
    //background: white !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    //border-bottom: 1px solid #eee;
    p {
        margin: 0;
        padding: 0;
        letter-spacing: 2px;
        font-size: 12px;
        font-weight: 600;
    }
}

body.scrolled .announcement-bar {
    top: -25px;
    transform: rotateX(-90deg);
}

.fixed-logo {
    position: fixed;
    top: 35px;
    left: 15px;
    width: 220px;
    z-index: 9999;
    @include ease(0.2s);
    @include breakpoint(xs) {
        display: block;
    }
}
body.scrolled .fixed-logo {
    top: 15px;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 60px;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0;
    width: 35px;
    height: 35px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    z-index: 9;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);

    @include ease(0.6s);
    opacity: 0.6;
    visibility: visible;
}
body.scrolled .scroll-down {
    bottom: 120px;
    opacity: 0;
    visibility: hidden;
}

// mobile nav

#NavDrawer {
    background: var(--brand-purple);
}

.mobile-nav > .mobile-nav__item {
    background: transparent;
}

.mobile-nav__item {
    a {
        font-family: ObjectSans-Regular;
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        color: white;
        background: transparent;
        &:hover {
            color: white !important;
        }
    }
}
.mobile-nav__item:after {
    border-bottom: 1px solid transparent;
}

.mobile-nav__item--secondary {
    a {
        font-size: 10px;
        color: white;
        background: transparent;
        &:hover {
            color: white !important;
        }
    }
}

// ==========================================================
//
//
//
//
//
//
//
//         2019 NEW MENU DROPDOWN MENU
//
//
//
//
//
//
//
// ==========================================================

// .vitae-dropdown-2019 {
//   position: absolute;
//   border-top: 1px solid #fafafa;
//   top: 80px;
//   left: 0;
//   display: block;
//   background: white;
//   text-align: center;
//   padding: 40px 0 60px;
//   margin: 0 auto;
//   width: 100%;
//   height: auto;
//   z-index: 999;

//   overflow: hidden;

//   opacity: 0;
//   visibility: hidden;
//   max-height: 0;
//   @include ease(.6s);

//   &.active {
//     opacity: 1;
//     visibility: visible;
//     max-height: 400px;
//   }

//   .rev-dropdown-box {
//     width: 30%;
//     margin: 0 1%;
//     display: inline-block;
//     vertical-align: top;
//     .icon-wrapper {
//       background: white;
//       position: relative;
//       width: 100%;
//       padding-top: 100%;
//       overflow: hidden;
//       .icon {
//         @include ease(.2s);
//         width: 60%;
//         height: 60%;
//         position: absolute;
//         top: 11%;
//         left: 20%;
//       }
//       h6 {
//         height: 0;
//         position: relative;
//         width: 100%;
//         bottom: 20px;
//       }
//     }
//     &:hover .icon-wrapper .icon {
//       transform: scale(1.05);
//     }

//     h6 {
//       text-align: left;
//       text-transform: uppercase;
//       color: black;
//       font-size: 14px;
//       font-weight: 600;
//       margin-top: 0;
//       margin-bottom: 15px;
//       padding: 0;
//       letter-spacing: 1px;
//     }
//   }
//   .rev-dropdown-menus {
//     width: 100%;
//     margin: 2% .25% 0;
//     display: inline-block;
//     vertical-align: top;
//     h6 {
//       text-align: left;
//       text-transform: uppercase;
//       color: black;
//       font-size: 14px;
//       font-weight: 600;
//       margin-top: 0;
//       margin-bottom: 15px;
//       padding: 0;
//       letter-spacing: 1px;
//     }
//     ul {
//       margin: 0; padding: 0;
//     }
//     li {
//       list-style-type: none;
//       position: relative;
//       margin: 0;
//     }
//     a {
//       font-weight: 600;
//       font-size: 11px;
//       display: block;
//       text-align: left;
//       padding: 4px 0;
//       letter-spacing: 0;
//       color: #222;
//       @include ease(.2s);
//       &:hover { cursor: pointer; color: #666; }
//     }
//     span { color: #868076; }
//     ul.child {
//       opacity: 0;
//       visibility: hidden;
//       background: transparent;
//       @include ease(.4s);

//         position: absolute;
//         left: 70px;
//         width: 140px;
//         top: 0px;
//         border-left: 1px solid #eee;
//         margin-left: 15px;
//         padding: 5px 15px;
//         display: block;
//         z-index: 1;
//       li > a {
//         padding: 4px 0;
//         font-size: 10px;
//       }
//     }
//     li.has-child:hover ul.child {
//       opacity: 1;
//       visibility: visible;
//     }
//     .social-icons li {
//       float: left;
//       margin-right: 5px;
//     }
//   }
//   .bottom-tagline {
//     font-family: 'GothamMedium' !important;
//     letter-spacing: 2px;
//     text-transform: uppercase;
//     width: 100%;
//     position: absolute;
//     bottom: 0;
//     left: 0;
//     text-align: center;
//     font-size: 9px;
//     opacity: .25;
//     font-weight: 600;
//   }

// }

// _________________________________________________
//
//
//
//
//
//
//       HOMEPAGE
//
//
//
//
//
// _________________________________________________

.embed-wrap {
    position: relative;
    display: block;
    margin-top: -2.5%;
    @include breakpoint(xs) {
        margin-top: -10px;
    }
    .white-bar {
        background: white;
        position: absolute;
        height: 7%;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9;
        @include breakpoint(xs) {
            height: 18px;
        }
    }
}
.toggle-audio {
    background: url(//violabrands.com/cdn/shop/t/37/assets/audiooff.png?15310);
    background: url(//violabrands.com/cdn/shop/t/37/assets/audioon.png?15310);
    background-size: 28px;
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: 90px;
    left: 35px;
    z-index: 9999;
    &:hover {
        cursor: pointer;
        opacity: 0.75;
    }
    &.active {
        background: url(//violabrands.com/cdn/shop/t/37/assets/audiooff.png?15310);
        background-size: 28px;
        width: 28px;
        height: 28px;
    }
    @include breakpoint(xs) {
        bottom: 46px;
        left: 30px;
    }
}

div.carousel.home-slider div.carousel-cell div.home-slider-callout a.btn {
    font-size: 25px;
    background: var(--brand-purple);
    border-radius: 5px;
    padding: 10px;
    background: transparent;
}
h1:not(.hero__title) {
    max-width: 250px;
    font-size: 2.25em;
    font-family: ObjectSans-Heavy;
}

.home-slider {
    overflow: hidden;
    .carousel-cell {
        width: 100%;
        height: auto;
        img {
            display: block;
            width: 100%;
        }
    }
    .flickity-button {
        background: none;
    }
    .flickity-prev-next-button {
        width: 60px;
        height: 60px;
        color: white;
    }
    .flickity-page-dots .dot {
        height: 5px;
        width: 60px;
        border-radius: 0;
    }
}

.index-sections .shopify-section {
    margin-top: 0;
}

.top-banner {
    position: relative;
    display: block;
    //margin-top: 90px;

    .new-callouts {
        position: absolute;
        width: 50%;
        @include breakpoint(xs) {
            transform: none;
            position: relative;
            width: 100%;
            left: 0 !important;
            top: 0 !important;
            padding: 15px;
        }
    }
    h1 {
        font-size: 42px;
        line-height: 1.2em;
        color: white;
        font-weight: 600;
        //text-shadow: 6px 6px 0px rgba(0,0,0,0.2);
        @include breakpoint(xs) {
            font-size: 40px;
            color: $dark-purple;
        }
    }
    p {
        color: white;
        padding-right: 15%;
        font-weight: 600;
        font-size: 16px;
        @include breakpoint(xs) {
            color: $dark-purple;
        }
    }
}

.homepage-banner {
    position: relative;
}

// mobile and desk banners
.new-banner-desktop {
    display: block;
    @include breakpoint(xs) {
        display: none;
    }
}
.new-banner-mobile {
    display: none;
    @include breakpoint(xs) {
        display: block;
    }
}

a.cta {
    color: white;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-weight: 600;
    font-size: 16px;
    padding: 0 60px;
}

.cta.locator-cta {
    border: 2px solid white;
    display: inline-block;
    font-size: 22px;
    height: auto;
    line-height: 30px;
    text-align: center;
    padding: 20px 30px;
}

.full-width-banner {
    position: relative;

    h1 {
        font-size: 42px;
        line-height: 1.2em;
        font-weight: 600;
        //text-shadow: 6px 6px 0px rgba(0,0,0,0.2);
        @include breakpoint(xs) {
            font-size: 40px;
        }
    }
    p {
        padding-right: 15%;
    }
}

.homepage-callouts {
    padding: 60px 0;
    .titles {
        padding: 30px 0;
        text-align: center;
    }
}

// .tech-boxes {
//   position: relative;
//   display: block;
//   .titles {
//     padding: 30px 0;
//     h1 {
//       float: left;
//       @include breakpoint(xs) { float: none; }
//     }
//     h6 {
//       float: left; margin-left: 20px; opacity: .5; margin-top: 8px;
//       @include breakpoint(xs) { float: none; margin: 0; }
//     }
//   }
//   .tech-box {
//     vertical-align: top;
//     display: inline-block;
//     width: 28%;
//     margin: 0 5% 5% 0%;
//     text-align: left;
//     a {
//       opacity: .5;
//       font-size: 12px;
//       margin-top: 10px;
//       display: block;
//       &:hover { opacity: 1; }
//     }
//     p {
//       font-size: 14px;
//       padding: 15px 0;
//       margin: 0 0 10px 0;
//     }
//     @include breakpoint(xs) {
//       width: 80%;
//       margin: 0 auto 30px;
//       text-align: center;
//       display: block;
//     }
//   }
// }

.rich-text {
    padding: 60px 0;
    position: relative;
    display: block;
    text-align: center;
}

.rev-home-blocks {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    .rev-block {
        position: relative;
        float: left;
        width: 50%;
        height: 400px;
        text-align: center;
        color: white;
        overflow: hidden;
        @include breakpoint(xs) {
            width: 100%;
            height: 320px;
        }
        .bg-img {
            @include ease(0.4s);
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
        }
        h1 {
            color: white;
            font-size: 28px;
            text-transform: uppercase;
        }
        p {
            font-size: 16px;
            letter-spacing: 0;
            font-weight: 600;
            text-transform: uppercase;
        }
        .vertical {
            width: 100%;
        }
        &:hover .bg-img {
            transform: scale(1.02);
            opacity: 0.9;
        }
    }
}

// ______________________________________________________________
//
//
//
//
//
//      PAGES
//
//
//
//
//
// ______________________________________________________________

.new-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 15px 90px;
    .page-title {
        padding-bottom: 30px;
    }
    h1 {
        margin-top: 15px;
        text-align: center;
        font-size: 48px;
        font-weight: 100;
        line-height: 48px;
        text-transform: uppercase;
        color: $dark-purple;
    }
}

.page-content .rte {
    font-family: ObjectSans-Regular;
    font-size: 18px;
    color: $dark-purple;
    font-weight: 600;
    padding: 30px 0 0;
}

.page-banner {
    position: relative;
    min-height: 500px;
    max-height: 30vh;
    display: block;
    overflow: hidden;
    @include breakpoint(xs) {
        min-height: 300px;
    }
    .page-banner-copy {
        width: 100%;
        text-align: left;
        z-index: 3;
        @include breakpoint(xs) {
            left: 0;
        }
        h1 {
            color: white;
            font-size: 48px;
            font-weight: 100;
            line-height: 48px;
            text-transform: uppercase;
        }
        p {
            color: white;
            max-width: 400px;
            margin: 15px auto;
        }
    }
}

.page-left {
    float: left;
    width: 30%;
}
.page-right {
    float: left;
    width: 70%;
}

.page-blocks {
    position: relative;
    display: block;
    padding-top: 60px;
    @include breakpoint(xs) {
        padding-top: 0;
    }
    .content {
        color: $dark-purple;
        font-size: 18px;
        font-weight: 600;
        padding: 90px 60px 0px 60px;
        width: 100%;
        position: relative;
        @include breakpoint(xs) {
            padding: 15px 15px 30px;
        }
    }
    h1 {
        color: $dark-purple;
    }
    .divide {
        height: 1px;
        background: $dark-purple;
        width: 0px;
        margin: 30px 0;
        @include ease(0.4s);
    }
    .divide.visible {
        width: 120px;
    }
    @include breakpoint(xs) {
        display: block;
    }
    .page-block-img {
        float: left;
        width: 55%;
        padding-top: 30%;
        @include breakpoint(xs) {
            display: none;
        }
    }
    .page-block-text {
        float: right;
        width: 45%;
        @include breakpoint(xs) {
            display: block;
            flex: none;
            width: 100%;
        }
    }
    .page-block-img.img-right {
        float: right;
        @include breakpoint(xs) {
            float: none;
        }
    }
    .page-block-text.text-left {
        float: left;
        @include breakpoint(xs) {
            float: none;
        }
    }
}

.brand-title {
    position: relative;
    .quick-title {
        position: absolute;
        left: 0;
        top: 0;
        padding: 30px;
        @include breakpoint(xs) {
            display: none;
        }
        h1 {
            color: white;
            font-size: 3em;
        }
    }
}

.process-blocks {
    position: relative;
    .p-block {
        float: left;
        width: 50%;
        padding-top: 50%;
        position: relative;
        &::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .process-title {
            position: absolute;
            left: 0;
            top: 0;
            padding: 10%;
            z-index: 2;
        }
        .p-content {
            position: absolute;
            padding: 25% 10%;
            top: 0;
            left: 0;
            z-index: 2;
        }
        h1 {
            color: white;
            font-size: 48px;
            line-height: 48px;
            text-transform: uppercase;
        }
        h2 {
            color: white;
        }
    }
}

.featured-in-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    h2 {
        color: $dark-purple;
    }
    .col {
        display: inline-block;
        width: 28%;
        padding: 2%;
        margin: 2%;
        img {
            width: 100%;
            display: block;
        }
    }
}

.homepage-blocks {
    position: relative;
    display: block;
    .homepage-block {
        padding: 30px 0 60px;
        position: relative;
        display: flex;
        height: auto;
        @include breakpoint(xs) {
            display: block;
            padding: 30px;
        }
        .block-left {
            flex: 1;
            position: relative;
            .vertical {
                width: 100%;
                padding: 0px 60px 120px 120px;
            }
            @include breakpoint(xs) {
                display: block;
                flex: none;
                width: 100%;
                .vertical {
                    position: relative;
                    padding: 0px;
                    transform: translate(0, 0%);
                }
            }
            img.arrow {
                margin-left: -30px;
                @include ease(0.8s);
                padding: 12px 0;
            }
            &.visible img.arrow {
                margin-left: 0;
            }
        }
        .block-right {
            flex: 1;
            position: relative;
            .vertical {
                width: 100%;
                padding: 00px 120px 120px 60px;
            }
            @include breakpoint(xs) {
                display: block;
                flex: none;
                width: 100%;
                .vertical {
                    position: relative;
                    padding: 0px;
                    transform: translate(0, 0%);
                }
            }
            img.arrow {
                margin-left: -30px;
                @include ease(0.8s);
                padding: 10px 0;
            }
            &.visible img.arrow {
                margin-left: 0;
            }
        }
        h1 {
            color: $dark-purple;
            @include breakpoint(xs) {
                margin-top: 20px;
            }
        }
        p {
            color: $dark-purple;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            padding: 0 0 30px 0;
        }
        a {
            font-family: ObjectSans-Regular;
            color: $dark-purple;
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
    }
}

.story-content {
    position: relative;
    display: block;
    padding: 60px 30px;
    text-align: justify;
    max-width: 1200px;
    margin: 0 auto;
    h1 {
        float: left;
        width: 40%;
        padding-left: 10%;
        padding-right: 5%;
        text-align: left;
        font-size: 28px;
        padding-bottom: 30px;
        @include breakpoint(xs) {
            padding-left: 0;
            width: 100%;
        }
    }
    .copy {
        float: left;
        width: 50%;
        font-size: 12px;
        line-height: 2em;
        @include breakpoint(xs) {
            padding-left: 0;
            width: 100%;
        }
    }
}

.faq-content-wrap {
    padding: 60px;
    position: relative;
    font-size: 12px;
    @include breakpoint(xs) {
        padding: 30px;
    }
    h2 {
        font-size: 24px;
        margin: 30px 0 0;
        padding: 0;
    }
    h6 {
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
    }
    p {
        font-size: 12px;
    }
    .faq-box {
        width: 50%;
        float: left;
        padding: 30px 60px 0 0;
        @include breakpoint(xs) {
            padding: 30px 0 0;
            width: 100%;
        }
    }
}

// .faq-content {
//   position: relative;
//   display: block;
//   float: left;
//   width: 50%;

//   h2 {
//     font-size: 24px;
//     font-weight: 100;
//     margin-bottom: 60px;
//     width: 100%;
//     display: block;
//   }
//   h1 {
//     float: left;
//     width: 100%;
//     //padding-left: 10%;
//     padding-right: 5%;
//     text-align: left;
//     font-size: 16px;
//     padding-bottom: 30px;
//     border-right: 1px solid #eee;
//     @include breakpoint(xs) {
//       padding-left: 0;
//       width: 100%;
//     }
//   }
//   .copy {
//     float: left;
//     width: 100%;
//     font-size: 12px;
//     line-height: 2em;
//     padding-left: 10%;
//     @include breakpoint(xs) {
//       padding-left: 0;
//       width: 100%;
//     }
//   }
// }

// ================================================== //
//
//
//
//
//
//
//
//        PRESS SLIDER PRESS REVIEWS AREA
//
//
//
//
//
//
//
// ================================================== //

#shopify-section-maxwell-press-reviews {
    border-top: 1px solid #eee;
    z-index: 2;
}

.press-slider-wrapper {
    position: relative;
    display: block;
    height: 300px;
    margin: 15px 0 30px;
    z-index: 3;
    @include breakpoint(xs) {
        margin: 30px 0 60px;
        height: 300px;
    }
    h6 {
        font-family: "GothamMedium";
        padding: 0 15px;
        letter-spacing: 4px;
        font-size: 12px;
        text-align: center;
        color: black;
        opacity: 0.25;
    }
}

.press-slider-text {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    height: 160px;
    @include breakpoint(xs) {
        height: 140px;
    }
    .press-testimonial {
        position: absolute;
        width: 100%;
        top: 0;
        padding: 0px 15px;
        @include breakpoint(xs) {
            padding: 30px 15px;
        }
    }
    h1 {
        font-family: ObjectSans-Regular;
        color: $dark-purple;
        line-height: 1.5em;
        font-weight: 600;
        font-size: 18px;
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
        @include breakpoint(xs) {
            font-size: 18px;
            padding: 0 15px;
        }
    }
}
.press-slider-logos {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    text-align: center;
    height: 80px;
    @include breakpoint(xs) {
        height: 120px;
    }
    .logos {
        display: inline-block;
        width: 25%;
        max-width: 200px;
        vertical-align: middle;
        padding: 0 2%;
        @include breakpoint(xs) {
            width: 40%;
            padding: 1% 5%;
        }
    }
}
.slide1,
.slide2,
.slide3,
.slide4,
.slide5 {
    // position: absolute;
    // width: 100%;
    // height: 100%;
}
.slide {
    @include ease(1s);
    opacity: 0;
    animation: fade 15s infinite;
    -webkit-animation: fade 15s infinite;
}

.slide1 {
    animation-delay: 0s;
}
.slide2 {
    animation-delay: 5s;
}
.slide3 {
    animation-delay: 10s;
}

.slide-logos {
    @include ease(1s);
    opacity: 0.25;
    animation: fadelogos 15s infinite;
    -webkit-animation: fadelogos 15s infinite;
}

.slide1-logos {
    animation-delay: 0s;
}
.slide2-logos {
    animation-delay: 5s;
}
.slide3-logos {
    animation-delay: 10s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    23% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadelogos {
    0% {
        opacity: 0.25;
    }
    2% {
        opacity: 1;
    }
    23% {
        opacity: 1;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.25;
    }
    75% {
        opacity: 0.25;
    }
    100% {
        opacity: 0.25;
    }
}

// ______________________________________________________________
//
//
//
//
//
//      PRODUCTS GRID.  / collections
//
//
//
//
//
// ______________________________________________________________

.collection-header {
    position: relative;
    display: block;
    padding-top: 120px;
    //padding-bottom: 60px;
    .coll-header-left {
        float: left;
        width: 50%;
        padding: 90px 60px 0;
        h1 {
            text-transform: uppercase;
            color: $dark-purple;
        }
        .coll-desc {
            padding-bottom: 30px;
            font-weight: 600;
        }
        font-size: 18px;
        color: $dark-purple;
    }
    .coll-header-right {
        float: left;
        width: 50%;
        padding-top: 40%;
    }
}

.collection-gallery {
    position: relative;
    display: block;
    .img-left {
        float: left;
        width: 50%;
        padding-top: 50%;
    }
    .img-right {
        float: left;
        width: 50%;
        padding-top: 50%;
    }
}

.coll-store-locator-app {
    position: relative;
    display: block;
    width: 100%;
}

.collection-page-banner {
    position: relative;
    display: block;
    .collectionpage-banner-title {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 30px;
    }
    img.mob {
        display: none;
        @include breakpoint(xs) {
            display: block;
        }
    }
    img.desk {
        display: block;
        @include breakpoint(xs) {
            display: none;
        }
    }
}

.collection-title-bar {
    width: 100%;
    position: relative;
    height: 50px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding: 0 18px;
    background: white;
    top: 1px;
    @include ease(0.8s);
    z-index: 5;
    .bar-left {
        float: left;
        width: 50%;
        line-height: 50px;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .bar-right {
        float: right;
        width: 50%;
        line-height: 50px;
        .filter-dropdown {
            text-align: right;
        }
        .collection-filters {
            text-align: right;
            font-weight: 600;
            font-style: normal;
            font-size: 12px;
        }
        .filter-dropdown__label {
            text-align: right;
            font-weight: 600;
            font-style: normal;
            font-size: 10px;
            text-transform: uppercase;
            opacity: 0.5;
        }
        .filter-dropdown__select {
            //background: white;
            text-align: right;
            font-weight: 600;
            font-style: normal;
            font-size: 10px;
            opacity: 0.5;
            &:hover {
                opacity: 0.8;
            }
        }
    }
}
body.scrolled .collection-title-bar {
    position: fixed;
    top: 80px;
}

.mcs-collection-wrapper {
    position: relative;
    padding: 0 0 60px 0;
}
// .mcs-sidebar {
//   float: left; width: 20%;
//   position: sticky;
//   top: 25%;
//   left: 30px;
//   z-index: 99;
//   h6 { margin: 15px 0;}
//   li { list-style-type: none; }
//   a.coll {
//     font-family: 'GothamMedium';
//     opacity: .75; display: block; margin: 5px 0; padding: 3px 0px; line-height: 12px; font-weight: 400; font-size: 12px;
//     @include ease(.2s);
//     &:hover { border-left: 2px solid; padding-left: 10px; opacity: 1; }
//   }
//   a.sub-product {
//     font-family: 'GothamMedium';
//     opacity: .5; display: block; margin: 0; padding: 3px 10px; font-weight: 400; font-size: 12px;
//   }
//   a {  }
//   a:hover { opacity: 1; cursor: pointer; }
// }

.collection-wrap {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 15px;
    @include breakpoint(xs) {
        margin: 30px auto;
    }
}

.new-simple-grid-desktop {
    position: relative;
    display: block;
   
    .img1 {
        position: relative;
        top: 0;
        left: 0;
        z-index: 3;
        display: block;
    }
    .img2 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        display: none;
    }
}
.new-simple-grid-desktop:hover .img2 {
    z-index: 4;
    display: block;
}

.grid-product__image-link {
    background: transparent;
}

.is-sold-out .product--image {
    opacity: 1;
}

.grid-product__wrapper {
    margin: 0;
    padding-bottom: 0px;
}

.grid-product__title {
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0px;
}
.long-dash {
    display: none;
}
.grid-product__price {
    display: block;
    font-size: 10px;
    color: #aaa;
    padding-top: 0px;
    margin-bottom: 15px;
}

.viola-collection-banner {
    position: relative;
    height: 70vh;
    @include breakpoint(xs) {
        height: 400px;
    }

    .v-c-text {
        // position: absolute;
        // bottom: 30px;
        // left: 30px;
        //width: 100%;
        //padding: 0 30px;
        text-align: left;
        z-index: 3;
        @include breakpoint(xs) {
            left: 0;
            width: 100%;
            text-align: center;
            top: 30%;
        }
        h1 {
            color: white;
            font-size: 48px;
            font-weight: 100;
            line-height: 48px;
            text-transform: uppercase;
            @include breakpoint(xs) {
                font-size: 28px;
                padding: 30px;
                text-align: center;
            }
        }
    }
}

.viola-collections {
    position: relative;
    display: block;
    @include breakpoint(xs) {
        padding: 15px;
    }
    .coll-wrap {
        position: relative;
        padding: 60px 0 0;
        @include breakpoint(xs) {
            padding: 0;
        }
    }
    .coll-img {
        float: left;
        width: 55%;
        margin-bottom: -10px;
        &.right-aligns {
            float: right;
        }
        @include breakpoint(xs) {
            width: 100%;
            float: none;
            position: relative;
            margin: 0;
        }
    }

    .coll-desc {
        //float: left;
        position: absolute;
        width: 45%;
        left: 55%;
        height: 89%;
        text-align: center;
        &.left-aligns {
            left: 0;
        }
        @include breakpoint(xs) {
            float: none;
            width: 100%;
            height: auto;
            position: relative;
            padding: 0;
            left: 0;
        }
        .vertical {
            width: 100%;
            @include breakpoint(xs) {
                padding: 15px 0;
                position: relative;
                top: 0%;
                transform: translate(0, 0%);
            }
        }

        .btn {
            margin: 0 3px 0 0;
        }
        h1 {
            color: $dark-purple;
            text-transform: uppercase;
        }
        p {
            color: $dark-purple;
            font-size: 18px;
            font-weight: 600;
            padding: 5px 0 15px;
            @include breakpoint(xs) {
                padding: 5px 0 15px;
            }
        }
    }
}

.viola-contact-forms {
    position: relative;
    padding: 30px 15px 120px;
    input {
        background: white;
        border: 1px solid #eee;
        line-height: 50px;
        height: 50px;
        font-size: 14px;
        font-style: normal;
        padding: 0 15px;
        color: $dark-purple;
        &:focus {
            outline: 0;
        }
    }
    textarea {
        background: white;
        border: 1px solid #eee;
        max-height: 200px;
        font-size: 14px;
        font-style: normal;
        padding: 15px;
        color: $dark-purple;
        &:focus {
            outline: 0;
        }
    }
    input.btn {
        position: absolute;
        background: $light-purple;
        min-width: 220px;
        color: white;
        letter-spacing: 2px;
        border: 0;
        float: left;
    }
    label {
        font-family: ObjectSans-Regular;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        color: $dark-purple;
        padding-right: 25px;
    }
    [type="radio"]:checked,
    [type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }
    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: $dark-purple;
    }
    [type="radio"]:checked + label:before,
    [type="radio"]:not(:checked) + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        border: 1px solid #ddd;
        border-radius: 100%;
        background: #fff;
    }
    [type="radio"]:checked + label:after,
    [type="radio"]:not(:checked) + label:after {
        content: "";
        width: 18px;
        height: 18px;
        background: $light-purple;
        position: absolute;
        top: 4px;
        left: 4px;
        top: 0px;
        left: 0px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    [type="radio"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    [type="radio"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

// ______________________________________________________________
//
//
//
//
//
//      PRODUCTS SINGLE PRODCUT
//
//
//
//
//
// ______________________________________________________________

.product-lifestyles {
    position: relative;
    padding-top: 90px;
    img {
        float: left;
        width: 50%;
    }
}

.product-page-top-bar {
    background: black;
    position: relative;
    top: 0;
    width: 100%;
    background: white;
    //border-top: 1px solid #eee;
    //border-bottom: 1px solid #eee;
    padding: 0 30px;
    height: 50px;
    .top-bar-left {
        float: left;
        line-height: 50px;
        color: #666;
        font-size: 9px;
        text-transform: uppercase;
    }
    .top-bar-right {
        float: right;
        line-height: 50px;
        color: #666;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }
    @include breakpoint(xs) {
        display: none;
    }
}

.product-single {
    text-align: left;
    padding-top: 30px;
    margin: 0;
}

.product-single__photos {
    position: relative;
    clear: both;
    @include breakpoint(xs) {
        padding-bottom: 0;
    }
}

.product-single__photo--container {
    //padding-top: 60px;
    //padding-bottom: 30px;
    max-width: none !important;
}
.product-single__thumbnail.active-thumb img {
    //padding: 8px;
    border: 1px solid #eee;
}

.product-single__form--no-variants {
    margin: 0;
}

.mfp-container {
    padding-top: 100px;
}
button.mfp-close {
    top: 100px;
}

.product-single__title {
    font-size: 42px;
    color: $dark-purple !important;
    text-transform: uppercase;
}

.product-single__price {
    color: #999;
    letter-spacing: 0;
    font-size: 14px;
}

.product-single__meta--wrapper {
    position: sticky;
}

.prod-meta {
    position: relative !important;

    @include breakpoint(xs) {
        padding: 0 15px;
    }
    h1 {
        padding-bottom: 0px;
        margin-bottom: 0;
        margin-left: -2px;
        @include breakpoint(xs) {
            font-size: 42px;
        }
    }
    h2 {
        font-size: 20px;
        color: black;
        font-weight: 600;
        padding-bottom: 15px;
        margin: 0;
    }
    p {
        @include breakpoint(xs) {
            font-size: 12px;
            padding: 15px 0 0;
        }
    }
    #ProductPrice {
        color: black;
        font-weight: 600;
        font-size: 24px;
    }
}

.product-single__photo {
    max-width: none !important;
    max-height: none !important;
}

.product-short-description {
    padding: 10px 0 15px;
}

.product-icons {
    position: relative;
    display: block;
    padding: 15px 0;
    img {
        margin-right: 15px;
        width: 60px;
        display: inline-block;
        vertical-align: top;
    }
}

.single-option-radio__label {
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.5;
    font-size: 12px;
    letter-spacing: 2px;
}

.product-single__photos .slick-dots {
    background: white;
}

.product-single__description {
    margin: 0;
    padding: 10px 30px 10px 0;
    p {
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 500;
    }
    @include breakpoint(xs) {
        padding: 0 0 30px;
    }
}
#prod_tag {
    margin-bottom: 0;
}

#AddToCart--product-template {
    font-family: ObjectSans-Bold;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    width: 97%;
    background: $light-purple;
    color: white;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border: 0;
    font-weight: 500;
    &:hover {
        opacity: 0.8;
    }
}

.product-expand-collapse {
    position: relative;
    width: 100%;
    max-width: 300px;
    h2.title {
        font-family: ObjectSans-Bold;
        padding: 15px 0;
        margin: 0;
        font-size: 10px;
        letter-spacing: 2px;
        text-align: left;
        text-transform: uppercase;
        &:hover {
            cursor: pointer;
        }
        &:after {
            content: "+";
            float: right;
            position: relative;
        }
        &.active:after {
            content: "-";
        }
    }
    div.content {
        font-size: 10px;
        padding-bottom: 15px;
    }
}

// .expanders {
//     font-weight: 600;
//     text-transform: uppercase;
//     //opacity: .5;
//     font-size: 12px;
//     letter-spacing: 2px;
// }
// .expanders-content {
//   position: relative;
//   font-size: 14px;
//   //margin-bottom: 30px;
//   ul { margin: 0; padding: 0 0 0px 0; }
//   li {
//     list-style-type: none;
//     width: 50%;
//     float: left;
//     padding-left: 15px;
//     font-weight: 400;
//     color: #666;
//     position: relative;
//     &::before {
//       content: '+';
//       font-weight: 600;
//       color: black;
//       position: absolute;
//       left: 0;
//       color: #ddd;
//     }
//     &:hover::before {
//       color: black;
//     }
//   }
// }

.shopify-payment-button .shopify-payment-button__more-options {
    margin: 0 !important;
    font-size: 10px;
}

.product-single__quantity-label {
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.5;
    font-size: 12px;
    letter-spacing: 2px;
    font-style: normal !important;
}

.single-option-radio {
    background: white;
}
.js-qty {
    display: block;
}

// add to cart
.radio-wrapper {
    display: inline-block;
    vertical-align: top;

    .ProdQuantityy {
        //font-family: 'Campton' , Helvetica; font-size: 13px; text-align: center; font-weight: 600; color: #aaa; font-style: normal;
    }
    .single-option-radio {
        margin: 0;
        padding: 0;
    }
    .single-option-radio label {
        padding: 0 30px;
        height: 45px;
        line-height: 45px;
        border-radius: 100px;
        background: white !important;
        border: 1px solid #eee;
        color: black;
        border-radius: 0;
        margin: 0px;
        //font-family: 'Campton', Helvetica;
        font-size: 11px;
        text-transform: uppercase;
        @include breakpoint(xs) {
            margin: 5px 5px 5px 0;
        }
    }
}

.product--wrapper {
    margin: 0;
}

.grid-product__sold-out {
    font-size: 9px;
    line-height: 10px;
    opacity: 0.5;
    width: 50px;
    height: 50px;
    padding: 15px 0;
    border: 0;
    z-index: 3;

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

.product-single__quantity {
    float: left;
}

.js-qty input[type="text"],
.ajaxcart__qty input[type="text"] {
    font-size: 12px;
    padding: 15px 25px;
    font-family: "GothamMedium", Helvetica;
    font-style: normal;
}

.product-single__add-to-cart {
    float: left;
    display: block;
    vertical-align: top;
    max-width: 320px;
    min-width: 220px;
    margin-top: 0px;
    .CustomAddToCart {
        //font-family: 'Campton' , Helvetica;
        background: #ebebeb;
        color: black;
        padding: 0px 30px;
        font-weight: 600;
        height: 45px;
        line-height: 45px;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        &:hover {
            background: #eee;
        }
    }
}

.addtocartbtn {
    //font-family: 'Campton' , Helvetica;
    color: white;
    padding: 0px 60px !important;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    &:hover {
        background: black;
    }
}

.how-to-enjoy {
    position: relative;
    display: block;
    margin-top: 90px;
    .how-to-left {
        float: left;
        width: 50%;
        padding-top: 50%;
        @include breakpoint(xs) {
            width: 100%;
            float: none;
            padding-top: 0;
        }
    }
    .how-to-right {
        float: left;
        width: 50%;
        position: relative;
        padding-top: 50%;
        background: #f4f9fd;
        h1 {
            text-transform: uppercase;
            padding-top: 15px;
            color: $dark-purple;
        }
        .vertical {
            padding: 30px 10%;
            width: 100%;
            @include breakpoint(xs) {
                padding: 30px;
            }
        }
        @include breakpoint(xs) {
            width: 100%;
            float: none;
        }
    }
}

// goes with
.goes-with {
    position: relative;
    display: block;
    margin-top: 90px;

    .goes-with-left {
        float: left;
        width: 50%;
        position: relative;
        padding-top: 50%;
        background: white;
        h1 {
            text-transform: uppercase;
            padding-top: 15px;
            color: $dark-purple;
        }
        .vertical {
            padding: 30px 20% 30px 10%;
            width: 100%;
            @include breakpoint(xs) {
                padding: 30px;
            }
        }
        @include breakpoint(xs) {
            width: 100%;
            float: none;
        }
    }
    .goes-with-right {
        float: left;
        width: 50%;
        position: relative;
        padding-top: 50%;
        .product1 {
            float: left;
            width: 50%;
        }
        .product2 {
            float: left;
            width: 50%;
        }
    }
}

/* Tabs */
.tabs {
    width: 100%;
    padding-right: 30px;
}

#tabs-content {
    font-size: 14px;
    color: #666;
}

ul#tabs-nav {
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #eee;
    overflow: auto;
}
ul#tabs-nav li {
    float: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 0;
}
ul#tabs-nav li:hover,
ul#tabs-nav li.active {
    color: black;
    border-bottom: 2px solid black;
    a {
        color: black;
    }
}
#tabs-nav li a {
    text-decoration: none;
    color: #666;
}
.tab-content {
    background-color: #fff;
    padding: 15px 0;
}

// ______________________________________________________________
//
//
//
//
//
//     ADD TO CART / DRAWER  CART AJAX
//
//
//
//
// ______________________________________________________________

.drawer__header {
    padding: 10px 0 5px;
}
.cart-titles-main {
    vertical-align: top;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 22px;
    //margin-left: 10px;
    opacity: 0.5;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
a.cart-link {
    color: #666 !important;
}
.cart-link__bubble--visible {
    top: 0px;
    right: -4px;
    @include breakpoint(xs) {
        top: -5px;
        right: -4px;
    }
}

.ajax-logo {
    display: inline-block;
}

.ajaxcart__subtotal {
    font-size: 14px;
}
.ajaxcart__product-name {
    font-size: 18px;
    //text-transform: uppercase;
}
.ajaxcart__product-name + .ajaxcart__product-meta {
    font-size: 14px;
    opacity: 0.5;
}

.drawer__close-button {
    font-size: 24px;
    color: black;
    font-weight: 100;
}

#CartDrawer {
    background: white;
    border-left: 1px solid #eee;
}
.drawer__header {
    border-bottom: 1px solid #eee;
}

.ajaxcart__footer {
    border-top: 1px solid #eee;
}

.ajaxcart__row {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.ajaxcart__product-name {
    font-style: normal;
}

.ajaxcart__qty {
    button {
        border: 0;
        background: #eee;
    }
    input {
        border: 0;
        background: #eee;
    }
}
.ajaxcart__qty input[type="text"] {
    border: 0 !important;
    //background: #eee !important;
    margin: 0 1px;
}

// ______________________________________________________________
//
//
//
//
//
//      CART PAGE
//
//
//
//
// ______________________________________________________________

.cart__row:first-child {
    border-bottom: 1px solid #eee !important;
}
.cart__row--last {
    border-top: 1px solid #eee;
}

.cart__product-name {
    font-size: 32px;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
}

.cart__checkout {
    background: black;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
}
.update-cart {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
}

// ______________________________________________________________
//
//
//
//
//
//      ARTICLE / BLOG PAGES JOURNAL
//
//
//
//
//
// ______________________________________________________________

.blog-featured-img {
    width: 100%;
    height: 0vh;
    /*   min-height: 620px; */
    display: block;
    position: relative;
    h1 {
        color: white;
        font-size: 48px;
        font-weight: 100;
        line-height: 48px;
        text-transform: uppercase;
    }
    @include breakpoint(xs) {
        //  height: 400px;
    }
}

.blog-bar {
    position: relative;
    width: 100%;
    height: 117px;
    display: block;
    background: #702082;
    color: white;
}

.viola-blog-layout {
    .blog-wrap {
        padding: 60px 15px;
        max-width: 1200px;
        margin: 0 auto;
        @include breakpoint(xs) {
            padding: 15px;
        }
    }
    .img-area {
        float: left;
        width: 40%;
        @include breakpoint(xs) {
            width: 100%;
        }
    }
    .copy-area {
        float: left;
        width: 60%;
        padding: 0 5%;
        @include breakpoint(xs) {
            width: 100%;
            padding: 30px;
        }
        h1 {
            color: $dark-purple;
        }
        h2 {
            color: $dark-purple;
        }
        p {
            color: $dark-purple;
        }
    }

    .read-more {
        width: 160px;
        text-align: center;
        display: block;
        height: 45px;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: white;

        background: $dark-purple;
        font-weight: 600;
        line-height: 45px;
        margin: 30px 0 30px;
        &:hover {
            background: $dark-purple;
            cursor: pointer;
        }
    }
}

a.article__heading-link {
    text-transform: none;
    letter-spacing: 0;
}
.date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
    margin-bottom: 15px;
    opacity: 0.5;
}
.text-link {
    font-weight: 600;
    font-size: 18px;
}

ul.tags {
    display: none;
}

.article-wrap {
    padding: 160px 15px 0;
    position: relative;
    display: block;
    @include breakpoint(xs) {
        padding: 130px 30px 0;
    }
}

#shopify-section-article-template {
    .hr--small {
        opacity: 0.2;
    }
}

.pagination {
    padding-bottom: 60px;
    .page {
        padding: 10px;
        margin: 0px;
    }
    .page.current {
        border: 1px solid #eee;
        padding: 10px;
    }
}

// ______________________________________________________________
//
//
//
//
//
//      INSTA
//
//
//
//
// ______________________________________________________________

.follow-btn {
    display: inline-block;
    height: 50px;
    line-height: 54px;
    padding: 0 30px;
    margin-bottom: 10px;
    span {
        font-size: 14px;
        font-weight: 600;
        color: black;
        position: relative;
        top: -5px;
        margin-left: 20px;
    }
}

.insta-feed {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
    background: white;
    .insta-meta {
        display: none;
        background: tan;

        padding-top: 60px;
        padding-bottom: 40px;
        h6 {
            font-size: 12px;
            margin-bottom: 15px;
            color: black;
        }
    }
    .insta-imgs {
        position: relative;
        a {
            position: relative;
            float: left;
            width: 16.6666666667%;
            padding-top: 16.6666666667%;
            @include breakpoint(xs) {
                width: 50%;
                margin: 0;
                padding-top: 50%;
            }
            .quick-overlay {
                @include ease(0.4s);
                opacity: 0;
                visibility: hidden;

                font-weight: 600;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(black, 0.75);
                z-index: 2;
            }
            &:hover {
                .quick-overlay {
                    opacity: 1;
                    visibility: visible;
                }
            }
        }
    }
}

// ================================================== //
//
//
//
//
//
//
//
//       AGE GATE SITE AGE CONFIRM
//
//
//
//
//
//
//
// ================================================== //

.site-overlay-age .messsage {
    position: fixed;
    bottom: 0;
    text-align: center;
    justify-self: center;
    align-self: center;
    padding: 0 11%;
    color: #fff;
    font-family: "ObjectSans-Regular";
}
.site-overlay-age {
    background: url("//violabrands.com/cdn/shop/t/37/assets/agebg.jpg?v=53426432690604429941708434496");
    //background: $dark-purple;
    background-size: cover;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 999999999;
    opacity: 1;
    visibility: visible;
    @include ease(1s);

    .age-consent {
        position: absolute;
        //margin: 15px;
        padding: 0 30px 30px;
        background: white;
        text-align: center;
        width: 421px;
        min-width: 300px !important;
        margin-top: 100px;
        opacity: 0;
        visibility: hidden;
        @include ease(0.6s);
        //height: 30%;
        h5 {
            color: $dark-purple;
            font-size: 12px;
            margin: 0;
            padding: 0;
        }
        h6 {
            color: $dark-purple;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 0px;
            margin-bottom: 30px;
        }
        .age-btn {
            display: inline-block;
            padding: 0px 40px;
            background: $dark-purple;
            color: white;
            height: 40px;
            line-height: 40px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            font-weight: 700;
            margin: 0 3px;
            @include ease(0.2s);
            &:hover {
                cursor: pointer;
                opacity: 1;
                background: $light-purple;
            }
        }

        .no-ans {
            position: relative;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            @include ease(0.6s);
        }
        .yes-ans {
            position: relative;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            @include ease(0.6s);
        }
        &.no-active .no-ans {
            max-height: 100px;
            opacity: 1;
        }
        .hide-for-ans {
            max-height: 100px;
            overflow: hidden;
            opacity: 1;
            @include ease(0.6s);
        }
        &.no-active .hide-for-ans {
            max-height: 0;
            opacity: 0;
        }
        &.yes-active .hide-for-ans {
            max-height: 0;
            opacity: 0;
        }
        &.yes-active .yes-ans {
            max-height: 100px;
            opacity: 1;
        }
    }
    &.hide-now {
        opacity: 0;
        visibility: hidden;
    }
}
body.ready1 .site-overlay-age .age-consent {
    margin-top: -20px;
    opacity: 1;
    visibility: visible;
}

.site-overlay-age.visited {
    display: none;
}

.landing-social {
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
    .social-icons .icon {
        color: white !important;
        width: 18px !important;
        height: 18px !important;
        margin: 0 5px;
    }
}

// ================================================== //
//
//
//
//
//
//
//
//        FOOTER
//
//
//
//
//
//
//
// ================================================== //

.rev-footer {
    position: relative;
    display: block;
    background: var(--brand-purple);
    //border-top: 1px solid #868076;
    padding: 60px 30px 120px;
    clear: both;
    color: white;
    p.tag {
        display: block;
        margin-top: 20px;
        margin-right: 20px;
        font-size: 16px;
        font-weight: 600;
        color: white;
        text-transform: none;
    }
    .footer-box:nth-child(1) {
        margin-right: 60px;
        @include breakpoint(xs) {
            margin-right: 0;
        }
    }
    .footer-box {
        width: 20%;
        padding: 1%;
        display: inline-block;
        vertical-align: top;

        @include breakpoint(xs) {
            width: 100%;
            padding-right: 0;
            padding-bottom: 40px;
        }
        &.box1 {
            width: 30%;
            padding: 2% 4%;
            @include breakpoint(xs) {
                width: 100%;
                padding: 0 0 40px 0;
            }
        }
        ul {
            padding-left: 18%;
            margin: 0;
            @include breakpoint(xs) {
                padding: 8px 0 0 0;
            }
            li {
                margin: 0;
                list-style-type: none;
            }
        }
    }
    h1 {
        font-family: ObjectSans-Medium;
        font-size: 14px;
        color: white;
        text-transform: uppercase;
        margin-bottom: 10px;
        padding-bottom: 10px;
        letter-spacing: 4px;
        //border-bottom: 1px solid #333;
        font-weight: 600;
    }
    a {
        font-family: ObjectSans-Regular;
        color: white;
        opacity: 1;
        font-size: 12px;
        letter-spacing: 4px;
        font-weight: 600;
        text-transform: uppercase;
        &:hover {
            color: #ccc;
            opacity: 1;
        }
    }
    .social-icons {
        text-align: left;
        margin-top: 10px;
        li {
            display: inline-block;
            list-style-type: none;
            a {
                font-size: 14px;
            }
        }
    }
}

// .site-footer {
//   position: relative;
//   display: block;
//   background: #222;
//   a {
//     color: white;
//   }
// }

.footer-forms input {
    background: var(--brand-purple);
    border-bottom: 1px solid white;
    font-size: 10px;
    display: block;
    width: 100%;
    height: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    color: white !important;
    &::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: white;
    }
    &::-moz-placeholder {
        /* Firefox 19+ */
        color: white;
    }
    &:-ms-input-placeholder {
        /* IE 10+ */
        color: white;
    }
    &:-moz-placeholder {
        /* Firefox 18- */
        color: white;
    }
}

.footer-forms button {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: black;
    color: white;
    &:hover {
        opacity: 0.8;
    }
}

.payment-icons {
    display: none;
}

.payment-icons .icon {
    max-width: 20px !important;
}
.copyright {
    background: var(--brand-purple);
    text-align: center;
    font-size: 16px;
    p {
        margin: 0;
        padding: 5px 0;
        color: white;
        font-size: 16px;
    }
    a {
        color: white;
        font-size: 16px;
    }
    svg {
        width: 30px;
        opacity: 0.5;
    }
}
@media (max-width: 767px) {
 
    .rev-footer .social-icons {
        text-align: center !important;
    }

    .footer-box {
        display: grid !important;
        justify-content: center !important;
    }
    .rev-footer img {
        margin-left: 0px !important;
        padding: 0px;
        width: 70px !important;
    }

    .rev-footer {
        padding: 60px 30px 30px !important;
    }

    #mc_embed_signup .clear,
    #mc_embed_signup .mc-field-group {
        text-align: center !important;
    }
}

.rev-footer .footer-box ul li {
  margin: 18px 0 !important;
  list-style-type: none;
}

.storerocket-show-all-results-link {
  color: #fff !important;
}