:root {
    --primary-color: 233, 38, 39;
    --primary-color-light: #FFF9F1;
    --primary-color-dark: #000;
    /* --primary-color-dark-2: #875AA6; */
    --primary-color-gradient: linear-gradient(145deg, #f2e6fb 45.13%, #f1d6f4 85%);
    --secondary-color: 216, 244, 47;
    /* --secondary-color-light: #FDE6F0; */
    /* --secondary-color-gradient: linear-gradient(104.95deg, #FFE5F9 45.13%, #FFD4F5 85%); */
    --text-color: #262626;
    --link-color: #E92627;
    --white: 255, 255, 255;
    --black: 0, 0, 0;
    --grey: 177, 177, 177;
    --heading-font: 'Inter', sans-serif;
    ;
    --content-font: 'Inter', sans-serif;
    ;
    --number-font: 'Inter', sans-serif;
    ;
    --bg-light-blue: #E6FCFF;
    --blue-color-gradient: linear-gradient(145deg, #e6fcff 45.13%, #d0e6ff 85%);
    --yellow-dark: #FF8A00;
    --yellow-light: #FFF3C9;
    --orange-light: #FFEBED;
    --shadow-secondary-color: rgba(128, 6, 214, 0.15) 0 35px 100px;
    --bg-grey-light: #F3F4F6;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F4F0EB;
    border-radius: 10px
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #F4F0EB;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.4)
}
html {
    scroll-behavior: smooth;
}
@-webkit-keyframes moveCodeSamplesLeft {
    to {
        -webkit-transform: translateX(-3950px);
        transform: translateX(-3950px)
    }
}

@keyframes moveCodeSamplesLeft {
    to {
        -webkit-transform: translateX(-3950px);
        transform: translateX(-3950px)
    }
}

@-webkit-keyframes moveCodeSamplesRight {
    to {
        -webkit-transform: translateX(2250px);
        transform: translateX(2250px)
    }
}

@keyframes moveCodeSamplesRight {
    to {
        -webkit-transform: translateX(2250px);
        transform: translateX(2250px)
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

::-moz-selection {
    color: var(--text-color);
    background: #FDDE74
}

::selection {
    color: var(--text-color);
    background: #FDDE74
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6)
    }

    100% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0)
    }
}

@keyframes shadow-pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6)
    }

    100% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0)
    }
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(5px, 0)
    }
}

@keyframes MoveUpDown {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(0, 50px)
    }
}

body {
    font-family: var(--content-font);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6em;
    color: var(--text-color);
    background-color: rgba(var(--white), 1);
}

a {
    color: var(--text-color);
    outline: 0;
    text-decoration: none
}

a,
a:visited {
    text-decoration: none;
    outline: 0;
    color: var(--text-color);
}

a:focus {
    color: var(--text-color);
    text-decoration: underline;
    outline: 0
}

a:hover {
    color: rgba(var(--primary-color), 1);
    text-decoration: underline;
    outline: 0;
}

a:hover {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

a:focus,
a:active,
a:visited {
    text-decoration: none;
    outline: 0
}

svg {
    fill: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--text-color);
    line-height: 1.3em;
    font-weight: 600;
    padding: 0 0 15px;
    margin: 0
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--text-color)
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: rgba(var(--primary-color), 1)
}

h1 {
    font-size: 38px;
}

h1.h1_large {
    font-size: 48px
}

h1.h1_xxlarge {
    font-size: 50px;
    line-height: 1.2em
}

h2 {
    font-size: 40px;
}

h2.h2_xlarge {
    font-size: 48px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 21px;
    font-weight: 600;
}

h5 {
    font-size: 19px;
    font-weight: 600;
}

h6 {
    font-size: 17px;
    font-weight: 600;
}

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

em {
    font-style: italic
}

strong,
b {
    font-weight: 700
}

.font-weight-500 {
    font-weight: 500
}
.font-weight-600 {
    font-weight: 600
}
.font-weight-700 {
    font-weight: 700
}
.font-weight-800 {
    font-weight: 700
}
.text-xs p,
.text-xs {
    font-size: 14px !important;
    line-height: 1.3em !important
}

.text-sm p,
.text-sm {
    font-size: 12px !important;
    line-height: 1.2em !important
}

.text-medium p,
.text-medium {
    font-size: 16px !important;
    line-height: 1.6em !important
}

.text-large p,
.text-large {
    font-size: 17px !important;
    line-height: 1.6em !important
}

.text-xlarge p,
.text-xlarge {
    font-size: 18px !important;
    line-height: 1.6em !important
}

.text-xxlarge p,
.text-xxlarge {
    font-size: 20px !important;
    line-height: 1.6em !important
}

.line-spacing-sm {
    line-height: 1.2em !important
}

.line-spacing-xs {
    line-height: 1em !important
}

.text-primary,
a.text-primary:hover {
    color: rgba(var(--primary-color), 1) !important
}

.text-secondary,
a.text-secondary:hover {
    color: rgba(var(--secondary-color), 1) !important
}

.text-secondary svg,
svg.text-secondary {
    fill: rgba(var(--secondary-color), 1);
}

.text-secondary-gradient {
    background: -webkit-linear-gradient(0deg, #33F5D3 0%, #4b9aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.text-link-color {
    color: var(--link-color) !important;
}

.hlt-highlight {
color: rgba(var(--black), 1) !important;
    background-color: #E92627;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    width: 25%;
}

.text-grey {
    color: #aaaaaa !important
}

.text-white {
    color: rgba(var(--white), 1) !important
}

.bg-grey {
    background: #F3F4F6 !important
}

.bg-grey-light {
    background: var(--bg-grey-light) !important
}

.bg-none {
    background: none !important
}

.bg-primary-light {
    background: var(--primary-color-light) !important
}

.bg-primary {
    background: rgba(var(--primary-color), 1) !important
}

.bg-primary-dark {
    background: var(--primary-color-dark) !important
}

.bg-primary-gradient {
    background: var(--primary-color-gradient) !important
}

.bg-secondary {
    background: rgba(var(--secondary-color), 1) !important
}

.bg-secondary-gradient {
    background: var(--secondary-color-gradient) !important
}

.bg-secondary-light {
    background: var(--secondary-color-light) !important
}

.bg-blue-light {
    background: var(--bg-light-blue) !important;
}

.bg-blue-light-gradient {
    background: var(--blue-color-gradient) !important;
}

.bg-orange-light {
    background: var(--orange-light) !important;
}

.shadow-secondary-color {
    box-shadow: var(--shadow-secondary-color) !important;
}

.shadow-right-bottom {
    box-shadow: 5px 5px 10px rgba(var(--black), 0.2)
}

.pt-80 {
    padding-top: 90px
}

.pb-80 {
    padding-bottom: 90px
}

.py-80 {
    padding-top: 90px;
    padding-bottom: 90px
}

.my-80 {
    margin-top: 90px;
    margin-bottom: 90px
}

.mt-80 {
    margin-top: 90px
}

.mb-80 {
    margin-bottom: 90px
}

.icon-f img {
    max-height: 70px
}

.icon-f svg {
    max-height: 60px
}

.icon-w img {
    width: 70px
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10
}

.sticky-top.sticky-with-header {
    top: 87px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0
}

ol li {
    width: calc(100% - 20px);
    list-style-type: decimal;
    list-style-position: outside;
    margin: 7px 0 7px 20px
}

ul,
ol {
    margin-bottom: 20px
}

.bg-primary-dark h1,
.bg-primary-dark h2,
.bg-primary-dark h3,
.bg-primary-dark h4,
.bg-primary-dark h5,
.bg-primary-dark h6,
.bg-primary-dark a {
    color: #fff;
}

.bg-primary-dark p {
    color: #C2C4D1;
}

.custom-ordered-list {
    list-style: none;
    counter-reset: my-awesome-counter
}

.custom-ordered-list li {
    counter-increment: my-awesome-counter;
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    margin: 7px 0
}

.custom-ordered-list li::before {
    content: counter(my-awesome-counter) ".";
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    font-family: 'Crabmeal', sans-serif;
    top: 4px;
    left: 0
}

.check-list .custom-ordered-list {
    padding-left: 20px;
    margin-top: 10px;
}

.check-list .custom-ordered-list li {
    padding-left: 0;
    font-size: inherit;
    margin: 2px 0;
}

.check-list .custom-ordered-list li:before {
    display: none;
}

.check-list dt {
    position: relative;
    padding-left: 28px;
    margin: 7px 0;
    font-weight: 500;
}

.check-list dt:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cstyle%3Esvg%7Bfill:%23b36ae6%7D%3C/style%3E%3Cpath d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
    width: 15px;
    height: 15px;
    position: absolute;
    top: 2px;
    left: 0;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    h1 {
        font-size: 35px
    }

    h1.h1_large {
        font-size: 38px
    }

    h1.h1_xxlarge {
        font-size: 40px;
        line-height: 1.4em
    }

    h2 {
        font-size: 28px
    }

    h2.h2_xlarge {
        font-size: 40px
    }
}

