.bk_stories__elements {
    display: flex;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: 0;
    margin: 0 -10px 0 0;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    align-items: first baseline;
    width: 106%
}

.bk_stories__elements::-webkit-scrollbar {
    display: none
}

.bk_stories__elements__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    cursor: pointer;
    user-select: none;
    margin-left: .75rem;
    float: right
}

.bk_stories__elements__item:last-child {
    margin-left: 0
}

.bk_stories__elements__item__picture {
    position: relative;
    width: 100px;
    height: 100px
}

.bk_stories__elements__item__picture--img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px !important;
    transform: translate(-50%, -50%);
    border-radius: 50% !important
}

.bk_stories__elements__item__picture--circle {
    fill: none;
    stroke: var(--bk-border-color);
    stroke-linecap: round;
    stroke-width: 2;
    stroke-dasharray: 1;
    stroke-dashoffset: 0
}

.bk_stories__elements__item__title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1rem;
    overflow-wrap: break-word;
    color: #333;
    margin: .25rem 0
}

.bk_stories__elements__item.loading .bk_stories__elements__item__picture--circle {
    animation: 6s ease-out infinite alternate stroke-draw
}

.bk_stories__elements__item.seen {
    opacity: .75
}

.bk_stories__elements__item.seen .bk_stories__elements__item__picture--circle {
    stroke: #ddd
}

.bk_stories__box {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 3%, .5);
    overflow: hidden;
    z-index: 999999999;
    -webkit-backdrop-filter: blur(1+px);
    backdrop-filter: blur(1px);
}

.bk_stories__box.opened,
.bk_stories__box__actions__mute.visible,
.bk_stories__box__actions__playing.visible {
    display: block
}

.bk_stories__box__elements {
    display: block;
    position: relative;
    width: 100vh;
    max-width: 100vw;
    height: 100vh;
    background-color: hsl(0deg 0% 53% / 11%);
    overflow: hidden;
    margin: 0 auto;
    -webkit-backdrop-filter: blur(p);
    backdrop-filter: blur(1px);
}

.bk_stories__box__elements__slides__wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 56.25vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    transition: transform .25s cubic-bezier(.8, 0, .2, 1);
    will-change: auto;
    touch-action: manipulation;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backdrop-filter: blur(2rem);
    backdrop-filter: blur(2rem);
    overflow: hidden
}

.bk_stories__box__elements__slides__item {
    display: block;
    position: relative;
    width: 100vh;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    will-change: opacity;
    opacity: 0;
    filter: blur(0);
    transition: opacity .5s, filter .25s
}

.bk_stories__box__elements__slides__item.active {
    opacity: 1
}

.bk_stories__box__elements__slides__item--content {
    display: block;
    position: relative;
    width: 100vh !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    padding: 0;
    margin: 0 !important;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    pointer-events: none
}

.bk_stories__box__elements__slides__item--link {
    z-index: 9999999999;
    display: block;
    position: absolute;
    right: 50%;
    bottom: 25%;
    background-color: #fff;
    transform: translateX(50%);
    color: #333;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px
}

.bk_stories__box__elements__bars {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    padding: 10px 5px 87px;
    z-index: 2
}

.bk_stories__box__elements__bars::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, .5), transparent)
}

.bk_stories__box__elements__bars__item {
    display: block;
    position: relative;
    border-radius: 3px;
    width: calc(100% / 5 - 6px);
    height: 3px;
    margin: 0 3px;
    cursor: pointer;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .4)
}

.bk_stories__box__elements__bars__item span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background-color: #fff;
    will-color: auto;
    transform: translateX(-101%) rotate(0)
}

.bk_stories__box__elements__bars__item.seen span {
    transform: translateX(0) rotate(0)
}

.bk_stories__box__elements__bars__item.animate span {
    -webkit-animation: linear both bks-bar;
    animation: linear both bks-bar
}

.bk_stories__box__elements__bars__item.paused span {
    animation-play-state: paused
}

.bk_stories__box__actions__close,
.bk_stories__box__actions__next,
.bk_stories__box__actions__prev {
    display: block;
    position: absolute;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    width: 32px;
    height: 32px
}

.bk_stories__box__actions__next,
.bk_stories__box__actions__prev {
    top: calc(50% - 16px);
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden;
    opacity: .85;
    transition: opacity .25s
}

.bk_stories__box__actions__next::before,
.bk_stories__box__actions__prev::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    width: 12px;
    height: 12px;
    border-right: 4px solid #555;
    border-bottom: 4px solid #555
}

