﻿:root {
    --primary-purple: #613393;
    --primary-purple-accent: #500f96;
    --primary-orange: #EE8922;
    --primary-orange-accent: #e67400;
    --primary-white: #ffffff;
    --primary-white-accent: #f5f5f5;
    --primary-dark: #343a40;
    --primary-yellow: #F5B333;
    --primary-gray: #F1F3F4;
    --primary-blue: #5E85C4;
    --dark-default: #24272A;
    --light-gray: #545454;
    --border-gray: #DCDCDC;
    --transparent: rgba(0,0,0,0);
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #DC2626;
    --light: #f8f9fa;
    --blue: #007bff;
    --indigo: #6610f2;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #EE8922;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --black: #000000;
    --tangy-apricot-yellow: #FFA300;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: 'Nunito', "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-font-sans-serif: var(--font-family-sans-serif) !important;
}
/* All forms */
::-webkit-input-placeholder { /* Edge */
    color: var(--dark-default) !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--dark-default) !important;
}

::placeholder {
    color: var(--dark-default) !important;
}

.form-control:focus,
.form-control:active,
.form-select:focus,
.form-select:active,
input:focus,
input:active {
    outline: 2px solid var(--primary-blue);
    box-shadow: inset 0 1px 1px rgba(94,133,196,.075), 0 0 4px rgba(94,133,196, .35);
}

.font-w100 {
    font-weight: 100;
}

.font-w300 {
    font-weight: 300;
}

.font-w400 {
    font-weight: 400;
}

.font-w500 {
    font-weight: 500;
}

.font-w600 {
    font-weight: 600;
}

.font-w700 {
    font-weight: 700;
}

.font-w800 {
    font-weight: 800;
}

.font-w900 {
    font-weight: 900;
}

.full-width {
    width: 100%;
}

a {
    color: var(--juicy-grape-purple);
}

    a:hover,
    a:active {
        color: var(--juicy-grape-purple);
    }

.nav-link,
.nav-link:visited {
    color: var(--black);
    background-color: var(--transparent);
    font-weight: 700;
}

    .nav-link:hover {
        color: var(--primary-orange);
    }

    .nav-link:active,
    .nav-link:focus {
        color: var(--primary-purple);
    }

.nav-link--white,
.nav-link--white:visited {
    color: var(--primary-white) !important;
    background-color: var(--transparent);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
    padding: 5px 0;
}

    .nav-link--white:hover,
    .nav-link--white:active,
    .nav-link--white:focus {
        color: var(--juicy-grape-purple);
    }
/* Buttons */
.btn-primary {
    min-width: 175px;
    background-color: var(--juicy-grape-purple) !important;
    border: 2px solid var(--juicy-grape-purple) !important;
    border-color: var(--juicy-grape-purple) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 99px !important;
    text-transform: uppercase;
    padding: 12px 30px !important;
    transition: .5s !important;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--primary-purple-accent) !important;
        border-color: var(--primary-purple-accent) !important;
        -webkit-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        -moz-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
    }

.btn-primary--white {
    color: var(--primary-purple) !important;
    background-color: var(--primary-white) !important;
    border-color: var(--primary-white) !important;
}

    .btn-primary--white:hover,
    .btn-primary--white:focus {
        color: var(--black) !important;
        background-color: var(--primary-white-accent) !important;
        border-color: var(--primary-white-accent) !important;
    }