@media (max-width: 767px) {
    body {
        letter-spacing: .01em
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.25em;
    }

    h1 {
        font-size: 32px
    }

    h1.h1_large {
        font-size: 34px
    }

    h1.h1_xxlarge {
        font-size: 36px;
        line-height: 1.3em
    }

    h2 {
        font-size: 28px
    }

    h2.h2_xlarge {
        font-size: 38px
    }

    h3 {
        font-size: 24px
    }

    .pt-80 {
        padding-top: 50px
    }

    .pb-80 {
        padding-bottom: 50px
    }

    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .my-80 {
        margin-top: 50px;
        margin-bottom: 50px
    }

    .mt-80 {
        margin-top: 50px
    }

    .mb-80 {
        margin-bottom: 60px
    }

    .container {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 40px
    }

    h1.h1_large {
        font-size: 44px;
        line-height: 1.2em
    }

    h1.h1_xxlarge {
        font-size: 50px;
        line-height: 1.3em
    }

    h2 {
        font-size: 38px;
        line-height: 1.3em;
    }

    h2.h2_xlarge {
        font-size: 48px
    }

    h3 {
        font-size: 28px
    }

    h4 {
        font-size: 24px
    }


    body {
        font-size: 17px
    }

    .text-small p,
    .text-small {
        font-size: 13px !important;
        line-height: 1.6em;
    }

    .text-medium p,
    .text-medium {
        font-size: 18px !important
    }

    .text-large p,
    .text-large {
        font-size: 20px !important
    }

    .text-xlarge p,
    .text-xlarge {
        font-size: 25px !important
    }

    .text-xxlarge p,
    .text-xxlarge {
        font-size: 30px !important
    }

    .container {
        max-width: 1290px;
        padding-left: 20px;
        padding-right: 20px
    }

    .w-108 {
        width: 108% !important
    }

}

picture,
video {
    display: block
}

source,
img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
    line-height: .5em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0
}

.border-radius {
    border-radius: 20px
}

.border-radius-sm {
    border-radius: 15px
}

.border-radius-100 {
    border-radius: 100px;
}

.border-bottom-gradient {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(var(--white), 1), rgba(var(--grey), 0.8), rgba(var(--white), 1));
    border-image-slice: 1;
}

.content_main {
    width: 100%;
    float: left;
    background: rgba(var(--white), 1)
}

input {
    outline: 0 !important;
    outline-width: 0 !important
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=search-md]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=text]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
textarea.md-textarea:focus:not([readonly]) {
    border: 1px solid var(--text-color);
    -webkit-box-shadow: none;
    box-shadow: none
}

.form-control:focus {
    color: var(--text-color);
    background: rgba(var(--white), 1) !important;
    border-color: rgba(var(--black)) !important;
    box-shadow: none;
    outline: 0
}

input[type=date]:focus:not([readonly])+label,
input[type=datetime-local]:focus:not([readonly])+label,
input[type=email]:focus:not([readonly])+label,
input[type=number]:focus:not([readonly])+label,
input[type=password]:focus:not([readonly])+label,
input[type=search-md]:focus:not([readonly])+label,
input[type=search]:focus:not([readonly])+label,
input[type=tel]:focus:not([readonly])+label,
input[type=text]:focus:not([readonly])+label,
input[type=time]:focus:not([readonly])+label,
input[type=url]:focus:not([readonly])+label,
textarea.md-textarea:focus:not([readonly])+label {
    color: var(--text-color);
    font-weight: 500
}

select.form-control {
    height: 45px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    padding: 2px 20px !important;
    outline-color: inherit
}

select::-ms-expand {
    display: none
}

select.form-control:focus {
    outline: 0;
    background: rgba(var(--white), 1) url(../images/icons/arrow_down.png) no-repeat right 20px center !important;
    background-size: 11px 11px !important;
    outline: none;
    box-shadow: none;
    outline-color: inherit
}

select.form-control option {
    font-weight: 500;
    padding: 6px 10px
}

select.form-control:not([size]):not([multiple]) {
    background: rgba(var(--white), 1) url(../images/icons/arrow_down.png) no-repeat right 18px center;
    background-size: 11px 11px
}

.form-group {
    margin-bottom: 1.5em
}

.form-control {
    width: 100%;
    height: 45px;
    background: rgba(var(--white), 1);
    border: 1px solid rgba(var(--grey), 0.8);
    font-weight: 400;
    font-size: 15px;
    border-radius: 8px;
    padding: 6px 18px;
    box-sizing: border-box;
    color: var(--text-color)
}

textarea.form-control {
    height: 90px
}

.input-group .btn:not(:disabled):not(.disabled):hover,
.input-group .btn:not(:disabled):not(.disabled):active,
.input-group .btn:not(:disabled):not(.disabled):focus {
    transform: translateY(0) !important
}

.input-group .form-control {
    border-radius: 30px;
}

.input-group .input-group-text {
    border-radius: 0 12px 12px 0;
    border-color: rgba(var(--grey), 0.8);
}

.input-group .btn {
    border-radius: 0px 30px 30px 0px !important;
    padding: 10px 25px;
}

.input-group .form-control:focus+.btn {
    box-shadow: 0 12px 5px -5px rgba(0, 0, 0, 0.1);
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1) !important;
}

.input-group .form-control.error+.btn,
.input-group .form-control.error+.btn:active,
.input-group .form-control.error+.btn:not(:disabled):active,
.input-group .form-control.error+.btn:not(:disabled):focus,
.input-group .form-control.error:focus+.btn {
    background: #e41212
}

.input-group .form-control.error,
.input-group .form-control.error:focus {
    border-color: #e41212 !important
}

label {
    position: relative
}

.col-form-label {
    padding-top: calc(.6rem + 1px)
}

@media (max-width: 991px) {
    .col-form-label {
        padding-top: 0
    }
}

@media (max-width: 767px) {
    .input-group.mob-fw {
        flex-direction: column
    }

    .input-group.mob-fw .form-control {
        border-bottom-right-radius: 12px !important;
        border-top-right-radius: 12px !important;
        margin-bottom: 6px;
        width: 100% !important;
    }

    .input-group.mob-fw .btn {
        width: 100%;
        border-radius: 12px !important;
        padding: 6px 0;
        height: 38px
    }
}

