
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:active {
    opacity: 0.6;
    outline: none;
    color: inherit;
    text-decoration: none;
}

a:focus {
    outline: none;
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
    opacity: 0.8;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

img {
    max-width: 100%;
}

.clear:before, .clear:after {
    content: "";
    display: block;
    clear: both;
}

.hide, .hidden {
    display: none;
}

.content-wrapper {
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.alignleft, img.alignleft {
    float: left;
    display: block;
    margin: 0 5px 0 0;
}

.alignright, img.alignright {
    float: right;
    display: block;
    margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
    float: none;
    display: block;
    margin: 0 auto 0;
}

.alignnone, img.alignnone {
    margin: 0 0 0;
    display: block;
}

/*  */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/*  */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
    padding: 20px 0 20px;
    background: #ffffff;
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .25);
}

header + * {
    padding-top: 50px;
}

.navbar, header, .logo, header + * {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.header-fixed {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .45);
}

.logo {
    float: left;
    display: block;
    margin: 0 auto 0;
    padding: 0 0 0;
    max-width: 160px;
}

.logo img {
    display: block;
}

header a {
    color: inherit;
}

/* spinner css start */

.spinner-wr {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #ffffff;

    /*!!!!!!!!!!!!!!!!!!!!!!!*/
    /*display: none; */
}

.spinner {
    width: 200px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: url('img/logo.png') no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;

    -webkit-animation: sk-bounce 5.0s infinite ease-in-out;
    animation: sk-bounce 5.0s infinite ease-in-out;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.5)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    width: 36px;
    height: 36px;
    padding: 0 0 0;
    margin: 0 0 0;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    background: transparent url('img/icon-arrow-up.svg') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    text-decoration: none;
    text-indent: -9999px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:not(.show):hover {
    opacity: 0;
    cursor: default;
}

.back-to-top:hover {
    -moz-animation: bounce 1.5s infinite;
    -webkit-animation: bounce 1.5s infinite;
    animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/* back-to-top css end */

#ho_adv {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
    position: relative;
}