.btn-primary--orange {
    color: var(--primary-white) !important;
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

    .btn-primary--orange:hover,
    .btn-primary--orange:focus {
        color: var(--primary-white);
        background-color: var(--primary-orange-accent);
        border-color: var(--primary-orange-accent);
    }

.btn-transparent,
.btn-transparent--orange {
    background-color: var(--transparent);
    border-color: var(--primary-white);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

    .btn-transparent:hover,
    .btn-transparent:focus {
        background-color: var(--primary-purple-accent);
        border-color: var(--primary-white);
        color: var(--primary-white);
    }

    .btn-transparent--orange:hover,
    .btn-transparent--orange:focus {
        background-color: var(--primary-orange-accent);
        border-color: var(--primary-white);
        color: var(--primary-white);
    }

.btn-primary--custom {
    color: var(--primary-white);
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

    .btn-primary--custom:hover,
    .btn-primary--custom:focus {
        color: var(--primary-white);
        background-color: var(--primary-purple);
        border-color: var(--primary-purple);
    }

h1 {
    /*font-size: 36px;
    font-weight: 800;
    line-height: 43px;
    color: var(--black);*/
    /* H1 */
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900!important;
    font-size: 70px!important;
    line-height: 75px!important;
    color: var(--black)!important;
}

h2 {
    /*font-size: 36px;
    line-height: 43px;
    color: var(--primary-purple);*/
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900!important;
    font-size: 50px!important;
    line-height: 60px!important;
    color: var(--black)!important;
}

h3 {
    /*font-size: 28px;
    line-height: 1.25em;*/
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900!important;
    font-size: 30px!important;
    line-height: 41px!important;
    color: var(--black)!important;
}

h4 {
    font-size: 26px !important;
    line-height: 1.25em !important;
}

h5 {
    font-size: 24px;
    line-height: 1.25em;
    color: var(--primary-dark);
}

h6 {
    font-size: 22px;
    line-height: 1.25em;
}

p {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--black);
}

ul {
    padding-left: .8rem;
}

    ul li {
        font-size: 18px;
        line-height: 1.25em;
        font-weight: 400;
        color: var(--dark-default);
    }

.h1-extra--lg {
    font-size: 72px;
    line-height: 86px;
    font-weight: 800;
    letter-spacing: 1px;
}

.h1-extra--md {
    font-size: 36px;
    line-height: 43px;
    color: var(--primary-purple);
    font-weight: 800;
}

.h2-extra--lg {
    font-size: 50px;
    line-height: 60px;
    color: var(--black);
}

.h3-extra--lg {
    font-size: 48px;
    line-height: 57px;
}

.h4-extra--lg {
    font-size: 36px;
    line-height: 45px;
}

.h5-extra-lg {
    font-size: 30px;
    line-height: 36px;
    color: var(--primary-dark);
}

.h6-extra-lg {
    font-size: 26px;
    line-height: 34px;
}

.p-extra--lg {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--primary-dark);
}

.li-extra--lg {
    font-size: 20px;
    line-height: 44px;
    font-weight: 600;
    color: var(--light-gray);
}

.hr-primary--purple {
    width: 100px;
    min-height: 4px;
    margin: 2.5rem 0;
    background-color: var(--primary-purple);
    opacity: 1;
}

.hr-primary--orange {
    width: 100px;
    min-height: 4px;
    margin: 2.5rem 0;
    background-color: var(--primary-yellow);
    opacity: 1;
}
/* Default Forms "ph-form" class */
.ph-form {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    padding: 80px;
}

    .ph-form .form-group {
        margin: 24px 0;
    }

        .ph-form .form-group input,
        .ph-form .form-group select {
            border-radius: 60px;
            height: 48px;
            padding-left: 25px;
            border: 1px solid var(--border-gray);
            color: var(--dark-default);
        }

        .ph-form .form-group textarea {
            border-radius: 24px;
            padding-left: 25px;
            border: 1px solid var(--border-gray);
            color: var(--primary-purple);
        }

.navbar-toggler {
    display: none;
}

.accent-text--primary-yellow {
    color: var(--primary-yellow);
}

/* Breakpoints */
@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
    .ph-top-menu {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .navbar-toggler {
        display: inline-block;
        /*margin-top: 15px;*/
    }

    .ph-shopping-cart {
        padding: 0px !important;
    }
}

.ph-breadcrumbs .breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-purple);
    transition: .5s;
}

    .ph-breadcrumbs .breadcrumb .breadcrumb-item a {
        font-size: 14px;
        font-weight: 400;
        color: var(--black);
        text-decoration: none;
    }

        .ph-breadcrumbs .breadcrumb .breadcrumb-item a:hover {
            color: var(--primary-orange);
        }

.address-box {
    list-style: none;
}

.message-error ul {
    list-style: none;
}

.newsletter-validation {
    margin-left: 0.5rem;
    color: white;
    font-size: 20px;
    font-weight: 400;
}