@media (min-width: 1366px) {
    select {
        height: 45px !important
    }

    .form-control {
        height: 45px;
        font-size: 16px;
        padding: 10px 18px
    }
}

.getstarted_signup {
    position: relative
}

.wrong-entry {
    animation: wrong-log .5s
}

@-moz-keyframes wrong-log {

    0%,
    100% {
        left: 0
    }

    20%,
    60% {
        left: 8px
    }

    40%,
    80% {
        left: -8px
    }
}

@-webkit-keyframes wrong-log {

    0%,
    100% {
        left: 0
    }

    20%,
    60% {
        left: 8px
    }

    40%,
    80% {
        left: -8px
    }
}

@keyframes wrong-log {

    0%,
    100% {
        left: 0
    }

    20%,
    60% {
        left: 8px
    }

    40%,
    80% {
        left: -8px
    }
}

.check-cus,
.radio-cus {
    width: 100%;
    display: inline-block;
    position: relative
}

.check-cus input[type=checkbox],
.radio-cus input[type=radio] {
    display: none
}

.check-cus label,
.radio-cus label {
    width: auto;
    padding-left: 30px !important;
    font-weight: 500;
    position: relative;
    font-size: 16px;
    margin: 0;
    cursor: default !important
}

.check-cus label:before,
.radio-cus label:before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 1px solid #333333;
    position: absolute;
    top: 5px;
    border-radius: 100%;
    left: 0;
    z-index: 5
}

.check-cus label:after,
.radio-cus label:after {
    content: '';
    width: 7px;
    height: 7px;
    background: rgba(var(--white), 1);
    position: absolute;
    top: 10px;
    border-radius: 100%;
    left: 5px;
    display: none
}

.check-cus label:before {
    border-radius: 3px
}

.check-cus label:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z' fill='%23fff'/%3E%3C/svg%3E");
    width: 11px;
    height: 11px;
    background: none;
    position: absolute;
    line-height: 11px;
    top: 8px;
    border-radius: 100%;
    left: 3px;
    display: none;
    z-index: 6;
}

.check-cus input[type=checkbox]:checked+label:after,
.radio-cus input[type=radio]:checked+label:after {
    display: block;
    z-index: 5;
}

.check-cus input[type=checkbox]:checked+label:before,
.radio-cus input[type=radio]:checked+label:before {
    border-color: rgba(var(--primary-color), 1)
}

.check-cus input[type=checkbox]:checked+label:before,
.radio-cus input[type=radio]:checked+label:before {
    border-color: rgba(var(--primary-color), 1);
    background: rgba(var(--primary-color), 1);
    color: rgba(var(--white), 1);
}

.md-form .form-group {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 26px
}

.md-form .form-group label {
    width: 100%;
    display: inline-block;
    color: rgba(var(--grey), 1);
    font-size: 15px;
    z-index: 2;
    cursor: text;
    position: absolute;
    left: 0;
    top: 14px;
    line-height: 1.2em;
    margin-bottom: 0;
    padding: 0 0 0 16px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.md-form .form-group label span {
    background: #ffffff;
    padding: 0 4px;
    line-height: 1em
}

.md-form .form-group label span sup {
    margin-left: 2px
}

.md-form .form-control {
    border-color: rgba(var(--grey), 1)
}

.md-form .form-control:focus {
    background-color: transparent
}

.md-form .ProjectNamelabel label,
.md-form .form-control:focus~label,
.md-form .form-control.not-empty~label,
.md-form .form-control.valid~label,
.md-form select.form-control~label,
.md-form .country-select label {
    top: -6px;
    font-size: 13px;
    color: rgba(var(--black), 0.8);
    z-index: 6
}



.md-form #li-vatNumber .input-group .input-group-text {
    border-width: 2px;
    border-right: none;
    border-radius: 0 0 0 22px;
    padding: 0 20px;
    font-weight: 700
}

.md-form #li-vatNumber .form-group label {
    top: -6px;
    font-size: 13px;
    color: var(--text-color)
}


.md-form #li-vatNumber .input-group {
    flex-wrap: nowrap
}

.md-form .form-control:focus~label span,
.md-form .form-control.not-empty~label span {
    background: rgba(var(--white), 1);
    color: rgba(var(--black), 0.8)
}

.md-form span.error {
    width: 100%;
    float: left;
    position: static !important;
    margin-top: 3px !important;
    margin-bottom: -7px !important;
    z-index: 5;
    color: #e41212;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: .01em;
    padding-right: 10px;
    padding-left: 10px;
    text-align: right
}

.md-form .form-control.error,
.md-form .form-control.is-empty {
    border-color: #e41212
}

.md-form .form-control.error:focus {
    border-color: #e41212 !important
}

.bg-paper-tear2 .md-form .form-control {
    background: none;
    border-color: #333333
}

.bg-primary-light .md-form .form-group label span {
    background: var(--primary-color-light);
}

.bg-primary-light .md-form .form-group .form-control,
.bg-primary-light .md-form .form-group .form-control:focus {
    background: var(--primary-color-light) !important;
}

.bg-grey-light .md-form .form-group label span {
    background: var(--bg-grey-light) !important;
}

.bg-grey-light .md-form .form-group .form-control,
.bg-grey-light .md-form .form-group .form-control:focus {
    background: var(--bg-grey-light) !important;
}

.bg-grey-light .md-form .form-group select.form-control,
.bg-grey-light .md-form .form-group select.form-control:focus {
    background: var(--bg-grey-light) url(../images/icons/arrow_down.png) no-repeat right 20px center !important;
    background-size: 11px 11px !important;
}

.bg-primary-light .md-form .form-group select.form-control,
.bg-primary-light .md-form .form-group select.form-control:focus {
    background: var(--primary-color-light) url(../images/icons/arrow_down.png) no-repeat right 20px center !important;
    background-size: 11px 11px !important;
}

.exception_message,
.exception_message2,
.exception_message3 {
    position: fixed;
    top: 20px;
    right: -245px;
    min-width: 240px;
    max-width: 380px;
    background: rgba(var(--secondary-color), 1);
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding: 10px 35px 10px 15px;
    transition: all .35s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.18) 0 0 8px;
    color: rgba(var(--white), 1);
    border-radius: 5px;
    z-index: 1015
}

.exception_message .alert_close,
.exception_message2 .alert_close,
.exception_message3 .alert_close {
    font-weight: bold;
    font-size: 20px;
    top: 7px;
    right: 10px;
    position: absolute;
    cursor: pointer
}

.exception_message #exception_message_content ul,
.exception_message2 #exception_message_content2 ul,
.exception_message3 #exception_message_content3 ul {
    margin-bottom: 0
}

button,
button:focus {
    outline: 0
}

.btn,
.cta {
    padding: 12px 30px;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    border-radius: 8px;
    color: rgba(var(--white), 1) !important;
    border: none;
}

.btn svg,
.cta svg {
    width: 13px;
    height: 13px;
    margin-top: -3px;
    margin-left: 0.25em;
}

.cta:not(:disabled):not(.disabled):hover,
.cta:not(:disabled):not(.disabled):focus,
.cta:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled):hover,
.btn:not(:disabled):not(.disabled):focus,
.btn:not(:disabled):not(.disabled):active {
    box-shadow: 0 12px 5px -5px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-1px) !important;
    text-decoration: none
}

.btn:disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
    background-color: rgba(var(--grey), 0.8) !important;
}

.cta,
.btn.btn-primary {
    background-color: #fff;
	color: #333!important;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease
}


