* {
    box-sizing: border-box;
}

body,p,li {
    font-family: Inter;
    font-weight: 400;
}

h1,h2,h3,h4,h5,h6 {
    font-family: Inter;
    font-weight: 600;
}

.dm-virtual-consultation {
    height: calc(100vh - 86px);
    position: relative;
    background: #f3f3f3;
}

header#site-header {
    float: none;
}

#move-to-top {
    display: none !important;
}

button {
    cursor: pointer;
}

.dm-vc-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vc-chosen-part li div {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.vc-chosen-part li div:hover {
    background: #ffffff9c;
}

.dm-vc-half {
    flex: 1 1 50%;
    width: 50%;
}

.dm-vc-half.vc-height.vc-bg {
    width: 45%;
    flex: 1 1 45%;
}

.dm-selections::-webkit-scrollbar,
.vc-dialog ul::-webkit-scrollbar {
      width: 6px;
}
 
.dm-selections::-webkit-scrollbar-track,
.vc-dialog ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.dm-selections::-webkit-scrollbar-thumb,
.vc-dialog ul::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.dm-overlay-on-load {
    z-index:1;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
}

.dm-vc-s-flex h3 {
    flex: 1;
}

button.vc-turn.vc-turn-hidden {
    display: none;
}

.vc-array-chosen {
    display:none;
}

.dm-vc-six {
    flex: 1 1 55%;
    width: 55%;
}

.dm-vc-third {flex: 1 1 45%;width: 45%;padding: 0px 80px;background: var(--pColor);display: flex;flex-wrap: wrap;flex-direction: column;justify-content: center;}

.dm-overlay-on-load > div {
    align-items: inherit;
}

.dm-vc-third * {
    color: #fff;
}

.dm-vc-third ol {padding-left: 0px;list-style: none;counter-reset: section;}

.dm-vc-third li {
    margin-bottom: 6px;
    background: #fff;
    color: #494949;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
}

.dm-vc-third li:before {
    content: count;
}

.dm-vc-third li:before {
    counter-increment: section;
    content: "0" counter(section) "";
    margin-right: 15px;
}

.dm-vc-six:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.dm-vc-six {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-button {
    color: #fff;
}

.dm-button span {
    font-weight: bold;
    display: block;
    text-align: center;
}

.dm-button span:nth-child(1) {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: var(--llvcCardText);
    border: 1px solid white;
    margin: 0 auto 50px;
    cursor: pointer;
}

.dm-button span:nth-child(1):before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: llvcRadiating 2s linear infinite;
    animation: llvcRadiating 2s linear infinite;
}

.dm-button span:nth-child(1):after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: llvcRadiating 2s 1s linear infinite;
    animation: llvcRadiating 2s 1s linear infinite;
}

@-webkit-keyframes llvcRadiating {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }

  15% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}
@keyframes llvcRadiating {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }

  15% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

svg.icon.icon-llvc-cursor {
    stroke-width: 0;
    stroke: #fff;
    fill: #fff;
    display: inline-block;
    height: 1em;
    width: 1em;
}

.dm-vc-flex.is-active {
    display: flex;
}

.dm-overlay-on-load.is-active {
    display: block;
}

.vc-no-align {
    align-items: inherit;
}

.dm-vc-half:nth-child(1) {
    background: #FAF9F8;
}

.vc-bg {
    background: var(--pColor);
}

.dm-vc-half.vc-height.vc-bg * {
    color: #fff;
}

.vc-main-body {
    height: 100%;
    text-align: center;
    margin: 0px auto;
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 0 0 auto;
    position: relative;
    align-items: center;
}

.vc-body {
    display: none;
    margin: 0px 100px;
    position: relative;
}

.vc-active {
    display: block;
}

.vc-array-chosen.vc-is-active {
    flex-direction: column;
    flex: 1 0 0;
    display: flex;
}

button.vc-turn {
    height: 64px;
    width: 64px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0px 4px 12px #00000012;
    border: 0px;
}