.newsletter-result {
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.newsletter-subscribe {
    width: 100%;
}

.custom-controls-stacked {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .next-level {
    display: none;
}

.display-none {
    display: none;
}

.ui-dialog {
    position: fixed !important;
    /*width: 450px !important;*/
    max-width: 100%;
    background: #fff;
    box-shadow: 0 1px 15px rgba(0,0,0,0.3);
    z-index: 1080;
}

.ui-dialog-titlebar {
    padding: 13px;
    background: #57b568;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
}

    .ui-dialog-titlebar button {
        position: absolute;
        top: 0;
        right: 0;
        margin: 8px;
        border: 0;
        width: 24px;
        height: 24px;
        overflow: hidden;
        background: none;
        font-size: 0;
        opacity: 0.7;
    }

        .ui-dialog-titlebar button::after {
            content: '\e901';
            position: absolute;
            top: 50%;
            left: 50%;
            font-family: prisma;
            font-size: 10px;
            color: #fff;
            -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
        }

        .ui-dialog-titlebar button:hover {
            opacity: 0.9;
        }

.ui-dialog-content {
    height: auto !important;
    padding: 10px;
    font-size: 13px;
    color: #666;
}

    .ui-dialog-content .page {
        min-height: 0;
    }

    .ui-dialog-content .page-title {
        margin: 5px 0;
    }

        .ui-dialog-content .page-title h1 {
            font-size: 18px;
        }

    .ui-dialog-content .tooltip {
        margin: 5px 0;
        line-height: 20px;
        text-align: center;
        color: #888;
    }

    .ui-dialog-content button {
        display: block;
        margin: 10px auto 0;
    }


/* Breakpoints */
@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 768px) {
    h1, .h1-extra--lg {
        font-size: 40px;
        line-height: 1.25em;
    }

    .h1-extra--md {
        font-size: 32px;
        line-height: 1.25em;
    }

    h2, .h2-extra--lg {
        font-size: 24px;
        line-height: 1.25em;
    }

    h3, .h3-extra--lg {
        font-size: 32px;
        line-height: 1.25em;
    }

    h4, .h4-extra--lg {
        font-size: 26px;
        line-height: 1.25em;
    }

    h5, .h5-extra--lg {
        font-size: 24px;
        line-height: 1.25em;
    }

    h6, .h6-extra--lg {
        font-size: 22px;
        line-height: 1.25em;
    }

    p, .p-extra--lg {
        font-size: 16px;
        line-height: 1.25em;
    }

    ul li, ul .li-extra--lg {
        font-size: 16px;
        line-height: 2.5em;
    }

    .btn-primary {
        font-size: 13px;
        line-height: 1.25em;
    }

    .hr-primary--purple {
        min-height: 2px;
        margin: 1.5rem 0;
    }

    .hr-primary--orange {
        min-height: 4px;
        margin: 1.5rem 0;
    }
}

@media only screen and (max-width: 767px) {
    .reverse-cols-sm {
        flex-direction: column-reverse;
    }

    .hide-item-sm {
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown:hover .next-level {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
}

.hr-md-size {
    width: 308px !important;
    /*margin:1.5rem !important;*/
}

/* header */
/* Top Navigation */
Header {
    background: white;
    position: absolute;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 0;
    padding-right: 5%;
    padding-left: 5%;
    /*padding-bottom: 20px;*/
}

.ph-header-container {
    padding: 0px 0px 180px 0px;
}

.ph-header .ph-top-nav li,
.ph-header .ph-top-nav li a {
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.ph-header .ph-top-nav li {
    /*margin: 0 20px;*/
    color: var(--dark-default);
}

    .ph-header .ph-top-nav li a {
        padding: 5px;
    }

    .ph-header .ph-top-nav li:first-child {
        margin-left: 0;
    }

    .ph-header .ph-top-nav li:last-child {
        margin-right: 0;
    }

.ph-header .ph-top-nav .ph-navbar-toggler {
    border: 0;
    outline: 0;
    box-shadow: none;
    padding: 5px;
}

    .ph-header .ph-top-nav .ph-navbar-toggler .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.ph-header .ph-top-nav .ph-navbar-nav .deal-info-item {
    display: none;
}

.login-or-logout-font {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 21.6px;
    text-align: left;
    color: #5F249F !important;
}

.flex-basis-100 {
    flex-basis: 100%;
}

.flex-wrap-nowrap {
    flex-wrap: nowrap;
}

.shoppingcart-icon {
    margin-right: 10px;
}

.custom-width-70px {
    width: 70px;
}

.ph-mobile-top-menu, .ph-mobile-show-item {
    display: none;
}

@media (max-width: 767px) {
    .ph-mobile-show-item {
        display: block;
    }

    .ph-mobile-top-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #F1F2F2;
    }

    .ph-mobile-hide-item {
        display: none !important;
    }

    .ph-mobile-top-menu li {
        border: none !important;
    }

    Header {
        padding-left: 0;
        padding-right: 0;
    }

    .login-or-logout-font {
        font-size: 16px !important;
        line-height: 19.2px !important;
        padding: 8px;
    }

    .ph-moblie-nav-link {
        padding: 8px !important;
    }

    #navbarCollapse ul {
        text-align: center;
    }
    .ph-header .ph-top-nav li, .ph-header .ph-top-nav li a {
        text-align: left;
    }

    #navbarCollapse li {
/*        border-bottom: none !important;
*/    }

    .mobile-justify-content-center {
        justify-content: center;
    }

    .bg-F1F2F2 {
        background: #F1F2F2;
    }

    .ph-top-menu {
        padding: 0;
        padding-bottom: 0px !important;
        /*padding-top: 15px !important;*/
    }

    .mobile-padding-5 {
        padding-left: 5%;
        padding-right: 5%;
    }

    .custom-height {
        height: 120px;
    }

    .ph-top-nav {
        padding-bottom: 0;
        padding-top: 0;
    }

    .navbar-nav {
        margin-bottom: 0 !important;
    }

    .ph-mobile-main-menu {
        display: flex !important;
    }

    .ph-header-container {
        padding: 0px 0px 180px 0px;
    }

    .ph-mobile-nav {
/*        padding-bottom: 40px;
*/    }
}

@media (min-width:768px) and (max-width:1199px) {
    .ph-header-container {
        padding: 0 0px 180px 0px;
    }
}

/* Header Content */
.ph-header .ph-main-menu {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 2.5rem 0;
/*    position: absolute;
*/    width: 100%;
    left: 0;
    right: 0;
}

    .ph-header .ph-main-menu .ph-logo .site-logo {
        max-width: 195px;
    }
    /* Main Menu */
    .ph-header .ph-main-menu .ph-main-nav {
        width: 100%;
        display: flex;
        justify-content: right;
        padding-top: 24px;
        padding-bottom: 24px;
    }

        .ph-header .ph-main-menu .ph-main-nav li {
            font-size: 18px;
            /*padding: 0 5px;*/
            color: var(--dark-default);
        }

    .ph-header .ph-main-menu .ph-shopping-cart {
        padding: 25px 0 0 0;
    }

        .ph-header .ph-main-menu .ph-shopping-cart img:hover {
            opacity: .75;
        }

.ph-header .ph-main-nav li a[href*="/sample-request"],
.ph-header .ph-top-nav li a[href*="/sample-request"] {
    width: 251px;
    height: 56px;
    padding: 16px 30px;
    border-radius: 99px;
    background: var(--juicy-grape-purple);
    margin: 0 auto;
}

    .ph-header .ph-main-nav li a[href*="/sample-request"] div,
    .ph-header .ph-top-nav li a[href*="/sample-request"] div {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 800;
        line-height: 24px;
    }

.padding-l-0 {
    padding-left: 0;
}
/* Dispay on mobile */
.ph-header .ph-top-nav .ph-mobile-nav {
    display: none;
}
/*
                                                .ph-header .ph-top-nav .ph-navbar-collapse {
                                                  display: flex;
                                                  flex-direction: column-reverse;
                                                }
                                                */
.ph-header .ph-top-nav .ph-mobile-shopping-cart {
    display: none;
    padding: 5px;
    margin-top: -5px;
}

    .ph-header .ph-top-nav .ph-mobile-shopping-cart img {
        width: 22px;
        height: 22px;
    }
/* Breakpoints */
@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
    .ph-header .ph-top-nav li {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 992px) {
    .ph-header-container {
        max-width: 100%;
    }

    .ph-header .ph-top-nav li {
        margin: 0 1px;
    }

    .ph-header .ph-top-nav .email-info-item span,
    .ph-header .ph-top-nav .email-info-item a,
    .ph-header .ph-top-nav .deal-info-item span,
    .ph-header .ph-top-nav .deal-info-item a {
        font-size: 12px;
        line-height: 1.25em;
    }

    .ph-header .ph-top-nav .deal-info-item {
        display: none;
    }
    /*
                                                  .ph-header .ph-top-nav .ph-navbar-nav {
                                                    display: none;
                                                  }
                                                  */
    .ph-header .ph-top-nav .ph-nav-pills {
        /* width: 100%; */
        justify-content: center;
    }

    .ph-header .ph-main-menu .nav-pills .nav-link {
        font-size: 16px;
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
    /*
                                                  .ph-header .ph-top-nav .ph-navbar-nav {
                                                    display: flex;
                                                    flex-direction: column-reverse;
                                                  }
                                                  */
}

@media only screen and (max-width: 767px) {
    .ph-header-container {
        border-bottom: 1px solid #E9E9E9;
    }

    .ph-header .ph-top-nav {
        /*justify-content: flex-end;*/
    }

        .ph-header .ph-top-nav .ph-navbar-collapse.collapsing,
        .ph-header .ph-top-nav .ph-navbar-collapse.show {
            display: flex;
            flex-direction: column-reverse;
        }

        .ph-header .ph-top-nav .ph-mobile-nav {
            display: block;
            width: 100%;
            /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
        }

    .ph-header .ph-main-menu .ph-main-nav,
    .ph-header .ph-main-menu .ph-shopping-cart {
        display: none;
    }

    .ph-header .ph-top-nav .ph-mobile-shopping-cart {
        display: block;
    }

    .ph-header .ph-main-menu {
        justify-content: center;
    }

    .ph-header .ph-top-nav .ph-nav-pills {
        display: block;
        width: 100%;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
    }

    .ph-header .ph-top-nav .ph-navbar-nav {
        display: block;
        width: 100%;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
    }

    .ph-header .ph-top-nav .email-info-item span,
    .ph-header .ph-top-nav .email-info-item a,
    .ph-header .ph-top-nav .deal-info-item span,
    .ph-header .ph-top-nav .deal-info-item a {
        font-size: 14px;
        padding: 5px;
    }

    .ph-header .ph-top-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    /*
                                                  .ph-header .ph-top-nav,
                                                  .ph-header .ph-main-menu .ph-main-nav,
                                                  .ph-header .ph-main-menu .ph-shopping-cart {
                                                    display: none;
                                                  }
                                                  */
    .ph-header .ph-main-menu .ph-logo {
        display: flex;
        width: 100%;
        justify-content: center;
    }
}
/* Display the deal-info on the home page */
#PHHomePage .ph-header .ph-top-nav .ph-navbar-nav .deal-info-item {
    display: block;
}

/** footer */
/* Footer */
.ph-footer {
    background-color: #007B7B;
    /* margin-top: 150px;*/
    padding: 100px 0;
}

.ph-footer-shape {
    position: relative;
}

    .ph-footer-shape .ph-dot-circle::before {
        position: absolute;
        content: "";
        background-repeat: no-repeat;
        background-size: contain;
        width: 740px;
        height: 400px;
        top: -380px;
        right: 45%;
        opacity: .5;
        z-index: -1;
    }

.ph-footer .ph-footer-col .ph-footer-col-content {
    border-right: 5px solid rgba(161, 162, 177, 0.2);
    height: 100%;
    margin-right: 12%;
}

.ph-footer .ph-footer-col .newsletter-col {
    border-right: none;
}

/*.ph-footer .ph-footer-logo {
    max-width: 166px;
}*/

.ph-footer .ph-footer-text {
    max-width: 300px;
    font-size: 16px;
    line-height: 24px;
    margin: 1.5rem 0;
}

.ph-footer .ph-social-icon {
    width: 50px;
    transition: .5s;
}

    .ph-footer .ph-social-icon:hover {
        opacity: .75;
    }

.ph-footer .ph-social-list-icons {
    margin: 0;
    padding: 0;
    list-style: none;
/*    padding-top: 2rem;*/
}

    .ph-footer .ph-social-list-icons li {
        display: inline-block;
        margin: 10px;
    }

        .ph-footer .ph-social-list-icons li:first-child {
            margin-left: 0;
        }

        .ph-footer .ph-social-list-icons li:last-child {
            margin-right: 0;
        }

.ph-footer .ph-footer-menu-list {
    list-style: none;
    margin: 1.5rem 0 0 0;
    padding: 0;
}

    .ph-footer .ph-footer-menu-list li {
        line-height: 32px;
    }
/* Form */
.ph-subscription-form .form-control {
    padding: 16px 32px;
    height: 50px;
    color: var(--light-gray);
    border: none;
    border-radius: 99px;
    color: var(--primary-purple);
}

.ph-subscription-form .form-control-btn {
    min-width: 122px;
    background: #6CBE45;
    color: #fff;
    border-color: #6CBE45;
    border: none;
    font-family: 'Lato';
    font-size: 16px;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    transition: .5s;
    margin-left: -50px;
}

    .ph-subscription-form .form-control-btn:hover,
    .ph-subscription-form .form-control-btn:focus {
/*        background-color: var(--primary-orange-accent);
        border-color: var(--primary-orange-accent);
        color: var(--black);
*/        -webkit-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        -moz-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
    }
/* Breakpoints */
@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1400px) {
    .ph-footer-shape .ph-dot-circle::before {
        width: 555px;
        height: 300px;
        top: -325px;
        right: 45%;
    }
}