.cta:not(:disabled):not(.disabled):focus,
.cta:not(:disabled):not(.disabled):active,
.cta:not(:disabled):not(.disabled):active,
.cta:not(:disabled):not(.disabled):hover,
.btn.btn-primary:not(:disabled):not(.disabled):focus,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:not(:disabled):not(.disabled):hover {
    background-color: #E92627!important;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    color: #fff !important;
    outline: 0
}

.btn.btn-outline-primary {
    border: 2px solid #E92627;
    color: #E92627 !important;
    background-color: transparent !important;
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn.btn-outline-primary:not(:disabled):not(.disabled):focus,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn.btn-outline-primary:not(:disabled):not(.disabled):hover {
    background-color: #E92627 !important;
    border: 2px solid #E92627;
    color: rgba(var(--white), 1) !important
}

.btn.btn-secondary {
    color: #fff !important;
    background-color: #E92627;
}

.btn.btn-secondary:not(:disabled):not(.disabled):focus,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.btn.btn-secondary:not(:disabled):not(.disabled):hover {
    color: rgba(var(--black), 1) !important;
    background-color: #fff;

}

.btn.btn-outline-secondary {
    border: 2px solid rgba(var(--primary-color), 1);
    color: #fff !important;
    background-color: transparent !important;
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn.btn-outline-secondary:not(:disabled):not(.disabled):focus,
.btn.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn.btn-outline-secondary:not(:disabled):not(.disabled):hover {
    background-color: rgba(var(--secondary-color), 1) !important;
    border: 2px solid rgba(var(--secondary-color), 1);
    color: rgba(var(--black), 1) !important;
}

.btn.btn-grey {
    background-color: rgba(var(--black), 0.8);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.btn.btn-grey:not(:disabled):not(.disabled):focus,
.btn.btn-grey:not(:disabled):not(.disabled):active,
.btn.btn-grey:not(:disabled):not(.disabled):active,
.btn.btn-grey:not(:disabled):not(.disabled):hover {
    background-color: #979797;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    color: rgba(var(--white), 1);
    outline: 0;
    box-shadow: none
}

.btn.btn-dark {
    background-color: #1F2937;
}

.btn.btn-dark:not(:disabled):not(.disabled):focus,
.btn.btn-dark:not(:disabled):not(.disabled):active,
.btn.btn-dark:not(:disabled):not(.disabled):active,
.btn.btn-dark:not(:disabled):not(.disabled):hover {
    background-color: rgba(var(--primary-color), 1) !important;
    color: rgba(var(--white), 1) !important
}

.btn.btn-outline-dark {
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color-dark) !important;
    background-color: transparent !important;
    padding-top: 11px;
    padding-bottom: 11px;
}

.btn.btn-outline-dark svg {
    width: 17px;
    height: 17px;
    top: 2px;
    position: relative;
}

.btn.btn-outline-dark:not(:disabled):not(.disabled):focus,
.btn.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn.btn-outline-dark:not(:disabled):not(.disabled):hover {
    background-color: var(--primary-color-light) !important;
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--primary-color), 1) !important
}

.btn.btn-outline-dark:not(:disabled):not(.disabled):focus svg,
.btn.btn-outline-dark:not(:disabled):not(.disabled):active svg,
.btn.btn-outline-dark:not(:disabled):not(.disabled):active svg,
.btn.btn-outline-dark:not(:disabled):not(.disabled):hover svg {
    fill: rgba(var(--primary-color), 1) !important
}

.btn.btn-sm {
    padding: 9px 15px 7px;
    font-size: 13px
}

.btn.btn-outline-primary.btn-sm {
    padding: 7px 15px 5px
}

.btn.btn-with-arrow {
    position: relative;
    padding-right: 65px;
}