.bk_stories__box__actions__prev {
    right: calc(50% - 35vh - 80px)
}

.bk_stories__box__actions__prev::before {
    left: 8px;
    transform: rotate(-45deg)
}

.bk_stories__box__actions__next {
    left: calc(50% - 35vh - 80px)
}

.bk_stories__box__actions__next::before {
    right: 8px;
    transform: rotate(-225deg)
}

.bk_stories__box__actions__close {
    top: 50px;
    left: calc(34% - 120px)
}

.bk_stories__box__actions__close::after,
.bk_stories__box__actions__close::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 25px;
    background-color: #fff
}

.bk_stories__box__actions__close::before {
    transform: rotate(45deg)
}

.bk_stories__box__actions__close::after {
    transform: rotate(-45deg)
}

.bk_stories__box__actions__mute,
.bk_stories__box__actions__playing {
    display: none;
    position: absolute;
    top: 39px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    z-index: 5
}

.bk_stories__box__actions__mute {
    left: calc(38% - 120px);
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none"><path fill="%23fff" fill-rule="evenodd" d="M27.53 16.97a.95.95 0 0 1 1.1-.76c.75.13 2.28.7 3.63 1.9a7.71 7.71 0 0 1 2.62 5.95c0 1.86-.55 3.32-1.33 4.45l-1.38-1.37c.48-.8.8-1.81.8-3.08 0-2.16-.92-3.59-1.97-4.53a6.43 6.43 0 0 0-2.7-1.45.95.95 0 0 1-.77-1.1z" clip-rule="evenodd"/><path fill="%23fff" fill-rule="evenodd" d="M27.54 21.03a.95.95 0 0 1 1.14-.72c.7.16 2.5 1.19 2.5 3.71 0 .7-.15 1.28-.36 1.76l-1.56-1.52c.05-.6-.07-1.25-.48-1.71-.23-.26-.47-.36-.51-.38 0 0-.01 0 0 0a.95.95 0 0 1-.73-1.14z" clip-rule="evenodd"/><path fill="%23fff" d="M23.4 16.79v1.56l1.9 1.9v-4.27c0-.3-.12-.6-.29-.84a1.59 1.59 0 0 0-.7-.57c-.29-.11-.61-.16-.9-.1-.3.06-.61.21-.82.42l-1.31 1.34 1.33 1.34.8-.78z"/><path stroke="%23fff" stroke-linecap="round" stroke-width="1.9" d="m20.12 18.73-1.76 1.81h-2.59c-.94 0-1.7.76-1.7 1.7v3.45c0 .93.75 1.68 1.67 1.7l2.6.04 4.9 4.9a.65.65 0 0 0 1.1-.46v-9.1"/><path stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m17.13 15.36 17.2 17.19"/><path stroke="%23fff" stroke-linecap="round" stroke-width="1.9" d="M28.47 30.84A7.2 7.2 0 0 0 31 29.67"/></svg>')
}

.bk_stories__box__actions__mute.unmute {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none"><path stroke="%23fff" stroke-linecap="round" stroke-width="1.9" d="M28.47 17.14c1.15.2 5.46 1.98 5.46 6.92 0 4.95-4.39 6.63-5.46 6.83"/><path stroke="%23fff" stroke-linecap="round" stroke-width="1.8" d="M28.47 21.24c.37.08 1.75.79 1.75 2.78 0 1.99-1.4 2.67-1.75 2.74"/><path stroke="%23fff" stroke-linecap="round" stroke-width="1.9" d="m18.36 27.48 4.88 4.9a.65.65 0 0 0 1.1-.46V16.09c0-.58-.7-.87-1.1-.45l-4.88 4.94h-2.59c-.94 0-1.7.77-1.7 1.7v3.45c0 .93.75 1.69 1.67 1.7l2.62.05z"/></svg>')
}

.bk_stories__box__actions__playing {
    left: calc(40% - 80px);
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none"><path stroke="%23fff" stroke-linecap="round" stroke-width="2.1" d="M20.33 16.86v15.4m7.34-15.4v15.4"/></svg>')
}

.bk_stories__box__actions__playing[data-state*=paused] {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none"><path stroke="%23fff" stroke-linecap="round" stroke-width="1.9" d="M17.74 30.34V18.53a1.8 1.8 0 0 1 2.77-1.52l9.23 5.92a1.8 1.8 0 0 1 0 3.03l-9.23 5.9a1.8 1.8 0 0 1-2.77-1.52z"/></svg>')
}