.box-wr {
    padding: 50px 0 50px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

/*  */

.img-wr {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.img-wr img {
    display: block;
    margin: 0 auto 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.img-wr > a {
    display: block;
    overflow: hidden;
    width: 100%;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}

.img-wr:hover a img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/*  */

form {
    margin: 0 0 0;
    padding: 0 0 0;
}

form:after {
    content: "";
    display: block;
    clear: both;
}

form input, form textarea, form select {
    display: block;
    margin: 0 0 0;
    padding: 10px 20px 10px;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    background-color: #ffffff;
    clear: both;
    outline: none;
    width: 100%;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

form input[type="submit"] {
    margin: 0 0 0;
    width: auto;
}

form input:hover, form textarea:hover, form select:hover {
    color: #333333;
    border-color: #666666;
    opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
    color: #333333;
    border-color: #666666;
    opacity: 1;
}

form label {
    display: block;
}

*::-webkit-input-placeholder {
    color: #999999;
    text-indent: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

*:-moz-placeholder {
    color: #999999;
    text-indent: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

*::-moz-placeholder {
    color: #999999;
    text-indent: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

*:-ms-input-placeholder {
    color: #999999;
    text-indent: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
    text-indent: 220px;
    opacity: 0;
}

*:focus::-moz-placeholder {
    text-indent: 220px;
    opacity: 0;
}

*:focus:-moz-placeholder {
    text-indent: 220px;
    opacity: 0;
}

*:focus:-ms-input-placeholder {
    text-indent: 220px;
    opacity: 0;
}

/* ----------------------------------------------------------------------------------- */
/* DERMALA homepage css starts here */
/* ----------------------------------------------------------------------------------- */

:root {
    --theme-color: #00bfba;
    --theme-color-secondary: #366b9e;
    --theme-color-light: #e5f8f8;
    --color-purple: #7171bb;
}

html body .bg-theme {
    background-color: var(--theme-color);
}

html body .bg-theme-secondary {
    background-color: var(--theme-color-secondary);
}

html body .bg-theme-light {
    background-color: var(--theme-color-light);
}

html body .bg-purple {
    background-color: var(--color-purple);
    color: #ffffff;
}

html body .bg-gray {
    background-color: #f1f1f1;
}

html body .bg-theme-white {
    background-color: #ffffff;
}

/*  */

html body .color-theme, html body .box-wr .color-theme {
    color: var(--theme-color);
}

html body .color-theme-secondary {
    color: var(--theme-color-secondary);
}

html body .color-gray {
    color: #cccccc;
}

html body .color-white {
    color: #ffffff;
}

html body .color-purple {
    color: var(--color-purple);
}

/*  */

.box-wr .h1 {
    font-size: 110px;
    line-height: .82;
    margin: 0 0 43px;
    padding: 0 0 0;
    font-weight: 700;
    color: inherit;
}

.box-wr .h2 {
    font-size: 60px;
    line-height: 1;
    margin: 0 0 20px;
    padding: 0 0 0;
    font-weight: 700;
}

.box-wr .h4 {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 15px;
    padding: 0 0 0;
    font-weight: 400;
}

.box-wr .h5 {
    font-size: inherit;
    line-height: 1.2;
    margin: 0 0 15px;
    padding: 0 0 0;
    font-weight: 400;
}

.box-wr .h6 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 15px;
    padding: 0 0 0;
    font-weight: 400;
}

/*  */

html body .ttu {
    text-transform: uppercase;
}

html body .tdu {
    text-decoration: underline;
}

/*  */

.box-wr {
    padding: 100px 0 100px;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.box-wr p {
    font-size: inherit;
    line-height: inherit;
}

body .btn-main {
    padding: 13px 40px 12px;
    min-width: 240px;
    font-size: 21px;
    line-height: 30px;
    text-align: center;
    margin: 0 0 0;
    letter-spacing: .015em;
    background-color: var(--theme-color);
    color: #ffffff;
    display: inline-block;
    border: none;
    outline: none;
    border-radius: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
}

body .btn-main * {
    position: relative;
}

body .btn-main.bg-theme-white {
    color: #151515;
}

body .btn-main.bg-theme:hover {
    opacity: .7;
}

body .btn-main.bg-theme-white:hover {
    color: #ffffff;
    background-color: var(--theme-color);
}

body .btn-main.bg-purple:hover {
    color: #ffffff;
    background-color: var(--theme-color);
}

body .btn-angled-right:after {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 15px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    background: inherit;
}

/*  */

.img-wr {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.img-wr img {
    display: block;
    margin: 0 auto 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.img-wr > a {
    display: block;
    /*overflow: hidden;*/
    width: 100%;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
}

.img-wr:hover a img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/*  */


/* BEGIN CSS of Quiz Recommended Products After Quiz */

body .box-top-banner-quiz {
    padding: 0 0 0;
    line-height: 1.7;
    overflow: hidden;
}

.box-top-banner-quiz .text-item {
    max-width: 650px;
    padding: 120px 0 60px;
    margin: 0 auto 0;
    position: relative;
}

.box-top-banner-quiz .img-left {
    width: 500px;
    padding: 0 0 0 0;
    margin: 0 0 0;
    position: relative;
    text-align: right;
    float: right;
}

.box-top-banner-quiz .img-left img {
    margin-left: auto;
}

.box-top-banner-quiz .img-right {
    width: 500px;
    padding: 0 0 0;
    margin: 0 0 0 -100px;
    position: relative;
    text-align: left;
}

.block-quiz-retake {
    display: flex;
    align-content: center;
    align-items: stretch;
}

.block-quiz-retake > * {
    display: flex;
    align-content: center;
    align-items: center;
}

body .block-quiz-retake p {
    padding: 0 0 0;
    margin: 0 0 0;
}

.block-quiz-retake .bg-white {
    padding: 0 25px 0;
    margin: 0 0 0;
}

.list-styled {
    padding: 0 0 25px;
    margin: 0 0 0;
    position: relative;
    list-style: none;
}

.list-styled li {
    padding: 0 0 0 40px;
    margin: 0 0 0;
    position: relative;
}

.list-styled li:before {
    content: "✓";
    font-size: 120%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0 0 0;
    margin: auto;
    color: var(--theme-color);
}

.btn-main.btn-angled-right.bg-purple {
    padding: 10px 20px 10px;
    min-width: 165px;
    font-weight: 600;
}

/*  */

.box-recommendation {
    padding: 80px 0 80px;
}

body .box-recommendation .h2 {
    line-height: .9;
    margin: 0 0 38px;
}

.box-recommendation .container {
    max-width: 1350px;
}

.block-item {
    padding: 35px 30px 30px;
    margin: 0 auto 15px;
    position: relative;
}

.block-bordered {
    border: 1px solid #bfbfbf;
}

.block-rounded {
    border-radius: 20px;
}

html body .btn-close {
    margin: 15px 15px;
    width: 25px;
    font-size: 25px;
    font-weight: 300;
    height: 25px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    color: transparent;
}

body .block-item .h4 {
    margin: 0 0 5px;
    font-weight: 600;
}

body .block-item .h5 {
    font-size: 21px;
    margin: 0 0 13px;
}

body .block-item p {
    margin: 0 0 10px;
    line-height: 1.22;
}

.block-item .img-wr {
    padding: 0 0 0;
    margin: 0 25px 0 0;
    float: left;
    width: 100px;
    text-align: center;
}

.block-item .img-wr img {
    padding: 0 0 0;
    margin: 0 auto 0;
    max-width: 60%;
}

.block-item .text-wr {
    padding: 0 0 0;
    margin: 0 0 0;
    overflow: hidden;
}

.block-item::after {
    content: "";
    display: block;
    clear: both;
}

.block-item .btns-wr {
    padding: 0 0 0;
    margin: 0 0 0;
    clear: both;
}

.block-item .btns-wr {
    padding: 13px 13px 13px;
    margin: 0 0 30px;
    border: 1px solid #bfbfbf;
    border-radius: 12px;
}

.block-item .row {
    margin: 0 -6px;
}

.block-item [class*="col"] {
    padding: 0 6px;
}

.list-simple {
    margin: 0 0 20px;
    padding: 0 0 0;
}

.list-simple li {
    list-style: disc;
}

.list-simple li:before {
    content: "⚬";
    margin: 0 10px 0 0;
    display: inline-block;
    vertical-align: middle;
}

/*  */

.checkbox-styled {
    padding: 0 0 0;
    margin: 0 0 0;
    display: block;
}

.checkbox-styled input {
    display: none;
}

.checkbox-styled input:checked + .btn-checkbox-styled {
    border-color: var(--theme-color);
    background: #ffffff;
}

.checkbox-styled input:checked + .btn-checkbox-styled:after {
    font-size: 18px;
    margin: 2px -7px 0;
    padding: 0 0 0;
    line-height: 1;
    content: "\f058";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--theme-color);
    font-family: "FontAwesome";
    background: white;
    border-radius: 50px;
    border-radius: 50%;
}

.btn-checkbox-styled {
    font-size: 20px;
    padding: 14px 20px 14px;
    font-weight: 600;
    margin: 0 0 0;
    display: flex;
    width: 100%;
    border: 1px solid #bfbfbf;
    border-radius: 12px;
    background: #f1f1f1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.btn-checkbox-styled > *:last-child {
    margin-left: auto;
}

body .btn-small {
    padding: 1px 6px 1px;
    margin: 0 5px 0;
    font-size: 14px;
    border-radius: 5px;
}

/*  */

.togle-more-less {
    padding: 0 0 0;
    margin: 0 0 20px;
}

body .btn-toggle-more-less {
    color: inherit;
    display: inline-block;
}

.togle-more-less .btn-toggle-more-less:after {
    content: "\f105";
    padding: 0 0 0;
    margin: -1px 0 0 10px;
    font-family: "FontAwesome";
    display: inline-block;
    vertical-align: middle;
}

.togle-more-less.active .btn-toggle-more-less:after {
    content: "\f107";
}

.togle-more-less .label-more-default {
    display: inline-block;
}

.togle-more-less.active .label-more-default {
    display: none;
}

.togle-more-less .label-more-active {
    display: none;
}

.togle-more-less.active .label-more-active {
    display: inline-block;
}

.togle-more-less.active .content-toggle-more-less {
    display: block;
}

.content-toggle-more-less {
    padding: 0 0 0;
    margin: 0 0 0;
    display: none;
}

/*  */

.block-order-summary {
    padding: 35px 30px 35px;
    margin: 0 0 0;
}

body .block-order-summary .h4 {
    text-transform: uppercase;
    font-weight: 600;
}

.row-order-summary {
    padding: 10px 0 10px;
    margin: 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-order-summary .img-wr {
    padding: 0 0 0;
    margin: 0 0 0;
    width: 56px;
    height: 56px;
    display: flex;
    border-radius: 10px;
    align-items: center;
}

.row-order-summary .img-wr img {
    display: block;
    max-width: 90%;
    max-height: 70%;
}

.row-order-summary .text-wr {
    padding: 0 0 0;
    max-width: 200px;
    margin: 0 0 0;
}

.row-order-summary .text-wr h5 {
    font-size: 21px;
    line-height: 1;
    padding: 0 0 0;
    margin: 0 0 0;
}

.row-order-summary .text-wr h6 {
    font-size: 18px;
    line-height: 1;
    padding: 0 0 0;
    margin: 0 0 0;
}

.order-quantity {
    padding: 0 0 0;
    margin: 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-order-quantity {
    font-size: 26px;
    line-height: 24px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50px;
    border-radius: 50%;
    border: 2px solid;
    color: var(--theme-color);
    padding: 0 0 0;
    margin: 0 0 0;
}

.order-quantity strong {
    margin: 0 9px 0;
}

.order-summary-subtotal-item {
    padding: 3px 0 3px;
    margin: 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-summary-subtotal-item .color-gray {
    color: #868686;
}

.row-order-summary-subtotal {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 0 10px;
    margin: 20px 0 20px;
}

.row-order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    line-height: 1;
    padding: 0 0 30px;
}

/* END CSS of Quiz Recommended Products After Quiz */

.email-input {
	width: 100%;
    outline: 0;
    border-width: 0 0 2px;
    border-color: var(--color-purple);
}

footer h4 {
    margin: 0;
    padding: 20px 0 20px;
}

html body .hr {
    margin: 0;
}

/*  */

body .box-fixed-bottom {
    padding: 30px 0 30px;
    background: #ffffff url('img/bg-footer.png') no-repeat center;
    background-size: cover;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

body .box-fixed-bottom .btn-main .fa {
    margin: 0 10px;
}

body .box-fixed-bottom .btn-main:hover {
    opacity: .95;
    margin-left: -10px;
    margin-right: -10px;
}

/*  */

body .box-quiz {
    padding: 0 0 0;
    z-index: 1;
}

.quiz-step-item {
    letter-spacing: -.01em;
    padding: 70px 0 170px;
}

html body .quiz-step-item h1 {
    padding: 0 0 0;
    margin: 0 0 15px;
    font-size: 45px;
    line-height: 1;
    color: var(--color-purple);
}

html body .quiz-step-item h2 {
    padding: 0 0 0;
    margin: 0 0 15px;
    font-size: 35px;
    line-height: 1;
    color: var(--color-purple);
}

html body .quiz-step-item h3 {
    padding: 0 0 0;
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 1;
    color: var(--color-purple);
}

html body .quiz-step-item h4 {
    padding: 0 0 0;
    margin: 0 0 15px;
    font-size: 25px;
    line-height: 1;
    color: var(--color-purple);
}

.quiz-step-item .text-primary {
    color: #7f8dc1 !important;
}

.quiz-step-item .text-secondary {
    color: #efab9f !important;
}

.quiz-step-item .b-overlay-wrap.position-relative.d-inline-block.w-100 {
    max-width: 140px;
    vertical-align: middle;
}

.quiz-step-item .result-selection.active {
    border-color: var(--color-purple);
}

.quiz-step-item .result-selection {
    border-radius: 60px;
    margin: 1px 0;
    padding: 8px 0 8px;
    cursor: pointer;
    border: 3px solid transparent;
}

.quiz-step-item .border-primary {
    border-color: #7f8dc1 !important;
}

.quiz-step-item .result-selection img {
    border: 4px solid;
    border-radius: 50%;
    margin: 0;
    max-height: 10vh;
    display: block;
    margin: 0 auto;
}

.quiz-step-item .border-secondary {
    border-color: #efab9f !important;
}

.quiz-step-item .result-selection h3 {
    padding: 0 0 0;
    margin: 0 0 0;
    font-size: 25px;
    text-transform: uppercase;
}

.container-small {
    max-width: 930px;
}

.result-selection img {
    border: 4px solid;
    border-radius: 50%;
    margin: 0;
    max-height: 10vh;
}

.ph-selection {
    padding: 0 2px;
    margin-bottom: 12px;
    border-top: 2px solid #6c757d;
    border-bottom: 2px solid #6c757d;
    cursor: pointer;
}

.ph-selection[data-value="4.0"] .color-left, .ph-selection[data-value="4"] .color-left {
    background-color: #ffd036;
}

.ph-selection[data-value="4.0"] .color-right, .ph-selection[data-value="4"] .color-right {
    background-color: #ffb45e;
}

.ph-selection[data-value="4.5"] .color-left {
    background-color: #ffdb55;
}

.ph-selection[data-value="4.5"] .color-right {
    background-color: #ffa33b;
}

.ph-selection[data-value="5.0"] .color-left, .ph-selection[data-value="5"] .color-left {
    background-color: #ffa074;
}

.ph-selection[data-value="5.0"] .color-right, .ph-selection[data-value="5"] .color-right {
    background-color: #e08d3c;
}

.ph-selection[data-value="5.5"] .color-left {
    background-color: #ff7641;
}

.ph-selection[data-value="5.5"] .color-right {
    background-color: #d09647;
}

.ph-selection[data-value="6.0"] .color-left, .ph-selection[data-value="6"] .color-left {
    background-color: #ff662e;
}

.ph-selection[data-value="6.0"] .color-right, .ph-selection[data-value="6"] .color-right {
    background-color: #9c8044;
}

.ph-selection[data-value="6.5"] .color-left {
    background-color: #ff4235;
}

.ph-selection[data-value="6.5"] .color-right {
    background-color: #75704b;
}

.ph-selection[data-value="7.0"] .color-left, .ph-selection[data-value="7"] .color-left {
    background-color: #ff2e31;
}

.ph-selection[data-value="7.0"] .color-right, .ph-selection[data-value="7"] .color-right {
    background-color: #466a4e;
}

.ph-selection[data-value="7.5"] .color-left {
    background-color: #ff2e58;
}

.ph-selection[data-value="7.5"] .color-right {
    background-color: #426656;
}

.ph-selection > div {
    pointer-events: none;
}

.ph-selection .color-left {
    margin-right: 4px;
}

.ph-selection.selected {
    box-shadow: 0 0 0 4px white, 0 0 0 8px #efab9f;
    border-radius: 2px;
}

/*  */

.slick-arrow.slick-disabled {
    visibility: hidden;
}

/*  */

.donut-size {
    font-size: 12em;
}

.pie-wrapper {
    position: relative;
    width: 1em;
    height: 1em;
    margin: 0px auto;
}

.pie-wrapper .pie {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    clip: rect(0, 1em, 1em, 0.5em);
}

.pie-wrapper .half-circle {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0.1em solid var(--color-purple);
    border-radius: 50%;
    clip: rect(0em, 0.5em, 1em, 0em);
}

.pie-wrapper .right-side {
    transform: rotate(0deg);
}

.pie-wrapper .label {
    position: absolute;
    top: 0.52em;
    right: 0.4em;
    bottom: 0.4em;
    left: 0.4em;
    display: block;
    background: none;
    border-radius: 50%;
    color: #7F8C8D;
    font-size: 0.25em;
    line-height: 2.8em;
    text-align: center;
    cursor: default;
    z-index: 2;
    color: var(--color-purple);
}

.pie-wrapper .smaller {
    padding-bottom: 20px;
    color: #BDC3C7;
    font-size: .45em;
    vertical-align: super;
}

.pie-wrapper .shadow {
    width: 100%;
    height: 100%;
    border: 0.1em solid #BDC3C7;
    border-radius: 50%;
}

/*  */

.report-ph-selection {
    margin: 0 0 50px;
}

.slider-quiz-steps .slick-list {
    height: auto !important;
}

.slider-quiz-steps .slick-slide {
    height: 0;
}

.slider-quiz-steps .slick-slide.slick-current.slick-active {
    height: auto;
}


.slider-quiz-steps .slick-track, .slider-quiz-steps .slick-list {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.sticky-position.block-order-summary {
    /*width: auto !important;*/
}

/* END of DERMALA QUIZ */


/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 1419px) {
    .box-top-banner .img-wr {
        right: -15px;
    }

    .slider-2-per-row .slide-item {
        padding: 0 15px 0;
        margin: 0 0 0;
    }

    .slider-2-per-row {
        padding: 0 0 0;
        margin: 0 -15px 0;
    }

    .box-wr {
        overflow: hidden;
    }

    html body .shop-now-img {
        right: auto;
        left: 42%;
        top: 150px;
        width: 198px;
    }

    .box-top-banner-quiz .img-left {
        width: 300px;
        padding: 0 0 0;
        margin: 0 0 0;
    }

    .box-top-banner-quiz .img-right {
        width: 360px;
        padding: 0 0 0;
        margin: 0 0 0;
    }


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
    .box-wr {
        padding: 50px 0 50px;
        font-size: 18px;
    }

    .box-wr .h1 {
        font-size: 70px;
        line-height: .9;
        margin: 0 0 20px;
    }

    .box-wr .h2 {
        font-size: 40px;
        margin: 0 0 20px;
    }

    .box-wr .h4 {
        font-size: 26px;
        margin: 0 0 15px;
    }

    .box-wr .h5 {
        font-size: inherit;
        margin: 0 0 15px;
    }

    .box-wr .h6 {
        font-size: 15px;
        margin: 0 0 15px;
    }

    .box-top-banner .text-wr {
        padding: 150px 0 135px;
        margin: 0 0 0 0;
    }

    html body .shop-now-img {
        right: auto;
        left: 42%;
        top: 180px;
        width: 140px;
    }

    .box-why-we .item-bigger {
        width: 250px;
    }

    body .btn-main {
        padding: 10px 20px 10px;
        min-width: 200px;
        font-size: 18px;
        line-height: 30px;
    }

    .box-testimonials .text-wr {
        padding: 20px 0 0 0;
        margin: 0 auto 0;
    }

    .box-bundles .slider-2-per-row {
        padding: 0 0 0;
    }

    .box-customers-love-us .slider-2-per-row {
        padding: 0 0 0;
    }

    .instagram-thumbs-wr img {
        width: 150px;
    }

    .text-item {
        padding: 0 0 0;
        margin: 0 0 0;
    }

    .logo-item {
        margin: 5px 15px 5px;
    }

    .logos-wr .slider-logos {
        padding: 0 0 0 15px;
        max-width: 760px;
        margin: 0 0 0;
    }

    .bundle-item .img-wr {
        padding: 0 0 0;
        margin: 0 0 0;
        width: 150px;
        height: 150px;
    }

    .bundle-item img {
        max-height: 80%;
        max-width: 80%;
    }

    .box-top-banner-quiz .text-item {
        padding: 150px 0 50px;
    }

    .block-order-summary {
        padding: 15px 20px 15px;
        margin: 0 0 15px;
    }

    body .box-recommendation .h2 {
        line-height: .9;
        margin: 0 0 20px;
    }

    .block-item .img-wr {
        margin: 0 15px 0 0;
        width: 80px;
    }

    .block-item {
        padding: 20px 20px 20px;
        margin: 0 auto 15px;

    }

    .block-item .btns-wr {
        padding: 13px 13px 13px;
        margin: 0 0 20px;
    }

    .row-order-summary .img-wr {
        padding: 0 0 0;
        margin: 0 10px 0 0;
        width: 56px;
        min-width: 56px;
        height: 56px;
    }


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
    .box-wr {
        padding: 50px 0 50px;
        font-size: 16px;
    }

    .box-wr .h1 {
        font-size: 50px;
        line-height: .9;
        margin: 0 0 20px;
    }

    .box-wr .h2 {
        font-size: 35px;
        margin: 0 0 20px;
    }

    .box-wr .h4 {
        font-size: 23px;
        margin: 0 0 15px;
    }

    .box-wr .h5 {
        font-size: inherit;
        margin: 0 0 15px;
    }

    .box-wr .h6 {
        font-size: 14px;
        margin: 0 0 15px;
    }

    .box-top-banner .text-wr {
        padding: 100px 0 100px;
        margin: 0 0 0 0;
    }

    html body .shop-now-img {
        right: auto;
        left: 42%;
        top: 120px;
        width: 100px;
    }

    .box-why-we .btn-main {
        margin: 10px 0 15px;
    }

    .star-rating i {
        font-size: 20px;
        padding: 0 0 0;
        margin: 0 2px 0 0;
    }

    .star-rating a {
        font-size: inherit;
    }

    .slider-with-arrows .slick-prev:before, .slider-with-arrows .slick-next:before {
        width: 36px;
        height: 36px;
        line-height: 32px;
        font-size: 25px;
    }

    .slider-with-arrows .slick-prev, .slider-with-arrows .slick-next {
        width: 36px;
        height: 36px;
    }

    .box-customers-love-us .qzrec-results-item {
        margin: 0 0 15px;
    }

    .step-item {
        padding: 20px 10px 0;
        margin: 15px auto 15px;
    }

    body .box-steps {
        padding: 50px 0 0;
    }

    .featured-product-thumb-item .img-wr {
        padding: 10px 10px 10px;
        margin: 0 auto 15px;
        border-radius: 15px;
        height: 250px;
    }

    .featured-product-thumb-item .img-wr img {
        padding: 0 0 0;
        margin: 0 auto 0;
        max-height: 180px;
        max-width: 80%;
    }

    .box-logos {
        padding: 30px 0 30px;
    }

    .box-top-banner-quiz .text-item {
        padding: 70px 0 50px;
    }


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
    .box-wr {
        font-size: 18px;
    }

    .box-wr .h1 {
        font-size: 50px;
        line-height: .9;
        margin: 0 0 20px;
    }

    .box-wr .h2 {
        font-size: 30px;
        margin: 0 0 20px;
    }

    .box-wr .h4 {
        font-size: 20px;
        margin: 0 0 15px;
    }

    .box-wr .h5 {
        font-size: inherit;
        margin: 0 0 15px;
    }

    .box-wr .h6 {
        font-size: 15px;
        margin: 0 0 15px;
    }

    html body .shop-now-img {
        right: 25px;
        left: auto;
        top: 140px;
        width: 100px;
    }

    .box-top-banner .img-wr {
        right: 0;
    }

    .box-top-banner .img-wr img {
        opacity: .7;
    }

    .box-top-banner .text-wr {
        padding: 100px 0 30px;
        margin: 0 0 0 0;
    }

    .logos-wr {
        display: block;
        text-align: center;
    }

    .box-logos .logos-wr h2 {
        padding: 0 0 0;
        margin: 0 0 20px;
        font-size: 30px;
        min-width: 180px;
        border-right: none;
    }

    .logos-wr .slider-logos {
        padding: 0 0 0;
        max-width: 100vw;
        margin: 0 -15px 0;
    }

    .row-text {
        margin-bottom: 20px;
        text-align: center;
    }

    .row-images .col {
        padding: 0 5px 0;
    }

    .box-why-we .item-bigger {
        width: auto;
    }

    html body .hidden-xs {
        display: none;
    }

    .row-images .img-item {
        padding: 0 0 0;
        margin: 0 auto 10px;
    }

    .box-customers-love-us .arrows-append-here {
        padding: 0 0 20px;
    }

    .arrows-append-here {
        padding: 0 0 20px;
    }

    .slider-with-dots .slick-dots {
        bottom: -25px;
    }

    body .box-instagram .h5 {
        padding: 20px 0 20px;
        font-size: 18px;
    }

    .step-items-wr {
        padding: 0 0 30px;
    }

    .testimonials-item {
        padding: 20px 25px 20px;
        margin: 0 0 15px;
    }

    .box-top-banner-quiz .img-right {
        width: auto;
        padding: 0 0 0;
        margin: 0 0 0;
    }

    .block-quiz-retake .bg-white {
        padding: 10px 15px 10px;
        margin: 0 0 0;
        line-height: 1.1;
    }

    .block-quiz-retake .btn-main {
        padding: 10px 20px 10px;
        min-width: 165px;
        font-weight: 600;
        display: flex;
    }

    html body .quiz-step-item h1 {
        padding: 0 0 0;
        margin: 0 0 15px;
        font-size: 35px;
    }

    html body .quiz-step-item h2 {
        padding: 0 0 0;
        margin: 0 0 15px;
        font-size: 28px;
    }

    html body .quiz-step-item h3 {
        padding: 0 0 0;
        margin: 0 0 15px;
        font-size: 22px;
    }

    html body .quiz-step-item h4 {
        padding: 0 0 0;
        margin: 0 0 15px;
        font-size: 20px;
    }

    body .box-fixed-bottom .btn-main {
        min-width: 150px;
    }

    .quiz-step-item .result-selection h3 {
        padding: 0 0 0;
        margin: 0 0 0;
        font-size: 18px;
    }

    body .box-fixed-bottom {
        padding: 15px 0 15px;
    }


}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 575px) {
    .arrows-append-here {
        padding: 0 0 20px;
        min-width: 100px;
    }

    .instagram-thumbs-wr img {
        width: 95px;
    }


}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