.btn.btn-with-arrow:after {
    content: '';
    width: 18px;
    height: 20px;
    background: url("../images/icons/arrow-right-long.svg") no-repeat right center;
    background-size: 100% auto;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn.btn-sm svg {
    width: 15px;
    height: 15px;
    top: 0px;
    position: relative
}

.btn.btn-lg {
    padding: 20px 35px;
    font-size: 20px;
    border-radius: 17px;
}

.btn.btn-outline-primary.btn-lg {
    padding: 13px 28px 11px
}

.btn.btn-lg i {
    font-size: 19px;
    top: 2px;
    position: relative
}

.btn-play {
    width: 55px;
    height: 55px;
    position: relative;
    padding-left: 72px
}

.btn-play:after {
    content: '';
    width: 55px;
    height: 55px;
    display: inline-block;
    border-radius: 50px;
    border: 4px solid transparent;
    background: linear-gradient(45deg, rgba(var(--primary-color), 1), rgba(var(--secondary-color), 1)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 100%;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    animation: shadow-pulse 2s infinite;
    position: absolute;
    top: 0;
    left: 0
}

.btn-play svg {
    width: 20px;
    height: 20px;
    fill: rgba(var(--black));
    position: absolute;
    top: 50%;
    left: calc(50% - 16px);
    transform: translateX(-50%);
    transform: translateY(-50%);
}

.play-video:hover .btn-play {
    -webkit-animation: btn-play-anim 0.3s forwards;
    animation: btn-play-anim 0.45s forwards;
}

.play-video:hover b {
    color: rgba(var(--primary-color), 1);
}

@-webkit-keyframes btn-play-anim {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes btn-play-anim {
    60% {
        -webkit-transform: scale3d(0.8, 0.8, 1);
        transform: scale3d(0.8, 0.8, 1);
    }

    85% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.search-form .btn svg {
    width: 18px;
    height: 18px;
    margin-top: -5px;
    margin-left: 0;
}

.link-video {
    position: relative;
    color: var(--link-color);
}


.link-video svg {
    width: 20px;
    height: 20px;
    fill: var(--link-color);
}

.link-video {
    position: relative;
    color: var(--link-color);
}

.link-more {
    position: relative;
    color: var(--link-color);
}

.link-video:visited,
.link-video:active,
.link-video:focus,
.link-more:visited,
.link-more:active,
.link-more:focus {
    color: var(--link-color);
}

.link-more:after {
    content: '';
    background: url('../images/icons/arrow01.svg') no-repeat;
    width: 15px;
    height: 15px;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 5px;
    background-size: 15px 15px;
}

.link-more svg {
    width: 13px;
    height: 13px;
    position: relative;
    top: 0px;
}

.link-more:hover {
    text-decoration: none
}

.link-more-long {
    position: relative;
    font-weight: 500;
    padding-right: 32px;
    color: var(--text-color);
}

.link-more-long svg {
    width: 16px;
    height: 17px;
    margin-left: 7px;
    fill: var(--text-color);
}

.link-more-long svg.icon-lg {
    width: 28px;
    height: 28px;
}

.link-more-long:hover {
    color: var(--text-color) !important;
}


/* Video Container */
.hlt-videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 30px
}

.hlt-videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

a.btn:hover svg {
    fill: #fff;
}

a.btn:focus svg {
    fill: #fff;
}

a.btn:active svg {
    fill: #fff;
}

.link-more:hover {
    text-decoration: none
}

.link-more.no-anim svg {
    animation: none
}

.link-more.link-back {
    padding-right: 0;
    font-size: 15px;
    font-weight: 500;
}

.link-more.link-back svg {
    top: -3px;
    margin-right: 9px;
    width: 16px;
    height: 16px;
    fill: var(--link-color);
}

.link-more.link-back:after {
    display: none;
}

.btn.link-more svg {
    top: -2px;
}

.hlt_intro p svg {
    width: 18px;
    fill: #aaaaaa;
    margin-top: -5px;
}

.sumome-share-client-circle {
    display: inline-block
}

.hlt-social-links li {
    display: inline-block
}

.hlt-social-links a {
    width: 36px !important;
    height: 36px !important;
    float: left !important;
    text-align: center !important;
    line-height: 36px !important;
    background: #e92627 !important;
    border-radius: 0 20px 20px 20px !important;
    padding: 0 !important;
    margin-right: 8px !important
}

.hlt-social-links li a svg {
    fill:#ffffff !important;
    margin-right: 0 !important;
    width: 14px !important;
    height: 14px;
}

.hlt-social-links a:hover {
    background: #eeeeee !important
}

.hlt-social-links a:hover svg {
	fill:#000!important;
	
}
.hlt-social-links a:hover i {
    color: #000000 !important
}

.hlt-social-links .a2a_kit {
    height: 36px
}

.hlt-social-links .a2a_kit a:last-of-type {
    margin-right: 0 !important
}

.hlt-social-links .a2a_kit a .a2a_svg {
    width: 22px !important;
    height: 22px !important
}

.hlt-social-links .a2a_kit a .a2a_svg svg {
    filter: grayscale(1) brightness(0)
}

.hlt-social-links .a2a_kit a span {
    background-color: transparent !important;
    margin: 7px
}

.sumome-share-client-circle a.sumome-share-client-share {
    border-radius: 0 20px 20px 20px !important;
    background: #bbbbbb !important
}

.sumome-share-client-circle a.sumome-share-client-share:hover {
    background: #000000 !important
}

.check-list,
.ordered-check-list {
    width: 100%;
    display: inline-block;
}

.check-list li {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 25px;
    margin: 7px 0
}

.ordered-check-list li {
    width: 100%;
    float: left;
    position: relative;
    margin: 7px 0
}

.check-list li:before {
    content:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 44 44' fill='none'%3E%3Cpath d='M22 0.666687C33.7822 0.666687 43.3334 10.2178 43.3334 22C43.3334 33.7822 33.7822 43.3334 22 43.3334C10.2178 43.3334 0.666687 33.7822 0.666687 22C0.666687 10.2178 10.2178 0.666687 22 0.666687ZM29.1111 24.6667C30.584 24.6667 31.7778 23.4729 31.7778 22C31.7778 20.5271 30.584 19.3334 29.1111 19.3334C28.8187 19.3334 26.9547 19.3334 24.6667 19.3334C24.6667 17.0454 24.6667 15.1805 24.6667 14.8889C24.6667 13.416 23.4729 12.2222 22 12.2222C20.5271 12.2222 19.3334 13.416 19.3334 14.8889C19.3334 15.1805 19.3334 17.0454 19.3334 19.3334C17.0454 19.3334 15.1814 19.3334 14.8889 19.3334C13.416 19.3334 12.2222 20.5271 12.2222 22C12.2222 23.4729 13.416 24.6667 14.8889 24.6667C15.1814 24.6667 17.0454 24.6667 19.3334 24.6667C19.3334 26.9547 19.3334 28.8196 19.3334 29.1111C19.3334 30.584 20.5271 31.7778 22 31.7778C23.4729 31.7778 24.6667 30.584 24.6667 29.1111C24.6667 28.8196 24.6667 26.9547 24.6667 24.6667C26.9547 24.6667 28.8187 24.6667 29.1111 24.6667Z' fill='%23E92627'/%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0px;
    left: 0;
}

.check-list.column-2 li {
    width: 50%;
    float: left;
    padding-right: 20px;
    margin: 7px 0
}

.z-index-10 {
    z-index: 10 !important;
}


.integrations {
    background: #fbfafe;
}

.wrapper_main {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    padding-top: 70px;
}

.swipe-area {
    position: fixed;
    width: 10px;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1001;
    display: none
}

.hlt-offcanvas {
    background: rgba(var(--white), 1);
    position: fixed;
    width: 100%;
    height: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: height .4s ease-in-out;
    -moz-transition: height .4s ease-in-out;
    -ms-transition: height .4s ease-in-out;
    -o-transition: height .4s ease-in-out;
    transition: height .4s ease-in-out;
    z-index: 1005;
    overflow-y: auto;
    padding: 0 20px;
}

.hlt-offcanvas ul {
    width: 100%;
    max-width: 540px;
    float: none;
    margin: 0 auto;
    list-style: none
}

.hlt-offcanvas ul>li {
    width: 100%;
    float: left;
    border-bottom: 1px dotted var(--text-color);
    padding: 10px 0
}

.hlt-offcanvas ul>li>a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.hlt-offcanvas ul li.current-menu-item>a,
.hlt-offcanvas ul li>a.active {
    color: rgba(var(--primary-color), 1);
    font-weight: 700
}

.hlt-offcanvas ul li.menu-item-has-children>a:after {
    content: '';
    font-weight: 700;
    transition: transform .2s ease;
    position: absolute;
    right: 0;
    top: 3px;
    width: 15px;
    height: 20px;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M360.5 217.5l-152 143.1C203.9 365.8 197.9 368 192 368s-11.88-2.188-16.5-6.562L23.5 217.5C13.87 208.3 13.47 193.1 22.56 183.5C31.69 173.8 46.94 173.5 56.5 182.6L192 310.9l135.5-128.4c9.562-9.094 24.75-8.75 33.94 .9375C370.5 193.1 370.1 208.3 360.5 217.5z'/%3E%3C/svg%3E");
}

.hlt-offcanvas ul li.menu-item-has-children>a.active:after {
    transform: rotateZ(180deg)
}

.hlt-offcanvas ul li ul li.current-menu-item a {
    color: rgba(var(--primary-color), 1)
}

.hlt-offcanvas ul li ul li.menu_with_icon a {
    position: relative;
    padding-left: 60px !important
}

.hlt-offcanvas ul li ul li.menu_with_icon {
    position: relative;
    line-height: 1.2em
}

.hlt-offcanvas ul li ul li.menu_with_icon i {
    position: absolute;
    left: 13px;
    top: 50%;
    font-size: 28px;
    color: rgba(var(--primary-color), 1);
    transform: translateY(-50%)
}

.hlt-offcanvas aside {
    width: 100%;
    display: inline-block;
    padding: 0 20px;
}

.hlt-offcanvas .btns-center {
    width: 100%;
    float: left;
    padding: 10px 30px 70px 30px
}

.hlt-offcanvas .btns-center .btn {
    width: calc(100% - 20px);
    max-width: 230px;
    margin: 10px 10px;
}

.open-offcanvas .swipe-area {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: block
}

.open-offcanvas .hlt-offcanvas {
    height: 100%;
    padding: 80px 0 120px
}

body.open-offcanvas {
    overflow: hidden
}

.menu-toggle {
    width: 55px;
    height: 55px;
    position: relative;
    z-index: 99;
    overflow: hidden;
    cursor: pointer;
    margin: -3px -5px 0 0
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    left: 0
}

.open-offcanvas .hamRotate {
    transform: rotate(45deg)
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round
}

.ham .top {
    stroke-dasharray: 40 160
}

.ham .middle {
    stroke-dasharray: 40 142;
    transform-origin: 50%;
    transition: transform 400ms
}

.ham .bottom {
    stroke-dasharray: 40 85;
    transform-origin: 50%;
    transition: transform 400ms, stroke-dashoffset 400ms
}

.open-offcanvas .ham .top {
    stroke-dashoffset: -64px
}

.open-offcanvas .ham .middle {
    transform: rotate(90deg)
}

.open-offcanvas .ham .bottom {
    stroke-dashoffset: -64px
}

.hlt-header.menu-shrink,
.hlt-ppc-header.menu-shrink {
    background: var(--primary-color-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-filter-backdrop-filter: blur(10px);
    -o-filter-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.05) 1px 0 5px;
}

.hlt-header,
.hlt-ppc-header {
    width: 100%;
    display: inline-block;
    padding: 2px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    background: rgb(0 0 0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hlt-header .container:first-child {
    max-width: 1600px;
}

.hlt-mega-menu .container {
    max-width: 1290px !important;
    padding-left: 20px;
    padding-right: 20px
}

.hlt-header .logo svg,
.hlt-ppc-header .logo svg {
    max-height: 32px
}

.hlt-header nav {
    display: inline-block;
    vertical-align: middle;
    position: static;
}

.hlt-header nav ul>li {
    float: left;
    margin-right: 25px;
}

.hlt-header nav ul>li:last-child {
    margin-right: 0
}

.hlt-header nav ul>li>a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    color: white
}

.hlt-header nav ul li a:hover {
    color: rgba(var(--primary-color), 1);
    text-decoration: none
}

.hlt-header nav ul li.current-menu-item>a,
.hlt-header nav ul li.active>a {
    color: rgba(var(--primary-color), 1);
}

.hlt-header .btns-right {
    display: inline-block;
    vertical-align: middle
}

.hlt-header .btn-outline-primary {
    margin-right: 10px
}

.hlt-mega-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 0px;
    padding: 0;
    display: none;
    background: white;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-block: 1px solid #d9d9d9;
    color: #252525;

}

.hlt-header.dark-mode {
    background: white;
    color: #252525;
}

.hlt-header.dark-mode nav ul>li>a,
.hlt-header.dark-mode a {
    color: #252525;
}

.hlt-header a {
    color: white;
}

.hlt-header.dark-mode .btn-outline-secondary {
    color: #252525 !important;
}

.hlt-header.dark-mode svg,
.hlt-header.dark-mode svg path {
    fill: #000000;
}

.hlt-mega-menu .border-right-gradient {
    position: relative;
}

.hlt-mega-menu .border-right-gradient:after {
    content: '';
    width: 1px;
    height: 100%;
    background-image: linear-gradient(#D1D5DB, #FFFFFF);
    position: absolute;
    right: 0;
    top: 0;
}

.hlt-header nav ul li.active a {
    color: rgba(var(--primary-color), 1);
    text-decoration: none;
}

@media (min-width: 1200px) {
    .hlt-header nav ul li.menu-item-has-children>a {
        padding-right: 15px;
        position: relative
    }

    .hlt-header nav ul li.menu-item-has-children>a:after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
        transition: transform .2s ease;
        position: absolute;
        right: 0;
        width: 10px;
        top: calc(50% + 1px);
        transform: translateY(-50%);
    }

    .hlt-header.dark-mode nav ul li.menu-item-has-children>a:after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23333' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
    }

    .hlt-header nav ul li.menu-item-has-children.active>a:after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230062f9' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
        width: 10px;
        transform: translateY(calc(-50% + 1px)) rotateZ(180deg);
    }

    .hlt-header nav ul li.menu-item-has-children:hover>a:after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230062f9' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
        width: 10px;

    }

}