@keyframes stroke-draw {
    from {
        stroke: var(--bk-border-color);
        stroke-dasharray: 1
    }

    to {
        stroke: var(--bk-border-color);
        transform: rotate(180deg);
        stroke-dasharray: 8
    }
}

@keyframes bks-bar {
    from {
        transform: translateX(101%) rotate(0)
    }

    to {
        transform: translateX(0) rotate(0)
    }
}

@media only screen and (max-width: 720px) {

    .bk_stories__box__actions__mute,
    .bk_stories__box__actions__playing {
        top: 29px;
        left: calc(36% - 80px)
    }

    .bk_stories__box__actions__close {
        top: 40px;
        left: calc(25% - 83px)
    }

    .bk_stories__box__elements__slides__item--link {
        bottom: 15%
    }
}ul.jcaa_attr_select, ul.jcaa_attr_select li{
	margin:0;
	padding:0;
}

ul.jcaa_attr_select{
	overflow: hidden;
	margin-bottom: -5px;
}

.jcaa_attr_variable_select .jcaa_attr_option:hover{
	cursor: pointer;
}

.jcaa_attr_variable_select .jcaa_attr_option.jcass_attr_disable:hover{
	cursor: default;
}

.jcaa_attr_select li{
	display: inline-block;
	width: auto !important;
}

.jcaa_attr_option{
	display: block;
	margin: 0 !important;
}

.jcaa_attr_select li img{
	margin-bottom: 0 !important;
}/**
 * Optional styles
 */

.jcaa_attr_select.jcaa_rounded_corners li, .jcaa_attr_select.jcaa_rounded_corners li .jcaa_attr_option{
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}

ul.jcaa_attr_variable_select{
	margin-bottom: 5px;
}

a.jcaa_attr_option {
	padding-left: 5px;
	padding-right: 5px;	
}

a.jcaa_attr_option:hover{
	text-decoration: inherit;
}

.variations ul.jcaa_attr_select{
	margin-bottom: -5px;
}

ul.jcaa_attr_select li{
	float:left;
	margin-right: 5px;
	margin-bottom: 5px;
	/*border: 1px solid #333;*/
}

ul.jcaa_attr_select li:first-child{
	margin-left: 0;
}

.shop_attributes td{
	vertical-align: middle;
}/*

THIS FILE IS OVERWRITTEN EVERY TIME YOU UPDATE THE PLUGIN.
USE THE CUSTOM CSS OPTION IN THE SUBSCRIPTION SETTING PANEL FOR YOUR
CUSTOM CSS RULES.

*/

div.tnp-subscription, div.tnp-profile,
form.tnp-subscription, form.tnp-profile {
    display: block;
    margin: 1em auto;
    max-width: 500px;
    width: 100%;
}

/* Generic field wrapper */
.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field
{
    margin-bottom: .7em;
    border: 0;
    padding: 0;
}

.tnp-subscription label,
.tnp-profile label
{
    display: block;
    color: inherit;
    font-weight: normal;
    line-height: normal;
    padding: 0;
    margin: 0;
    margin-bottom: .25em;
    font-size: .9em;
}