button.vc-turn.vc-turn-left i {
    transform: rotate(-60deg) scaleX(-1);
}

button.vc-turn.vc-turn-right i {
    transform: rotate(70deg);
}

button.enlarge-face {
    position: absolute;
    top: 0;
    left: 55%;
    transform: translateX(-50%);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 8px #0000003b;
    border: 1px solid #AAAAAA;
    font-size: 10.8px;
    font-size: 0.675rem;
    transition: 0.15s ease;
}

.enlarge-plus {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0px;
    background: #fff;
    box-shadow: 0px 0px 8px #00000059;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    top: 22%;
    right: 2px;
    cursor: pointer;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.enlarge-plus span {
    position: absolute;
    transform: translateY(-10px);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.enlarge-plus:hover span {
    opacity: 1;
    transform: translateY(-25px);
    color: #000;
}

.enlarge-plus:hover {
    background: var(--pColor);
    color: #fff;
}

.vc-dialog-holder {
    display: none;
    width: 65%;
    margin: 0px auto;
    height: 100%;
    padding-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
}

.dm-selections.vc-not-active {
    display: none;
}

.vc-dialog-holder.vc-is-active {
    display: block;
}

.vc-dialog.vc-dialog-active {
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.vc-dialog {
    display: none;
    height: 100%;
}

.vc-dialog li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 100px;
    color: var(--llvcHeader);
    padding: 14px 16px;
    transition: 0.15s ease;
    margin-bottom: 15px;
}

.vc-inline-buttons {
    text-align: center;
}

.vc-dialog ul {
    overflow-y: auto;
    flex: 1 0 0;
    max-height: 75%;
    padding: 0px;
    padding-right: 15px;
    list-style: none;
}

.vc-dialog h3 {
    margin: 20px 0px;
}

.vc-dialog button {
    background: transparent;
    text-align: left;
    text-decoration: underline;
    border: 0px;
    font-size: 15px;
}

button.vc-chest {
    left: 25px;
    right: auto;
    top: 20%;
}

button.vc-submit-button {
    border: 0px;
    background: #fff;
    color: #000 !important;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 0px;
}

button.vc-submit-button span {color: #000 !important;}

.vc-not-active {
    display: none;
}

.vc-chosen-part li div {
    list-style: none;
    margin-bottom: 8px;
    margin-right: 8px;
    padding: 8px 16px;
    background-color: white;
    border-radius: 100px;
    cursor: pointer;
    font-size: 15px;
}

.vc-chosen-part li * {
    color: #000 !important;
}

.vc-chosen-part li button {
    border: 0px;
    background: transparent;
    margin-left: 15px;
}

.vc-chosen-part li {
    list-style: none;
}

.dm-vc-half.vc-height.vc-bg > div {
    align-items: inherit;
    padding: 80px 0px 0px 80px;
}

.dm-selections {
    width: 60%;
    margin: 0px auto;
    margin-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    overflow: auto;
    height: calc(100vh - 220px);
    padding-right: 10px;
}

.vc-chosen-part ul {
    padding: 0px;
    list-style: none;
}

.vc-chosen-part ul {
    display: flex;
    flex-wrap: wrap;
}

.vc-chosen-part h2 {
    text-transform: capitalize;
    border-bottom: 1px solid #ffc995;
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.vc-dialog ul li input {
    display: none;
}

.vc-dialog li label {
    padding-left: 25px;
    cursor: pointer;
}

.vc-dialog label:before {
    content: '';
    height: 20px;
    width: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 16px;
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.vc-dialog li label.vc-checked-checkbox,
.vc-dialog li label:hover {
    background: #fff;
    color: #000 !important;
}

.vc-dialog li label.vc-checked-checkbox:before,
.vc-dialog li label:hover:before {
    background: #000;
}

.vc-bottom-body-nav {
    position: absolute;
    bottom: 0px;
    left: 0px;
    list-style: none;
    text-align: left;
}

.vc-bottom-body-nav ul {
    list-style: none;
}

.vc-bottom-body-nav button {
    border: 0px;
    background: transparent;
    font-size: 14px;
}

.vc-bottom-body-nav li {
    margin-bottom: 15px;
}

.dm-vc-s-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

button.vc-empty-selection {
    margin: 0px auto;
    margin-right: 0px;
    background: transparent;
    border: 0px;
    opacity: 0.2;
    cursor: pointer;
    text-decoration: underline;
}

.dm-vc-s-flex h3 {
    font-size: 21px;
    font-weight: bold;
    margin: 0px;
}

.vc-array-empty {
    margin-top: 20px;
}

button.vc-empty-selection i {
    margin-right: 6px;
}

.vc-array-chosen {
    padding-top: 20px;
}

button.vc-empty-selection {
    display: none;
}

.vc-button-not-active button.vc-empty-selection {
    display: block;
}

.vc-dialog ul label:after {
    content: "\f00c";
    font-family: 'Font Awesome 5';
    color: #000;
    font-size: 10px;
    position: absolute;
    left: 31px;
    top: 21px;
}

label.vc-checked-checkbox {
    position: relative;
}

.vc-dialog ul label.vc-checked-checkbox:after {
    color: #fff;
}

.vc-dialog ul label {position: relative;}

.dm-vc-flex.vc-body-holder:before {
     -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.dm-vc-flex.vc-body-holder.vc-body-blur:before {
    opacity: 1;
    visibility: visible;
}

.dm-vc-flex.vc-body-holder {
    position: relative;
}

.vc-how-to {
 -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #000;
    border-radius: 4px;
    width: 300px;
    padding: 10px 30px;
    position: absolute;
    transform: translateY(-225px);
    top: 0px;
    padding-top: 20px;
    opacity: 0;
    visibility: hidden;
}

.vc-dialog h3 {
    text-transform: capitalize;
}

.vc-how-to.vc-show-to {
    opacity: 1;
    visibility: visible;
}

.vc-how-to ol {
    padding: 0px;
    padding-left: 11px;
}

.vc-how-to * {
    color: #fff;
}

.vc-how-to h3 {
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.vc-how-to li {
    font-size: 13px;
}

.vc-bottom-body-nav .vc-how-to button {
    position: absolute;
    top: 14px;
    right: 21px;
    cursor: pointer;
}

.vc-popup {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    z-index: 999999999;
}

.vc-popup.vc-active-popup {
    opacity: 1;
    visibility: visible;
}

.vc-popup:before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.vc-modal-container {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 80px 56px;
}

.vc-modal-container h3 {
    margin: 0px 0px 20px;
    color: #000;
    font-weight: bold;
}

.vc-modal-container button {
    background: #000;
    color: #fff;
    border: 0px;
    font-size: 20px;
    padding: 15px 30px;
    margin: 0px 10px;
    border-radius: 2px;
}

.vc-array-chosen.vc-is-active + .vc-buttons-down button {
    display: inline-block;
}

button.vc-finish-consultation {
    display: none;
}

button.vc-finish-consultation {
    color: #000 !important;
    padding: 18px 10px;
    font-size: 20px;
    font-weight: bold;
    border: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

button.vc-finish-consultation:hover {
    background: #272727;
    color: #fff !important;
}

button.vc-back.vc-active-button {
    display: block;
}

.vc-full-body-form {
    height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f3f3f3;
}

.vc-full-body-form {
    display: none;
}

.vc-full-body-form.vc-active-form {
    display: flex;
}

header.vc-app-header .dm-vc-third {
    flex: 1 1 33.33%;
    padding: 0px 15px;
    width: 33.33%;
    background: transparent;
    display: block;
    text-align: center;
}

html body {
    margin: 0px;
    padding-top: 86px;
}

header.vc-app-header img {
    max-height: 80px;
    display: block;
    margin: 0px auto;
    max-width: 150px;
}

header.vc-app-header > div {
    max-width: 1200px;
    margin: 0px auto;
    justify-content: space-between;
}

header.vc-app-header button {
    width: auto;
    color: #000 !important;
    border: 0px;
    background: transparent;
}

.dm-vc-flex.vc-no-align.final {
    display: none;
}

header.vc-app-header {
    position: fixed;
    background: #fff;
    box-shadow: 0px 4px 16px rgba(23, 25, 45, .25);
    padding: 12px 0px;
    height: 86px;
    z-index: 999;
    width: 100%;
    top: 0px;
}

button.vc-back {
    display: none;
}

.vc-modal-container a {
    border: 0px;
    font-size: 20px;
    padding: 15px 30px;
    margin: 0px 10px;
    border-radius: 2px;
    text-decoration: none;
    border: 2px solid #000;
    background: transparent;
    color: #000;
}

button.vc-full-body {
    position: absolute;
    top: 75px;
    right: -100px;
    background: transparent;
    color: #808184;
    transition: all .2s;
    text-decoration: underline;
    border: 0px;
    font-size: 17px;
}

.vc-body.vc-body-face-male,
.vc-body.vc-body-face-female {
    position: initial;
}

button.vc-full-body i {
    margin-right: 10px;
}

[data-dialog="chest-female"] {
    left: 55%;
    top: 20%;
}

[data-dialog="underarms-female"] {
    left: 15px;
    top: 23%;
}

[data-dialog="hands-female"] {
    left: -3px;
    top: 48%;
}

[data-dialog="legs-female"] {
    left: 41px;
    top: 60%;
}

[data-dialog="abdomen-female"] {
    left: 58px;
    top: 38%;
}

button.enlarge-plus {
    text-transform: capitalize;
}

[data-dialog="forehead-female"] {
    left: 48%;
    top: 12%;
}

[data-dialog="neck-female"] {
    left: 24%;
    top: 85%;
}

[data-dialog="ears-female"] {
    left: 0%;
    top: 29%;
}

[data-dialog="chin-female"] {
    left: 50%;
    top: 78.5%;
}

[data-dialog="jawline-female"] {
    left: 77%;
    top: 62%;
}

[data-dialog="lips-female"] {
    left: 46%;
    top: 62%;
}

[data-dialog="cheeks-female"] {
    left: 22%;
    top: 53%;
}

[data-dialog="nose-female"] {
    left: 46%;
    top: 48%;
}

[data-dialog="eyes-female"] {
    left: 64%;
    top: 34%;
}

[data-dialog="eyebrows-female"] {
    left: 64%;
    top: 25%;
}

[data-dialog="temples-female"] {
    left: 26%;
    top: 2%;
}

[data-dialog="buttocks-female"] {
    top: 44%;
    left: 28%;
}

[data-dialog="back-female"] {
    top: 24%;
    left: 28%;
}

[data-dialog="trapeziusMuscles-female"] {
    top: 15%;
    left: 60%;
}

.vc-form-container li {
    list-style: none;
}

.vc-form-container input {
    width: 100%;
    height: 45px;
}

.vc-form-container label {
    text-align: left;
    display: block;
    padding-bottom: 6px;
}

.vc-form-container li {
    padding-bottom: 9px;
}

.vc-form-container textarea {
    width: 100%;
}

div#gfield_description_5_8 {
    display: none;
}

.gfield--type-honeypot {display: none !important;}

.vc-form-container ul {
    padding: 0px;
}

.vc-form-container input[type="submit"] {
    background: var(--pColor);
    color: #fff;
    border: 0px;
    text-transform: uppercase;
    height: 50px;
    cursor: pointer;
}

.vc-form-container {
    max-width: 500px;
}

.cta_fixed_button {
    display: none;
}

.move_down {
    display: none;
}

nav#pojo-a11y-toolbar {
    display: none;
}

a#pojo-a11y-skip-content {
    display: none;
}

.vc-form-container li {
    width: 100% !important;
    margin: 0px !important;
    padding: 0px;
    margin-bottom: 20px !important;
}

.vc-form-container input[type="submit"] {
    width: 200px !important;
    margin: 0px auto !important;
    display: block !important;
}

.gfield--type-textarea {
    display: none !important;
}

.expand-retract-vc {
    display: none;
}

.vc-face-wrapper {
    position: relative;
}

.dm-vc-third {
    text-align: center;
}

.dm-vc-third li {
    text-align: left;
}

.dp {
    height: 96px;
    width: 96px;
    border-radius: 50%;
    margin: 0px auto;
    display: block;
    overflow: hidden;
    filter: grayscale(1);
    background: #acacac;
}

.dp img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

span.dp-name {
    display: block;
    color: #F1C97F;
    margin: 10px 0px 10px;
}

header.vc-app-header > div .vc-third:nth-child(1),header.vc-app-header > div .vc-third:nth-child(3) {
    width: 55px;
}

header.vc-app-header > div .vc-third:nth-child(3) {
    text-align: right;
}

header.vc-app-header {
    padding: 12px 10px;
}

.vc-third {
    font-size: 14px;
}

header.vc-app-header .vc-third button {
    font-size: 14px;
}

.vc-dialog ul label:after {
    top: 50%;
    transform: translateY(-50%);
}

header.vc-app-header .vc-third button {
    padding: 0px;
}

@media (min-width: 1025px) {
    button.vc-finish-consultation {
        flex: 1 1 100%;
    }

    .vc-buttons-down {
        display: flex;
    }
    .hide-till-mobile.dm-button {
        display: none;
    }
    button.vc-select-more-concerns {
        display: none !important;
    }
}

@media (max-width: 1300px) {
    .dm-selections {
        width: 80%;
    }
    button.vc-full-body {
        right: 0px;
    }
}

@media (max-width: 1024px) {
    .vc-dialog-holder {
        width: 100%;
    }
    .hide-till-mobile.dm-button {
        margin-top: 150px;
        display: block;
    }
    button.expand-retract-vc {
        position: absolute;
        left: 0px;
        right: 0px;
        margin: 0px auto;
        width: 40px;
        height: 40px;
        color: #fff;
        background: transparent;
        border: 0px;
        font-size: 25px;
        transform: rotate(180deg);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .active-half-bg button.expand-retract-vc { 
        transform: rotate(0deg);
    }
    .expand-retract-vc {
        display: block;
    }
    .dm-vc-half {
        flex: 1 1 100%;
    }

    .dm-vc-flex.vc-no-align {
        flex-wrap: wrap;
    }

    .dm-vc-half.vc-height.vc-bg {
        position: fixed;
        width: 100%;
        flex: 1 1 00%;
        height: calc(100vh - 86px);
        top: 86px;
        transform: translateY(calc(100% - 180px));
        z-index: 1;
        border-radius: 25px 25px 0px 0px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .vc-main-body {
        height: 100%;
    }

    .vc-bottom-body-nav {
        top: 0px;
        bottom: auto;
        left: -30%;
    }

    button.vc-full-body {
        top: 20px;
        font-size: 15px;
        right: -15%;
    }

    .dm-vc-half.vc-height.vc-bg.active-half-bg {
        transform: translateY(0px);
        top: 86px;
    }

    .vc-dialog {
        justify-content: flex-start !important;
    }

    .dm-selections {
        width: 100%;
    }

    .dm-vc-half.vc-height.vc-bg > div {
        padding: 80px;
    }
    .dm-overlay-on-load .dm-vc-six {
        display: none;
    }

    .dm-overlay-on-load .dm-vc-third {
        text-align: center;
    }

    .dm-overlay-on-load .dm-vc-third li {
        text-align: left;
    }
    .vc-array-chosen.vc-is-active + .vc-buttons-down button {
        display: inline-block;
    }

    .vc-buttons-down button {
        color: #000 !important;
        padding: 18px 10px;
        font-size: 18px;
        font-weight: bold;
        border: 0px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        flex: 1 1 calc(50% - 10px);
        background: #fff;
    }

    .vc-buttons-down {
        text-align: center;
        display: flex;
        gap: 5px;
        position: relative;
        z-index: 1;
    }

    .vc-buttons-down button:hover {
        background: #515151;
        color: #fff !important;
    }

    .vc-dialog-holder {
        width: 100%;
    }

    .vc-form-container {
        padding: 0px 25px;
    }
	.dm-vc-flex.vc-body-holder.vc-body-blur:before {
		opacity: 0;
		visibility: hidden;
	}
	.dm-vc-half.vc-height.vc-bg {
        height: calc(100vh - 86px);
        transition: 1s ease;
	 }
	.vc-dialog ul {
		max-height: 85%;
	}
}

@media (max-width: 880px) {
	
	
	.hide-till-mobile.dm-button {
		margin: 50px 0px 20px;
	}


	.dm-overlay-on-load .dm-vc-third li {
		font-size: 16px;
	}

	.dm-overlay-on-load .dm-vc-third {
		overflow: auto;
		width: 100%;
		flex: 1 1 100%;
		flex-direction: initial;
	}

	.hide-till-mobile.dm-button {
		margin: 50px 0px 20px;
		flex: 1 1 100%;
	}

	.vc-inline-buttons {
		justify-content: center;
	}

	.dm-vc-half.vc-height.vc-bg {
		top: 86px;
	}


	.dm-overlay-on-load .dm-vc-third li {
		font-size: 16px;
	}

	.dm-vc-half.vc-height.vc-bg > div {
		padding: 50px 30px 40px;
	}

	.vc-form-container {
		overflow: auto;
	}

	/* Color */

	.vc-bottom-body-nav ul * {
		color: #000;
	}

	.vc-bottom-body-nav .vc-how-to * {
		color: #fff !important;
	}

	.vc-full-body-form {
		padding: 30px 0px 100px;
	}
	.dm-overlay-on-load {
		padding-bottom: 60px;
		background: #000;
	}
}

@media (max-width: 768px) {
    .vc-chosen-part li div {
        font-size: 13px;
    }
    .dm-overlay-on-load .dm-vc-third {
        padding: 0px 20px;
    }
    .vc-how-to {
        top: auto;
        bottom: 0px;
        transform: translateY(180px);
    }

    .vc-modal-container {
        padding: 80px 20px;
    }

    .vc-popup {
        padding: 0px 10px;
    }

    .vc-modal-container button {
        padding: 15px 20px;
        font-size: 15px;
    }

    .vc-main-body {width: 100%;}

    button.vc-turn {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .vc-body {
        margin: 0px 40px;
    }

    .vc-bottom-body-nav {
        left: 0px;
    }

    .dm-vc-half.vc-height.vc-bg > div {
        padding: 60px 30px 106px;
    }

    .dm-selections {
        overflow: visible;
        height: auto;
        padding: 0px;
    }

    .vc-array-chosen {
        overflow-y: auto;
        flex: 1 0 0;
    }

    .vc-buttons-down {
        padding-top: 20px;
    }

    .vc-buttons-down button {
        flex: 1 1 100%;
        padding: 15px 10px;
    }

    .vc-buttons-down {
        flex-wrap: wrap;
    }

    .vc-bottom-body-nav ul {
        padding-left: 20px;
    }

    button.vc-full-body {
        right: 15px;
    }
    .vc-modal-container a {
        padding: 15px 20px;
        font-size: 15px;
    }

    .vc-inline-buttons {
        display: flex;
    }
}

@media (max-width: 640px) {
	.vc-form-container {
		height: 100%;
	}
	.vc-array-chosen.vc-is-active + .vc-buttons-down button {
		padding: 10px;
		font-size: 14px;
	}
	.vc-dialog li label {
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 14px;
	}
}