@media (min-width: 1200px) {
    .hlt-header nav ul>li {
        margin-right: 32px
    }

    .hlt-header nav ul>li>a {
        font-size: 17px
    }
}

@media (min-width: 992px) and (max-width: 1365px) {

    .hlt-header .logo img {
        max-height: 23px
    }

    .hlt-header nav ul>li {
        font-size: 14px;
        margin-right: 25px
    }

    .hlt-header .btn {
        font-size: 12.5px;
        padding: 10px 17px 8px
    }

    .hlt-header .btn-outline-primary {
        padding: 8px 17px 6px;
        margin-left: 5px
    }
}

@media (max-width: 1199px) {
    .wrapper_main {
        padding-top: 58px
    }

    .hlt-header {
        padding: 5px 0 !important
    }

    .hlt-header .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .hlt-header .menu-container {
        width: auto !important;
    }

    .hlt-header .logo {
        margin-top: 2px
    }

    .hlt-header .logo img {
        max-height: 35px
    }

    .hlt-header nav,
    .hlt-header .btns-right {
        display: none !important
    }

    .hlt-header.menu-shrink {
        padding: 5px 0 !important
    }
}

@media (max-width: 679px) {
    .hlt-header .logo img {
        max-height: 35px
    }
}

.hlt-card {
    width: 100%;
    background: #E5ecf9;
    border-radius: 20px
}

.hlt-card .hlt-card-head,
.hlt-card .hlt-card-body,
.hlt-card .hlt-card-foot {
    padding: 30px
}

.hlt-card-green {
    background: #D5FFFE;
}

.shape {
    filter: drop-shadow(3px 3px 3px #000000)
}

/* .shape:after {
    content: '';
    background: url(../images/shadow.svg) no-repeat bottom right; 
    background-size: 90% 90%;
    width: 532px;
    height: 592px;
    position: absolute;
    bottom: -8%;
    right: -7%;
    z-index: 1;
    opacity: 0.5;
}
.shape-left:after {
    bottom: -15%;
    left: -13%;
} */
/* Footer */
.hlt-footer .f_top aside {
    width: 18%;
    float: left;
}

.hlt-footer .f_top-rt aside {
    width: 20%;
}

.hlt-footer .f_top aside:nth-child(3) {
    width: 24%;
    float: left
}

.hlt-footer .f_top aside ul {
    margin-bottom: 0
}

.hlt-footer .f_top aside ul li {
    margin: 12px 0;
    font-size: .88em;
    line-height: 1.4em
}

.hlt-footer .f_top aside .f_logo {
    margin-bottom: 26px
}

.hlt-footer .f_top aside:last-child ul li i {
    color: #E92627;
    margin-right: 3px
}

.hlt-footer .f_top-rt aside ul li svg {
    width: 18px
}

.hlt-footer .f_top-rt aside .social-links li {
    margin: 5px 0
}

.hlt-footer .f_bottom {
     width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid;
}

.hlt-footer .f_bottom ul {
    float: left;
    margin: 0 0 10px
}

.hlt-footer .f_bottom p,
.hlt-footer .f_bottom ul li {
    font-size: 14px
}

.hlt-footer .f_bottom ul li {
    display: inline-block;
    margin-right: 15px
}

.hlt-footer .f_bottom .social-links li {
    margin: 0
}

.hlt-footer .img-footer {
    text-align: right;
    margin-right: 20%;
    margin-bottom: -60px
}

.hlt-footer .img-footer source,
.hlt-footer .img-footer img {
    width: 230px
}

@media(max-width: 1199px) {
    .hlt-footer .f_top {
        padding-bottom: 0 !important
    }

    .hlt-footer .f_top aside {
        width: 23%;
        margin-bottom: 30px
    }

    .hlt-footer .f_top aside:nth-child(3) {
        width: 36%
    }

    .hlt-footer .f_top .f_top-lt aside:last-child {
        width: 18%
    }

    .hlt-footer .f_top .f_top-rt aside:last-child {
        width: 100%;
        margin-bottom: 0
    }
}

@media(max-width: 991px) {
    .hlt-footer .f_top aside {
        margin-bottom: 20px
    }

    .hlt-footer .f_top-rt aside h6 {
        padding-bottom: 0
    }

    .hlt-footer .f_top-rt aside .img-heap,
    .hlt-footer .f_top-rt aside ul,
    .hlt-footer .f_top-rt aside ul li {
        width: auto;
        display: inline-block;
        vertical-align: middle
    }

    .hlt-footer .f_top aside ul.sl-social-links {
        width: 100%
    }
}

@media(max-width: 767px) {
    .hlt-footer .f_top .f_top-lt {
        column-count: 2
    }

    .hlt-footer .f_top aside {
        width: 100%;
        margin-bottom: 20px
    }

    .hlt-footer .f_top aside h6 {
        padding-bottom: 8px
    }

    .hlt-footer .f_top .f_top-lt aside {
        -webkit-break-inside: avoid;
        break-inside: avoid
    }

    .hlt-footer .f_top aside:nth-child(3) {
        width: 100%
    }

    .hlt-footer .f_top aside:nth-child(4) {
        width: 100%
    }

    .hlt-footer .f_top aside:last-child,
    .hlt-footer .f_top .f_top-lt aside:last-child {
        width: 100%;
        margin: 10px 0 0
    }

    .hlt-footer .f_bottom {
        flex-direction: column-reverse
    }

    .hlt-footer .f_bottom ul li {
        margin: 0 15px !important
    }

    .hlt-footer .f_bottom ul li a {
        margin: 0 !important
    }

    .hlt-footer .img-footer {
        text-align: right;
        margin-right: 20%;
        margin-bottom: -30px
    }

    .hlt-footer .img-footer source,
    .hlt-footer .img-footer img {
        width: 115px
    }
}

/* Home page */
/* .hlt-hero-bg-1 {
    position: relative;
    padding: 180px 0;
    color: rgba(var(--white), 1);
    background: var(--primary-color-dark);
    height: 100vh;
}
.hlt-hero-bg-1 h1 {color: rgba(var(--white), 1);}

.hlt-hero-video {
    position: absolute;
    width: 48%;
    height: auto;
    bottom: 0;
    right: 0;
} */
/* ----------------------------------- */
.hlt-hero-bg-1 {
    position: relative;
    color: rgba(var(--white), 1);
    background: url(../images/hero-bg.svg) no-repeat center;
    height: 100vh;
	    background-attachment: fixed;
    background-size: cover;
}

.hlt-hero-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 47%;
    /* Adjust the width based on your design */
    height: auto;
    max-width: none;
}