@media only screen and (max-width: 1200px) {
    .ph-footer .ph-footer-col .ph-footer-col-content {
        border: none;
        margin: 0;
    }

    .ph-subscription-form {
        flex-direction: column;
    }

        .ph-subscription-form .form-control-btn {
            margin: 12px 0;
            padding: 14px 32px;
        }
}

@media only screen and (max-width: 992px) {
    .ph-footer .ph-social-icon {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 768px) {
    .ph-footer-shape .ph-dot-circle::before {
        width: 400px;
        height: 216px;
        top: -225px;
    }
}

@media only screen and (max-width: 576px) {
    .ph-footer {
        padding: 25px;
    }

        .ph-footer .ph-footer-col {
            width: 100%;
            text-align: center;
            padding: 50px 0;
            border-bottom: 5px solid rgba(161, 162, 177, 0.2);
        }

            .ph-footer .ph-footer-col:last-child {
                border-bottom: none;
            }

        .ph-footer .ph-footer-text {
            max-width: 100%;
        }

    .ph-subscription-form {
        flex-direction: column;
    }

        .ph-subscription-form .form-control-btn {
            margin: 12px 0;
            padding: 14px 32px;
        }

    .ph-footer .ph-footer-menu-list {
        padding: 0 50px;
    }
}

.form-control-module {
    padding: 16px 32px;
    height: 50px;
    color: var(--light-gray);
    border: none;
    border-radius: 99px;
}

.form-control-btn {
    min-width: 122px;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    border-color: var(--primary-orange);
    border: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    transition: .5s;
    margin-left: -50px;
}

    .form-control-btn:hover,
    .form-control-btn:focus {
/*        background-color: var(--primary-orange-accent);
        border-color: var(--primary-orange-accent);
        color: var(--primary-white);
*/        -webkit-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        -moz-box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
        box-shadow: 0px 10px 25px 0px rgba(36,36,36,0.25);
    }

.ph-footer-shape .ph-dot-circle-new::before {
    position: absolute;
    content: "";
    background: url("/Themes/ThePouchHouse/Content/assets/images/AboutPage/dotCircle.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 740px;
    height: 400px;
    top: -380px;
    right: 45%;
    opacity: .5;
    z-index: -1;
}

/* Page Container */
.ph-page-container {
    margin-top: 35px;
}

.ph-image {
    max-width: 100%;
}

.ph-page-row {
    margin-top: 50px;
    padding-bottom: 100px;
}

    .ph-page-row:last-child {
        padding-bottom: 0;
    }

    .ph-page-row .ph-col-left {
        position: relative;
    }

        .ph-page-row .ph-col-left .content,
        .ph-page-row .ph-col-right .content {
            padding-right: 100px;
        }

        .ph-page-row .ph-col-left .content {
            padding-top: 100px;
        }

            .ph-page-row .ph-col-left .content h2,
            .ph-page-row .ph-col-right .content h2 {
                margin-bottom: 25px;
            }
/* Before, After vector shapes */
.ph-a-shape,
.ph-b-shape {
    position: relative;
}

    .ph-a-shape::after {
        position: absolute;
        content: "";
        background: url("/Themes/ThePouchHouse/Content/assets/images/HomePage/gradient-triangle.svg");
        background-repeat: no-repeat;
        bottom: -110px;
        left: -45px;
        width: 164px;
        height: 164px;
        z-index: 3;
    }

    .ph-b-shape::before {
        position: absolute;
        content: "";
        background: url("/Themes/ThePouchHouse/Content/assets/images/HomePage/gradient-circle.svg");
        background-repeat: no-repeat;
        top: -60px;
        right: -25px;
        width: 125px;
        height: 125px;
        z-index: -1;
    }

.ph-diamond-shape {
    width: 164px;
    height: 164px;
}
/* Breakpoints */
@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1400px) {
    /* Negative margins of the vector shapes */
    main {
        overflow-x: hidden;
    }

    .ph-page-row .ph-col-left .content,
    .ph-page-row .ph-col-right .content {
        padding-right: 25px;
    }
}

@media only screen and (max-width: 1200px) {
    .ph-diamond-shape {
        width: 100px;
        height: 100px;
    }

    .ph-a-shape::after {
        width: 100px;
        height: 100px;
        bottom: -40px;
    }

    .ph-b-shape::before {
        width: 100px;
        height: 100px;
        top: -35px;
    }
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 768px) {
    .ph-diamond-shape {
        width: 78px;
        height: 78px;
        margin-top: -50px;
    }

    .ph-a-shape::after {
        width: 78px;
        height: 78px;
        bottom: -25px;
        left: 0;
    }

    .ph-b-shape::before {
        width: 78px;
        height: 78px;
        top: -50px;
        right: 0;
    }

    .ph-page-row .ph-col-left .content {
        padding-top: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .ph-diamond-shape {
        display: none;
    }

    .ph-a-shape::before {
        position: absolute;
        content: "";
        background: url("/Themes/ThePouchHouse/Content/images/AboutPage/diamond.png");
        background-repeat: no-repeat;
        background-size: contain;
        top: -24px;
        right: -18px;
        width: 48px;
        height: 48px;
        z-index: -1;
    }

    .ph-page-row {
        padding-bottom: 50px;
    }

        .ph-page-row:last-child {
            padding-bottom: 100px;
        }

        .ph-page-row .ph-col-left .content,
        .ph-page-row .ph-col-right .content {
            padding: 55px 0 0 0;
        }

            .ph-page-row .ph-col-left .content h2,
            .ph-page-row .ph-col-right .content h2 {
                text-align: center;
                margin-bottom: 35px;
            }

            .ph-page-row .ph-col-left .content p,
            .ph-page-row .ph-col-right .content p {
                text-align: center;
            }

    .ph-b-shape::before {
        top: -38px;
        right: -22px;
    }
}
@media only screen and (max-width: 576px) {
    .ph-page-row .ph-col-left,
    .ph-page-row .ph-col-right {
        padding: 0 50px;
    }

        .ph-page-row .ph-col-left .content,
        .ph-page-row .ph-col-right .content {
            padding: 55px 5px 0 5px;
        }

    .ph-a-shape::before {
        right: 20px;
    }

    .ph-a-shape::after {
        bottom: -40px;
        left: 35px;
    }

    .ph-b-shape::before {
        width: 65px;
        height: 65px;
        top: -33px;
        right: 22px;
    }

    .ph-footer-shape .ph-dot-circle::before {
        width: 500px;
        height: 270px;
        right: 8%;
        opacity: .35;
    }
}

.eu-cookie-bar-notification {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: #005F9B;
    border-top: 1px solid #dfe1e2;
    z-index: 9999;
}

    .eu-cookie-bar-notification .ok-button {
        color: var(--primary-white);
        background-color: #007B7B;
        border-color: var(--primary-orange);
        border: 0;
        height: 38px;
        margin-right: 10px;
        padding: 0 10px 0 10px;
        border-radius: 4px;
        cursor: pointer;
    }

        .eu-cookie-bar-notification .ok-button:hover {
            background-color: #007B7B;
        }

    .eu-cookie-bar-notification .text {
        padding-bottom: 15px;
        color: var(--primary-white);
    }

    .eu-cookie-bar-notification .learn-more {
        color: white;
        text-decoration: none;
        cursor: pointer;
    }

@media only screen and (max-width: 767px) {
    .ph-header .ph-main-nav li a[href*="/sample-request"], .ph-header .ph-top-nav li a[href*="/sample-request"] {
        width: 222px;
        height: auto;
        color: black;
        padding: 5px !important;
        border-radius: unset;
        background: var(--transparent);
        margin: 0;
    }

        .ph-header .ph-main-nav li a[href*="/sample-request"] div, .ph-header .ph-top-nav li a[href*="/sample-request"] div {
            color: black;
            font-size: 14px;
            font-weight: 700;
        }

    .span-link-text:hover, .span-link-text:active, .span-link-text:focus {
        color: var(--juicy-grape-purple);
    }
}