.tnp-subscription .tnp-field-checkbox label,
.tnp-profile .tnp-field-checkbox label
{
    display: inline-block;
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea
{
    width: 100%;
    padding: .7em;
    display: block;
    border: 1px;
    color: #444;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    font-size: 1em;
    margin: 0;
    line-height: normal;
    box-sizing: border-box;
}

.tnp-subscription input[type=checkbox],
.tnp-widget input[type=radio],
.tnp-profile input[type=checkbox]
{
    /* Fixes some bad themes CSS */
    max-width: 1em;
    display: inline-block;
    margin-right: .5em;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-subscription select option,
.tnp-profile select option
{
    margin-right: .75em;
}

.tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit
{
    background-color: #444;
    color: #fff;
    width: auto;
    height: auto;
    margin: 0;
}

@media all and (max-width: 480px) {
    .tnp-subscription input[type=submit],
    .tnp-profile input[type=submit] {
        width: 100%;
    }
}

.tnp-widget {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.tnp-widget .tnp-field {
    margin-bottom: 10px;
    border: 0;
    padding: 0;
}

.tnp-widget label {
    display: block;
    color: inherit;
    font-size: 14px;
}

.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
    width: 100%;
    padding: 10px;
    display: block;
    border: 1px solid #ddd ;
    border-color: #ddd;
    background-color: #f4f4f4;
    background-image: none;
    text-shadow: none;
    color: #444;
    font-size: 14px;
    line-height: normal;
    box-sizing: border-box;
    height: auto;
}

.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
    width: auto;
    display: inline-block;
}

/* Antireset - http://www.satollo.net/css-and-select-space-between-the-options-and-the-arrow */
.tnp-widget select option {
    margin-right: 10px;
}

.tnp-widget input.tnp-submit {
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    margin: 0;
}

.tnp-field input[type="submit"] {
    position: inherit;
}

.tnp-field label {

}

/* Newsletter Widget Minimal */

.tnp-widget-minimal {
    width: 100%;
}

.tnp-widget-minimal form {
    margin: 0;
    padding: 0;
    border: 0;
}

.tnp-widget-minimal input.tnp-email {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
}

.tnp-widget-minimal input.tnp-submit {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    border-radius: 0px;
    height: auto;
    margin: 0;
}

/* The minimal form */

.tnp-subscription-minimal {
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}

.tnp-subscription-minimal form {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    white-space: nowrap;
}

.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name
{
    width: 70%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin-right: 10px;
}

.tnp-subscription-minimal.with-name input.tnp-email,
.tnp-subscription-minimal.with-name input.tnp-name
{
    width: 31%;
}

.tnp-subscription-minimal .tnp-privacy-field {
    margin-top: 10px;
}

/* Some of these styles are overridden by theme styles... */
.tnp-subscription-minimal input.tnp-submit {
    width: 29%;
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0px;
    margin: 0;
}

.tnp-subscription-posts {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2rem;
}

.tnp-subscription-posts .tnp-subscription {
    max-width: auto;
    margin: 0;
}

@media all and (max-width: 525px) {
    .tnp-subscription-minimal.with-name input.tnp-email,
    .tnp-subscription-minimal.with-name input.tnp-name,
    .tnp-subscription-minimal input.tnp-submit
    {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
        margin-bottom: .5rem;
    }
}

/* Comments Extension */
.tnp-comments {
    clear: both;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tnp-comments label {
    display: block;
}

.tnp-comments input[type=checkbox] {
    display: inline-block;
    width: auto!important;
}


/* Locked Content Extension */
.tnp-lock {
    clear: both;
    display: block;
    box-sizing: border-box;
    box-shadow: none;
    margin: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.tnp-nl-checkout {
    margin-bottom: 1em;
}

			.dgwt-wcas-ico-magnifier,.dgwt-wcas-ico-magnifier-handler{max-width:20px}.dgwt-wcas-search-wrapp{max-width:600px}		
            .variations option:disabled,
            .select-option.disabled {
                display: none !important;
            }
            
                .ar-panel-expanded .ar-cart,        .ar-order,        .ar-panel-interior a:hover        {            background:  !important;        }        .ar-amount a {            color:  !important;        }    

		/**
		 * Dynamic Styles
		 */
		ul.jcaa_attr_variable_select .jcaa_attr_option:hover{
		 	border-color:#333333 !important;
		 }
		
		.jcaa_attr_select .jcaa_attr_option, .jcaa_attr_select .jcaa_attr_option.jcass_attr_disable:hover{
			border: 2px solid #FFFFFF !important;
		}

				.jcaa_attr_select.jcaa_size_small .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_small .jcaa_obj_color.jcaa_attr_option{
			width: 20px;
			height: 20px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_small .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_small .jcaa_obj_color.jcaa_attr_option{
            width: 20px;
            height: 20px;
        }

		.jcaa_attr_select.jcaa_size_small .jcaa_obj_text.jcaa_attr_option{
			line-height: 20px;
			font-size:10px;
		}
				.jcaa_attr_select.jcaa_size_medium .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_medium .jcaa_obj_color.jcaa_attr_option{
			width: 30px;
			height: 30px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_medium .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_medium .jcaa_obj_color.jcaa_attr_option{
            width: 30px;
            height: 30px;
        }

		.jcaa_attr_select.jcaa_size_medium .jcaa_obj_text.jcaa_attr_option{
			line-height: 30px;
			font-size:15px;
		}
				.jcaa_attr_select.jcaa_size_large .jcaa_obj_image.jcaa_attr_option, .jcaa_attr_select.jcaa_size_large .jcaa_obj_color.jcaa_attr_option{
			width: 40px;
			height: 40px;
		}

        .upsells.products .jcaa_attr_select.jcaa_size_large .jcaa_obj_image.jcaa_attr_option, .upsells.products .jcaa_attr_select.jcaa_size_large .jcaa_obj_color.jcaa_attr_option{
            width: 40px;
            height: 40px;
        }

		.jcaa_attr_select.jcaa_size_large .jcaa_obj_text.jcaa_attr_option{
			line-height: 40px;
			font-size:20px;
		}
		
		ul.jcaa_attr_select li{
			border: 1px solid #DDDDDD;
		}

		.jcaa_attr_select .jcaa_active_attr{
			border-color: #333333;
		}

		.jcaa_attr_select .jcass_attr_disabled{
			opacity: 0.2;
		}

				.jcaa_attr_select .jcaa_active_attr .jcaa_attr_option:hover{
			border: 2px solid #FFFFFF !important;
			cursor: default;
		}
		
		
			span.technicalspecs-value{
    direction: rtl;
    text-align: right;
}

span.vendor-warranty::before{
	    color: green!important;
}
span.vendor-warranty{
	    color: green!important;
	   font-size: 14px !important;
}

i.fa.fa-info-circle.alert-box-icon{
		  color: red!important;

}

p.alert-box-text{
	  color: red!important;
	   font-size: 14px !important;
}
		.bakala-messanger.msg-item-instagram span{background:linear-gradient(90deg,#8224E3 0%, #DD3333 100%);background:-moz-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-webkit-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-o-linear-gradient(0deg,#8224E3 0%, #DD3333 100%);background:-ms-linear-gradient(0deg,#8224E3 0%, #DD3333 100%)}
    .lr_alert {
        color: #fff;
    }

    .auth__container .alert-simple.alert-warning {
        border: 1px solid rgba(241, 142, 6, 0.81);
        background-color: rgba(220, 128, 1, 0.16);
        box-shadow: 0px 0px 2px #ffb103;
        color: #ff4b03;
        transition: 0.5s;
        cursor: pointer;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
    }

    .auth__container .alert-warning:hover {
        background-color: rgba(220, 128, 1, 0.33);
        transition: 0.5s;
    }

    .auth__container .warning {
        font-size: 18px;
        color: #ff4b03;
        text-shadow: none;
    }

    .auth__container .alert:before {
        content: '';
        position: absolute;
        width: 0;
        height: calc(100% - 44px);
        border-right: 1px solid;
        border-left: 2px solid;
        border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        height: 30px;
    }

    .auth__container .alert>.start-icon {
        margin-right: 0;
        min-width: 20px;
        text-align: center;
    }

    .auth__container .alert>.start-icon {
        margin-right: 5px;
    }

                            a.c-header__btn-user {
                              display: flex;
                              align-items: center;
                              justify-content: center;
                            }

                            a.c-header__btn-user:after {
                              content: unset;
                            }
                          
        .animationDivInnerNav {
            position: absolute;
            height: 39px;
            top: 0;
            z-index: -1;
            opacity: 0.5;
            background-color: #d9d8d8;
            border-radius: 12px;
            transition: all .5s ease 0s;
        }

        .bg-transparent,
        .bg-transparent:hover {
            background: transparent !important;
        }

        .zIndex-high {
            z-index: 999999999;
        }

        /* Classic dropdown styles */
        .classic-submenu {
            display: none;
            position: absolute;
            background: #fff;
            padding: 10px 0;
            list-style: none;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-radius: 5px;
            top: 100%;
            right: 0;
        }

        .has-submenu:hover>.classic-submenu {
            display: block;
        }

        /* ensure parent li positions absolute submenu correctly */
        .bk_menu li.has-submenu {
            position: relative;
        }

        .classic-submenu li a {
            padding: 8px 20px;
            display: block;
            white-space: nowrap;
            color: #333;
            transition: all 0.2s ease;
        }

        .classic-submenu li a:hover {
            background-color: #f5f5f5;
            color: #000;
        }

        .classic-submenu .sub-menu {
            display: none;
            position: absolute;
            top: 0;
            right: 100%;
            background: #fff;
            padding: 10px 0;
            list-style: none;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }

        .classic-submenu li.has-submenu:hover>.sub-menu {
            display: block;
        }

        .classic-submenu li.has-submenu {
            position: relative;
        }

        /* Ensure overlay doesn't block mouse interactions with submenus */
        .bakala-submenu-overlay {
            pointer-events: none;
        }
    
			#addToCartModal .modal-content {
				overflow-y: auto;
			}
		