.hlt-hero .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
}

@media (max-width: 767px) {
    .hlt-hero-bg-1 {
        height: auto;
		background-attachment: unset;
    }

    .hlt-hero-video {
        position: inherit;
        width: 100%;
    }
}





.hlt-keypoint p:first-child {
    border-right: 2px solid #E92627
}

.hlt-key-card {
    width: 100%;
    background: rgba(var(--white), 1);
    border-radius: 12px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}


.hlt-key-card .hlt-key-cardbody {
    padding: 30px
}

.hlt-key-card .txt-count {
    font-size: 75px;
    min-height: 90px;
    font-weight: 800;
    line-height: 1em;
    background: -webkit-linear-gradient(339deg, #056dfb 10%, #26b8fd 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* @media (min-width: 992px){
    .hlt-key-card .txt-count {
        font-size: 100px;
        min-height: 120px;
    } 
}*/
.hlt-key-card .txt-count span {
    font-size: 55px;
}

.hlt-excta svg {
    width: 15px;
}

.hlt-key-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.hlt-key-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 12px;
    height: 100%;
    background: linear-gradient(116deg, #056dfb 0%, #26b8fd 100%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hlt-key-card:hover h3,
.hlt-key-card:hover p,
.hlt-key-card:hover a {
    color: rgba(var(--white), 1);
}

.hlt-key-card:hover a svg {
    fill: rgba(var(--white), 1);
}

.hlt-key-card:hover .txt-count {
    -webkit-text-fill-color: rgba(var(--white), 1);
}

.hlt-line {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
}

.hlt-line:before {
    left: 0;
    bottom: 0;
    width: 85%;
    height: 2px;
    content: "";
    position: absolute;
    transition: all ease .5s;
    background: #c1ff00;
}

.hlt-line:hover:before {
    width: 0;
}

.hlt-line:after {
    content: '';
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    width: 14px;
    height: 14px;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 5px;
    background-size: 15px 15px;
}

.shape-image { position:absolute; opacity:0.5}
.shape-1 { right:0px;    top: 135px;}
.shape-2 { left:0px;    top: 135px;}
.shape-left { left:0px;    top: 80px; max-height:660px;}
.shape-right { right:0px;    top: 80px; max-height:660px;}
.bg-contact {   
    / ** background: url(../images/bg_contact.png) no-repeat center;**/
    background-attachment: fixed;
    background-size: cover;}
	.hlt-footer .menu-footer-menu-container ul li {margin-bottom:10px;}
	.hlt-footer .menu-footer-menu-container ul li a { color:#9f9f9f!important}
.feature-team1 .slick-track .slick-slide{ cursor: pointer; width: 150px !important; height: 500px; border-radius: 20px; position: relative; overflow: hidden; -webkit-transition: 0.3s; transition: 0.3s; margin: 8px; } 
.feature-team1 .slick-track { width: 100% !important; -webkit-transform: translate3d(0px, 0px, 0px) !important; transform: translate3d(0px, 0px, 0px) !important; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; gap: 2px; } 
.feature-team1 .slick-track .slick-current { width: 500px !important; }
@media(max-width: 1380px){ 
.feature-team1 .slick-track .slick-current { width: 380px !important; }
} 
.feature-team1 .slick-list {padding:0!important;}
.feature-team1 .slider-item::before { position: absolute; content: ""; top: 0; left: 0; width: 100%; height: 100%; background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.7))); background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%); -webkit-transition: 0.3s; transition: 0.3s; } 
.feature-team1 .slider-progress { position: absolute; overflow: hidden; content: ""; bottom: 30px; left: 20px; width: calc(100% - 40px); height: 8px; background: rgba(255, 255, 255, 0.2); border-radius: 4px; opacity: 0; -webkit-transition: 0.3s; transition: 0.3s; } 
.feature-team1 .slick-current::before, .feature-team1 .slick-current::after { opacity: 0; } 
.feature-team1 .slick-slide::after { position: absolute; content: url("../images/revamp/arrow-right-white.svg"); bottom: 30px; left: 50%; width: 22px; -webkit-transform: translateX(-50%); transform: translateX(-50%); -webkit-transition: 0.3s; transition: 0.3s; opacity: 1; } 
.feature-team1 .slick-slide .slider-progress { position: absolute; overflow: hidden; content: ""; bottom: 30px; left: 20px; width: calc(100% - 40px)!important; height: 8px; background: rgba(255, 255, 255, 0.2); border-radius: 4px; opacity: 0; -webkit-transition: 0.3s; transition: 0.3s; } 
.feature-team1 .slider-progress .progress-done { position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: #ffffff80; } 
.feature-team1 .slick-slide img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; -o-object-position: center center; object-position: center center; -webkit-transition: 0.3s; transition: 0.3s; } 
.feature-team1 .slick-current::before, .feature-team1 .slick-current::after { opacity: 0; } 
.feature-team1 .slick-current .slider-progress { opacity: 1; } 
.feature-team1 .slick-current .slider-progress .progress-done { -webkit-animation: featureTeamProgress 3.4s infinite linear; animation: featureTeamProgress 3.4s infinite linear; } @keyframes featureTeamProgress { 0% { width: 0%; } 100% { width: 100%; }
} 
@keyframes featureTeamProgress { 
0% { width: 0%; } 100% { width: 100%; }
} 
.section-our-values .card { position: relative; transition: box-shadow 0.3s, transform 0.3s; } 
.section-our-values .card:hover { box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); transform: scale(1.05); } 
.section-our-values .card p { transition: color 0.3s; } 
.section-our-values .card a { text-decoration: none; } 
.section-our-values .card a svg { color: #ffa800; } 
.section-our-values .card a span { display: none; transition: opacity 0.3s; color: #ffa800; text-decoration: none; outline: 0; } 
.section-our-values .card:hover a span { display: inline-block; opacity: 1; } 
.section-our-values .card img { width: 50px; transition: opacity 0.3s, transform 0.3s; } 
.section-our-values .card:hover img { transform: translateY(-20px); } 
.section-our-values .card:hover p, .section-our-values .card:hover h3 { transform: translateY(-20px); } 
.section-our-values .card svg polyline { transform: none; transition: none; } 
.section-our-values .card svg line { opacity: 1; transform: none; transition: none; } 
.section-our-values .card a:hover svg line, .section-our-values .card a:focus svg line, .section-our-values .card a:hover svg polyline, .section-our-values .card a:focus svg polyline { opacity: inherit; transform: none; transition: none; } 
.feature-team1 .slick-slide { box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 0px 1px rgba(0, 0, 0, 0.24); } 
.feature-team1 .slick-slide.slick-current.slick-center h3, .feature-team1 .slick-slide::after { display: none; } 
.feature-team1 .slick-slide::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgb(0 0 0 / 85%) 100%); } 
.feature-team1 .slick-slide.slick-current img { opacity: 1; } 
.feature-team2 img { width: 60px; } 
.feature-team1 .slick-slide h3 { font-size: 35px; writing-mode: vertical-rl; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); color: #ffff; margin: 25px 0px; } 
.slick-slide h3, .slick-slide.slick-current.slick-center img, .slick-current.slick-center::after { display: block; } 
@media (max-width:480px) { 
.feature-team1 .slick-track .slick-slide { height: 300px; } 
.feature-team1 .slick-slide h3 { font-size: 20px; } 
} 
.hlt-cold .check-list li { margin:3px 0;}
.hlt-cold .check-list li:last-child { margin-bottom:0;}

