: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;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    /*Primary color*/
    --juicy-grape-purple: #005F9B;
    --sweet-dragon-fruit-pink: #D62598;
    --bold-blueberry-blue: #0047BB;
    /*Secondary color*/
    --electric-pear-green: #47D7AC;
    --tangy-apricot-yellow: #FFA300;
    /*Grayscale*/
    --almost-white: #F1F2F2;
    --light-gray-default: #DCDDDE;
    --medium-gray: #B1B3B6;
    --dark-gray: #4C4C4E;
    --black: #000000;
    --background-gradient: linear-gradient(180deg, #0047BB 0%, #685BC7 47.4%, #D62598 100%);
    --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);
}

/* 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(--juicy-grape-purple);
    }

    .nav-link:active,
    .nav-link:focus {
        color: var(--juicy-grape-purple);
    }

.nav-link--white,
.nav-link--white:visited {
    color: var(--primary-white);
    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);
    border: 2px solid var(--juicy-grape-purple);
    border-color: var(--juicy-grape-purple);
    font-size: 20px;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    padding: 12px 30px;
    transition: .5s;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: var(--primary-purple-accent);
        border-color: var(--primary-purple-accent);
        -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(--black);
    background-color: var(--primary-white);
    border-color: var(--primary-white);
}

    .btn-primary--white:hover,
    .btn-primary--white:focus {
        color: var(--black);
        background-color: var(--primary-white-accent);
        border-color: var(--primary-white-accent);
    }

.btn-primary--orange {
    color: var(--primary-white);
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

    .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;
    font-size: 70px;
    line-height: 75px;
    color: var(--black);
}

h2 {
    /*font-size: 36px;
    line-height: 43px;
    color: var(--primary-purple);*/
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 60px;
    color: var(--black);
}

h3 {
    /*font-size: 28px;
    line-height: 1.25em;*/
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 41px;
    color: var(--black);
}

h4 {
    font-size: 26px;
    line-height: 1.25em;
}

h5 {
    font-size: 24px;
    line-height: 1.25em;
    color: var(--black);
}

h6 {
    font-size: 22px;
    line-height: 1.25em;
}

p {
    /*font-size: 18px;
    font-weight: 400;
    line-height: 1.25em;*/
    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: 17px;
        font-weight: 400;
        color: var(--black);
    }

.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: 30px;
    color: var(--black);
}

.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) {
}

@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;*/
}