.contact-info-list .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: -o-linear-gradient( 289deg, var(--tj-theme-secondary) 0%, var(--tj-theme-primary) 100% );
    background: linear-gradient( 161deg, var(--tj-theme-secondary) 0%, var(--tj-theme-primary) 100% );
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
}
.light-mode .contact-info-list .icon-box i {
    color: #ffffff;
}
.light-mode .contact-form-box {
    background: #ffffff;
}
.woocommerce-page div.product div.images {
    opacity: 1 !important;
    visibility: visible !important;
}
.login-icon, .cart-icon {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    font-size: 16px;
    color: #333; /* Adjust as needed */
    position: relative;
}

.login-icon:hover, .cart-icon:hover {
    color: #E92627; /* Adjust hover color */
}

.cart-count {
    background: #E92627;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 4px 7px;
    position: absolute;
    top: -6px;
    right: -14px;
    line-height: 10px;
    font-weight: 800;
}
.woocommerce-MyAccount-navigation li { list-style:none;}
.woocommerce-MyAccount-navigation li a {
    border: 1px solid #ffffff78!important;
    padding: 10px 10px!important;
    border-bottom: none!important;
    display: block!important;
    text-align: center!important;
    border-radius: 2px!important;
    margin-top: 1px!important;
    font-weight: bold!important;
    background: #1d1c1d!important;    color: #c3c3c3;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    border: 1px solid #f3b880;
    height: 40px;
    padding: 10px 10px;
    border-radius: 5px;
}
.form-row textarea {     height: 140px!important;}
	.select2-container--default .select2-selection--single {height: 40px!important;
    padding: 10px 10px;
    border-radius: 5px!important;
    margin: 0!important;
    border: 1px solid #f3b880!important;}
	.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #5e5f5f!important;
    line-height: 20px!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {    top: 75%!important;    margin-left: -10px!important;}
.checkbox input[type=checkbox] {    top: 10px;}
.woocommerce button.button.alt, .woocommerce a.button.alt {color:#fff!important;}
.woocommerce ul.order_details {
    margin: 15px 0px 0px 0!important;;
    padding: 0!important;
}
.woocommerce .woocommerce-customer-details address {border:none!important;}
.single-product .heading {display:none} 
.product-count-view .fa-eye:before {
 animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Invisible at 50% */
  }
  100% {
    opacity: 1; /* Fully visible again */
  }
}
.single-product .quantity input {
    width: 90px!important;
    height: 45px;
    border-radius: 8px;
}
.woocommerce div.product form.cart .button {
padding: 12px 30px;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    border-radius: 8px;
    color: rgba(var(--white), 1) !important;
	border: none;    background-color: #1F2937;}
.entry-summary h1 { font-size:32px;}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #e92627!important;
    font-size: 1.05em!important;
	    padding-bottom: 8px;
}
.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 10px;
}
.product-count-view {    margin-bottom: 15px;}
.custom-product-description .check-list li {
font-size: 14px;
    margin: 0px 0;
}
.woocommerce div.product form.cart {
    margin-bottom: 15px;
}
.product-shipping-delivers li .content-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
 .product-shipping-delivers li .content-info svg {
  font-size: 25px;
    fill: #5e5e5e;
    margin-right: 15px;
    position: relative;
    top: -2px;
    width: 1em;
    height: 1em;
}
.content-info .content {font-size:14px;}
.single-product .sub_content, .woocommerce-page .sub_content { 	min-height: 450px;
    padding: 50px 0;}
.onsale { display:none}
.woocommerce div.product div.images.woocommerce-product-gallery {     border-radius: 18px;
    overflow: hidden;}
.wc-block-components-sidebar-layout .wc-block-components-main {    border: 1px solid #ffbabb;
    border-radius: 18px;
    padding: 30px;
    background: #fffdfd;}
.is-large.wc-block-cart .wc-block-components-sidebar  {    border: 1px solid #ffbabb;
    border-radius: 18px;
    padding: 30px;
   }
.wc-block-components-sidebar-layout .wc-block-components-main {

    width: 64%!important;
}
.wc-block-components-sidebar-layout {

    justify-content: space-between;
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 10px 35px;
    background: #000;
    color: #fff;
    border: 0;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    font-weight: 600;
    overflow: hidden;
}
.wc-block-components-button:not(.is-link){
    background: var(--button-color,#000);
    padding: 15px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    font-weight: 600;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    overflow: hidden;
}
.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
    border-radius: 8px!important;

    font-size: 14px!important;
    height: 46px!important;

}
.wc-blocks-components-select .wc-blocks-components-select__select {    font-size: 14px!important;
    height: 46px!important;border-radius: 8px!important;}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {

	font-size: 14px!important;}
.wc-block-components-sidebar {
    margin-top: 0!important;
}
.wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #e5e5e5!important;
    border-radius: 18px!important;
}
.woocommerce ul.order_details {
    margin: 15px 0px 15px 0px !important;
    padding: 15px!important;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
}
.is-medium.wc-block-components-sidebar-layout .wc-block-components-main, .is-medium.wc-block-components-sidebar-layout .wc-block-components-sidebar, .is-mobile.wc-block-components-sidebar-layout .wc-block-components-main, .is-mobile.wc-block-components-sidebar-layout .wc-block-components-sidebar, .is-small.wc-block-components-sidebar-layout .wc-block-components-main, .is-small.wc-block-components-sidebar-layout .wc-block-components-sidebar {
    padding: 30px!important;
    width: 100%!important;
}
.is-medium .wc-block-checkout__sidebar {
    display: none!important;
}
@media(max-width: 767px){ 
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2 {
    margin-bottom: 15px;
}
.woocommerce ul.order_details li {
    border-right: none;
    margin-bottom: 20px;
}
}