@charset "UTF-8";


html {    

    --primary-color: #0d6efd;
    --bg-primary-text-color: #fff;

    --secondary-color: #f7f7f7;
    --bg-secondary-text-color: #212529;

    /* text color */
    --text-primary: var(--primary-color);    
    --text-secondary: var(--secondary-color);
    --text-success: #198754;
    --text-info: #0dcaf0;
    --text-warning: #ffc107;
    --text-danger: #dc3545;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --text-white: #fff;
    --text-body: #000000;
    --text-muted: #6c757d;
    --text-black-50: rgba(0, 0, 0, .5);
    --text-white-50: rgba(255, 255, 255, .5);
    --text-reset: inherit;
    
    /* background color */
    --bg-primary: var(--primary-color);
    --bg-secondary: var(--secondary-color);
    --bg-success: #198754;
    --bg-info: #0dcaf0;
    --bg-warning: #ffc107;
    --bg-danger: #dc3545;
    --bg-light: #ffffff;
    --bg-dark: #212529;
    --bg-body: #fff;
    --bg-body-reverse: #f7f7fc; /* new added after check body bg 25-09-2021 */
    --bg-white: #fff;
    --bg-transparent: transparent;
    --bg-gradient: --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));

    /* color */
    /*--basic-border-color: #eee;*/
    --basic-border-color: #dee2e6;
    --bg-light-color: #000;
    --review-star-selected-color: #ffc107;
    /* primary */
    --bg-primary-color: var(--bg-primary-text-color);
    --bg-primary-border-color: var(--primary-color); 
    --bg-primary-hover-color: var(--bg-primary-text-color);
    --bg-primary-hover-background-color: var(--primary-color);
	--bg-primary-hover-border-color: var(--primary-color);
    /* secondary */ 
    --bg-secondary-color: var(--bg-secondary-text-color);
    --bg-secondary-border-color: var(--secondary-color); 
    --bg-secondary-hover-color: var(--bg-secondary-text-color);
    --bg-secondary-hover-background-color: var(--secondary-color);
	--bg-secondary-hover-border-color: var(--secondary-color);

    /* success */ 
    --bg-success-color: #fff;
    --bg-success-border-color: #198754; 
    --bg-success-hover-color: #fff;
    --bg-success-hover-background-color: #157347;
	--bg-success-hover-border-color: #146c43; 

    --bg-danger-color: #fff;

    /* button */
    /*--btn-outline-secondary-color: var(--bg-secondary-text-color);
    --btn-outline-secondary-border-color: var(--secondary-color);*/

    --btn-outline-secondary-color: #6c757d;
    --btn-outline-secondary-border-color: #6c757d;
    

    /* hover */
    --nav-link-hover-background-color: rgba(232, 232, 232, 0.2);
    --dropdown-item-hover-background-color: rgba(232, 232, 232, 0.2);
    --dropdown-item-hover-color: var(--primary-color);
    --dropdown-item-hover-box-shadow: none;


    /* font-size */    
    --fs-lg: 1.6rem;
    --fs-md: 0.9375rem;
    --fs-sm: .875rem;
    --fs-xs: .75rem;
    --fs-xl: 2rem;   
    --basic-font-size: .94rem;
    --btn-sm-font-size: .875rem; 
    --h5-font-size: 1rem;
    /* font-size */

    /* font weight */
    --fw-light: 300;    
    --fw-lighter: lighter;    
    --fw-normal: 400;    
    --fw-bold: 700;
    --fw-bolder: bolder;
    --basic-font-weight: 400;
    --b-font-weight: 500;
    --strong-font-weight: 500;

    /* line height */
    --lh-1: 1;    
    --lh-sm: 1.25;    
    --lh-base: 1.4;    
    --lh-lg: 2;
    --basic-line-height:1.5;

    /* border-radius */
    --rounded: .25rem;    
    --rounded-0: 0;    
    --rounded-1: .2rem;    
    --rounded-2: .25rem;    
    --rounded-3: .3rem;    
    --rounded-4: .5rem;    
    --rounded-5: 1rem;    
    --rounded-circle: 50%;    
    --rounded-pill: 50rem;
    --basic-border-radius: .25rem;
    
    /* shadow */
    --basic-box-shadow: none;
    --btn-hover-box-shadow: none;

    /* padding */
    --basic-padding: 1rem;
    --basic-padding-right: .5rem;
	--basic-padding-left: .5rem;

    /* border */
    --basic-btn-border-size: 1px;
    --basic-btn-font-size: .94rem;
    --basic-btn-font-weight: 400;
    --basic-border: 1px solid var(--basic-border-color);
}

body {
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-size: var(--basic-font-size);
	font-weight: var(--basic-font-weight);
	line-height: var(--basic-line-height);
	color:  var(--text-body);
	background-color: var(--bg-body);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent
}

a {
	color: var(--text-primary);
	text-decoration:none;
}
a:hover {
    color: var(--text-primary);
}

.bg-body-reverse {
    background-color: var(--bg-body-reverse);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.link-primary {
    color: var(--text-primary) !important;
}

/* button start */
.btn {
	font-weight: var(--basic-btn-font-weight);
	line-height: var(--basic-line-height);
	font-size: var(--basic-btn-font-size);
	border-radius: var(--basic-border-radius);
	box-shadow: var(--basic-box-shadow);
    /*border: var(--basic-btn-border-size) solid transparent;*/
}

.btn:hover {
	box-shadow: var(--basic-box-shadow);
}
.btn-group-sm>.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: var(--btn-sm-font-size);
    border-radius: var(--basic-border-radius);
}

.btn-outline-secondary {
    color:var(--btn-outline-secondary-border-color);
    border-color: var(--btn-outline-secondary-border-color);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--btn-outline-secondary-border-color);
    border-color: var(--btn-outline-secondary-border-color);
}

.btn-light {
    color: var(--bg-light-color);
    background-color: var(--bg-light);
    border-color: var(--bg-light);
}

.social-share-icons-list a {
    /*text-decoration: none;
    line-height: 2.7;
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    text-align: center;*/

    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid transparent;
    transition: border-color .25s ease-in-out,background-color .25s ease-in-out,color .25s ease-in-out;
    border-radius: 50%;
    font-size: .9375rem;
    text-align: center;
    text-decoration: none !important;

    /*
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid transparent;
    transition: border-color .25s ease-in-out,background-color .25s ease-in-out,color .25s ease-in-out;
    border-radius: 0.5rem;
    background-color: #f3f3f9;
    color: #6c6d89;
    font-size: .9375rem;
    text-align: center;
    text-decoration: none !important;
    */
}

.social-share-icons-list a i {
    line-height: 2.125rem;
}

.alsp-btn-social {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: var(--basic-btn-border-size) solid transparent;
    transition: border-color 0.25s ease-in-out,background-color 0.25s ease-in-out,color 0.25s ease-in-out;
    border-radius: .5rem;
    background-color: #f3f3f9;
    color: var(--text-body);
    font-size: .9375rem;
    text-align: center;
    text-decoration: none !important;
}
.alsp-btn-social>i {
    line-height: 2.125rem;
}
.bs-facebook:hover {
    background-color: #3b5998;
}
.bs-twitter:hover {
    background-color: #1da1f2;
}
.bs-google:hover {
    background-color: #ea4335;
}
.bs-email:hover {
    background-color: #766df4;
}
.bs-whatsapp:hover {
    background-color: #25D366;
}
.alsp-btn-social:hover {
    color: #fff;
}

.btn:hover {
    box-shadow: var(--btn-hover-box-shadow) !important;
}

.bg-primary {
    color: var(--bg-primary-color) !important;
    background-color: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
}
.bg-primary .bg-primary-text { 
    color: var(--bg-primary-color) !important;
}
.bg-primary .alc-bg-text {
    color: var(--bg-primary-text-color);
}

.btn-primary {
	color: var(--bg-primary-color) !important;
	background-color: var(--bg-primary) !important;
	border-color: var(--bg-primary) !important;
}
.btn-primary:hover {
	color: var(--bg-primary-hover-color)!important;
	background-color: var(--bg-primary-hover-background-color)!important;
	border-color: var(--bg-primary-hover-border-color)!important;    
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
	color: var(--bg-primary-hover-color);
	background-color: var(--bg-primary-hover-background-color);
	border-color: var(--bg-primary-hover-border-color);
	box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5);
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
	color: var(--bg-primary-hover-color);
	background-color: var(--bg-primary-hover-background-color);
	border-color: var(--bg-primary-hover-border-color);
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: var(--bg-primary-color);
	background-color: var(--bg-primary);
	border-color: var(--bg-primary);
}


.btn-secondary {
	color: var(--bg-secondary-color);
	background-color: var(--bg-secondary);
	border-color: var(--bg-secondary);
}

.btn-secondary:hover {
	color: var(--bg-secondary-hover-color);
	background-color: var(--bg-secondary-hover-background-color);
	border-color: var(--bg-secondary-hover-border-color);
}

.bg-secondary .bg-secondary-text, .bg-secondary.bg-secondary-text { 
    color: var(--bg-secondary-color) !important;
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
	color: var(--bg-secondary-hover-color);
	background-color: var(--bg-secondary-hover-background-color);
	border-color: var(--bg-secondary-hover-border-color);
	box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
	color: var(--bg-secondary-hover-color);
	background-color: var(--bg-secondary-hover-background-color);
	border-color: var(--bg-secondary-hover-border-color);
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: var(--bg-secondary-hover-color);
	background-color: var(--bg-secondary-hover-background-color);
	border-color: var(--bg-secondary-hover-border-color);
}

.btn-success {
	color: var(--bg-success-color);
	background-color: var(--bg-success);
	border-color: var(--bg-success-border-color);
}

.btn-success:hover {
	color: var(--bg-success-color);
	background-color: var(--bg-success-hover-background-color);
	border-color: var(--bg-success-hover-border-color);
}


.btn-outline-primary {
	color: var(--bg-primary);
	border-color: var(--bg-primary);
}

.btn-outline-primary:hover {
	color: var(--bg-primary-color);
	background-color: var(--bg-primary);
	border-color: var(--bg-primary);
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
	box-shadow: 0 0 0 .25rem var(--bg-primary);
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
	color: var(--bg-primary-color);
	background-color: var(--bg-primary);
	border-color: var(--bg-primary);
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
	box-shadow: 0 0 0 .25rem var(--bg-primary);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: var(--bg-primary);
	background-color: transparent
}


.bg-secondary .alc-bg-link {
    color: var(--bg-secondary-color);
}


/*.btn-check:focus+.btn-success,
.btn-success:focus {
	color: #fff;
	background-color: #157347;
	border-color: #146c43;
	box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
	color: #fff;
	background-color: #146c43;
	border-color: #13653f
}

.btn-check:active+.btn-success:focus,
.btn-check:checked+.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show>.btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-success.disabled,
.btn-success:disabled {
	color: #fff;
	background-color: #198754;
	border-color: #198754
}

.btn-info {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0
}

.btn-info:hover {
	color: #000;
	background-color: #31d2f2;
	border-color: #25cff2
}

.btn-check:focus+.btn-info,
.btn-info:focus {
	color: #000;
	background-color: #31d2f2;
	border-color: #25cff2;
	box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-check:active+.btn-info,
.btn-check:checked+.btn-info,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
	color: #000;
	background-color: #3dd5f3;
	border-color: #25cff2
}

.btn-check:active+.btn-info:focus,
.btn-check:checked+.btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show>.btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-info.disabled,
.btn-info:disabled {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0
}

.btn-warning {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107
}

.btn-warning:hover {
	color: #000;
	background-color: #ffca2c;
	border-color: #ffc720
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
	color: #000;
	background-color: #ffca2c;
	border-color: #ffc720;
	box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-check:active+.btn-warning,
.btn-check:checked+.btn-warning,
.btn-warning.active,
.btn-warning:active,
.show>.btn-warning.dropdown-toggle {
	color: #000;
	background-color: #ffcd39;
	border-color: #ffc720
}

.btn-check:active+.btn-warning:focus,
.btn-check:checked+.btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show>.btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107
}

.btn-danger {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

.btn-danger:hover {
	color: #fff;
	background-color: #bb2d3b;
	border-color: #b02a37
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
	color: #fff;
	background-color: #bb2d3b;
	border-color: #b02a37;
	box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-check:active+.btn-danger,
.btn-check:checked+.btn-danger,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #b02a37;
	border-color: #a52834
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

.btn-light {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

.btn-light:hover {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb
}

.btn-check:focus+.btn-light,
.btn-light:focus {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb;
	box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-check:active+.btn-light,
.btn-check:checked+.btn-light,
.btn-light.active,
.btn-light:active,
.show>.btn-light.dropdown-toggle {
	color: #000;
	background-color: #f9fafb;
	border-color: #f9fafb
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-light.disabled,
.btn-light:disabled {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

.btn-dark {
	color: #fff;
	background-color: #212529;
	border-color: #212529
}

.btn-dark:hover {
	color: #fff;
	background-color: #1c1f23;
	border-color: #1a1e21
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
	color: #fff;
	background-color: #1c1f23;
	border-color: #1a1e21;
	box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-check:active+.btn-dark,
.btn-check:checked+.btn-dark,
.btn-dark.active,
.btn-dark:active,
.show>.btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1a1e21;
	border-color: #191c1f
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
	color: #fff;
	background-color: #212529;
	border-color: #212529
}


.btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d
}

.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
	box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
	box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent
}

.btn-outline-success {
	color: #198754;
	border-color: #198754
}

.btn-outline-success:hover {
	color: #fff;
	background-color: #198754;
	border-color: #198754
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
	box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
	color: #fff;
	background-color: #198754;
	border-color: #198754
}

.btn-check:active+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
	box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
	color: #198754;
	background-color: transparent
}

.btn-outline-info {
	color: #0dcaf0;
	border-color: #0dcaf0
}

.btn-outline-info:hover {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
	box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
	color: #000;
	background-color: #0dcaf0;
	border-color: #0dcaf0
}

.btn-check:active+.btn-outline-info:focus,
.btn-check:checked+.btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
	box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
	color: #0dcaf0;
	background-color: transparent
}

.btn-outline-warning {
	color: #ffc107;
	border-color: #ffc107
}

.btn-outline-warning:hover {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
	box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
	color: #000;
	background-color: #ffc107;
	border-color: #ffc107
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
	box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
	color: #ffc107;
	background-color: transparent
}

.btn-outline-danger {
	color: #dc3545;
	border-color: #dc3545
}

.btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
	box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
	box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
	color: #dc3545;
	background-color: transparent
}

.btn-outline-light {
	color: #f8f9fa;
	border-color: #f8f9fa
}

.btn-outline-light:hover {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
	box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
	color: #000;
	background-color: #f8f9fa;
	border-color: #f8f9fa
}

.btn-check:active+.btn-outline-light:focus,
.btn-check:checked+.btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
	box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
	color: #f8f9fa;
	background-color: transparent
}

.btn-outline-dark {
	color: #212529;
	border-color: #212529
}

.btn-outline-dark:hover {
	color: #fff;
	background-color: #212529;
	border-color: #212529
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
	box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
	color: #fff;
	background-color: #212529;
	border-color: #212529
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
	box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: #212529;
	background-color: transparent
}

.btn-link {
	font-weight: 400;
	color: #0d6efd;
	text-decoration: underline
}

.btn-link:hover {
	color: #0a58ca
}

.btn-link.disabled,
.btn-link:disabled {
	color: #6c757d
}*/
/* button close */

/* text start */
.text-primary {
	color: var(--text-primary)!important
}

.text-secondary {
	color: var(--text-secondary)!important
}

.text-success {
	color: var(--text-success)!important
}

.text-info {
	color: var(--text-info)!important
}

.text-warning {
	color: var(--text-warning)!important
}

.text-danger {
	color: var(--text-danger)!important
}

.text-light {
	color: var(--text-light)!important
}

.text-dark {
	color: var(--text-dark)!important
}

.text-white {
	color: var(--text-white)!important
}

.text-body {
	color: var(--text-body)!important
}

.text-muted {
	color: var(--text-muted)!important
}

.text-black-50 {
	color: var(--text-black-50)!important
}

.text-white-50 {
	color: var(--text-white-50)!important
}

.text-reset {
	color: inherit!important
}

/* text close */

.review-star .selected {
    color: var(--review-star-selected-color) !important;
}

b:not(.product-description strong) {
    font-weight: var(--b-font-weight);
}
strong:not(.product-description strong) {
    font-weight: var(--strong-font-weight);
}

/* background-color start */
.bg-secondary {
    background-color: var(--bg-secondary)!important;
}
/* background-color start */

.card {
	border-radius: var(--basic-border-radius);
}

.card-img, .card-img-top {
	border-top-left-radius: calc(var(--basic-border-radius) - 1px);
	border-top-right-radius: calc(var(--basic-border-radius) - 1px);
    padding: var(--basic-padding);	
}

.module-banner-container .card-img-top {
    padding: 0rem;
} 

.profile-left-menu .avatar-card i {
    font-size: 5rem;
}
.card-brand .brand-card-image {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between!important;
}
.module-strip-container {
    border: var(--basic-border);
    width: 100%;
    border-radius: var(--basic-border-radius);
    overflow: hidden;
}
.module-strip-container .card {
    border: 0 none;
    border-left: var(--basic-border)!important; 
    border-radius: 0px;   
}

.module-heading-title, .breadcrumb-title, .alc-text-large {
    /*font-size: 1.6rem;*/
    font-size: 2rem;
}

.module-slider .container-fluid {
    padding-right: 0!important;
    padding-left: 0!important;
    overflow: hidden!important;
}
/*.module-slider .container-fluid .slick-slider {
    margin-left: 0;
    margin-right: 0;
}*/
.container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.module-slider .slick-prev {
    left: 1.5rem;
}
.module-slider .slick-next {
    right: 1.5rem;
}

.module-container {
    display: flex;
    flex-direction: column;
}
.module-heading-title {
    text-align: center;
    font-weight: 600;
}

.review-avatar {
    width: 2.6rem;
    height: 2.6rem;
    background-color: #d9dfe8;
    line-height: 2.5;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.mb-n1 {
    margin-bottom: -.25rem !important;
}

.module:first-child {
	margin-top: 0px !important;
}

/* mobile view changes start */
.header-mobile {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    display: block;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.mobile-btn-open-navigation-link .bi {
    font-size: 1.563rem;
}

.mobile-search {
    padding: .7rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all .5s;
    transform: translate3d(0,-100%,0);
    background: rgba(240, 242, 245, 1);
    opacity: 0;
}

.m-footer-block .collapse {
	display: inherit;
}

.m-footer-block .m-footer-title .bi-chevron-up, .m-footer-block .m-footer-title[aria-expanded=true] .bi-chevron-down {
    display: none;
}

.m-footer-block .m-footer-title[aria-expanded=true] .bi-chevron-up {
    display: block;
}

.m-footer-block .collapse.show {
    display: block;
}

/* mobile view changes close */
footer .footer-title {
    margin-bottom: .3rem;
    border: none;
    text-transform: uppercase;
}

.review-list .border-bottom:last-child {
	border-bottom: none !important;
}

.card-article .img-fluid {
    width: 100%;
    height: 100%;
	border-radius: 0;
    border-top-left-radius: calc(1rem - 1px);
    border-bottom-left-radius: calc(1rem - 1px);
}
.card-article {
	border-radius: 1rem;
}
.card-article {
	border-radius: 1rem;
}
.card-article-small .fs-md {
	font-size: 0.9rem !important;
}
.card-article-small .fw-medium {
	font-weight: 500 !important;
}
.card-article-small:last-child {
	padding-bottom: 0rem !important;
    margin-bottom: 0rem !important;
}
.card-blog .card-body {
	padding: 0.5rem !important;
}
/* blog list card close */
.bg-faded-dark {
    background-color: rgba(55,56,78,.08) !important;
}

.row-list-item {
	margin-bottom: .75rem;
    border-radius: var(--basic-border-radius);
    border: var(--basic-border);
}
.row-list-header {
	position: relative;
    align-items: center;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: #4a4b65;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,border-radius .15s ease;
	font-size: 1.125rem;
    font-weight: 600;
}
.bg-faded-info {
    background-color: rgba(106,155,244,.08) !important;
}
.bg-faded-danger {
    background-color: rgba(247,79,120,.08) !important;
}
.bg-faded-success {
    background-color: rgba(22,201,149,.08) !important;
}

.fw-medium {
    font-weight: 500 !important;
}
.wishlist-product-card {
	border: var(--basic-border);
    border-radius: var(--basic-border-radius);
}
.wishlist-product-card .card-image {
    border-top-left-radius: calc(var(--basic-border-radius) - 1px);
    border-top-right-radius: calc(var(--basic-border-radius) - 1px);
	padding: 0.5rem;
}
.wishlist-product-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-right: 1.25rem;
    padding-bottom: 1.375rem;
    padding-left: 1.25rem;
    border: 0;
}
.wishlist-product-card .star-rating {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}
.table-border-only {
	border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
.nav-link-style {
	color: var(--text-body);
    font-weight: var(--b-font-weight);
}

/* social media buttons start */
footer .social-links li a {
    line-height: 2.7;
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    text-align: center;
}

footer .social-links li a:hover {
    color: #fff;
}

.btn-facebook {
    color: #fff;
	background-color: #1877f2;
	border-color: #1877f2;	
}
.btn-facebook:hover {
    color: #fff;
	background-color: #1877f2;
	border-color: #1877f2;	
}

.btn-google {
    color: #fff;
	background-color: #dc3545;
	border-color: #dc3545
}
.btn-google:hover {
    color: #fff;
	background-color: #dc3545;
	border-color: #dc3545	
}


.btn-twitter {
	background-color: #6cb7f0;
	border-color: #6cb7f0;
	color: #fff;
}

/*.btn-twitter:hover {
	background-color: #ffffff;
	border-color: #6cb7f0;
	color: #6cb7f0;
}*/
.social-share-icons-list .social-icon:hover{
    color: #fff;
}

.btn-youtube {
	background-color: #ed302f;
	color: #fff;
}
.btn-instagram {
	background-color: #E1306C;
	color: #fff;
}
.btn-pinterest {
	background-color: #c61118;
	color: #fff;
}
.btn-linkedin {
	background-color: #0082ca;
	color: #fff;
}

.btn-social-twitter {
    background-color: #6cb7f0;
}

.btn-social-facebook {
    background-color: #3b5998;
}

.btn-social-youtube {
    background-color: #ed302f;
}

.btn-social-instagram {
    background-color: #E1306C;
}

.btn-social-pinterest {
    background-color: #c61118;
}

.btn-social-linkedin {
    background-color: #0082ca;
}

.btn-social-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}
/* social media buttons close */
/* product card standard layout start */
#product_box_standard .card-buttons {
    position: absolute;
    top: 31%;
    width: 100%;
    left: 0%;
    text-align: center;
    transform: translateY(-50px);
    transition: all 500ms ease 0s;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
}
#product_box_standard:hover .card-buttons {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
/* product card standard layout start */
.card-recent-product .card-image {
    padding: 0.5rem;
}

.form-control:not(.input-group .form-control):not(textarea.form-control), select.form-control {
    height: 2.7rem;
}

textarea.form-control {
    height: auto;
}

.form-control {
    border-radius: var(--basic-border-radius);
    border: 0.063rem solid var(--basic-border-color);
}
.form-check-input {
    border: 1px solid var(--basic-border-color);
}
 
.input-group .btn-outline-secondary {
    border-color: var(--basic-border-color);
}
/* alsp accordion start */

.accordion-item:first-of-type {
    border-top-left-radius: var(--basic-border-radius);
    border-top-right-radius: var(--basic-border-radius);
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(var(--basic-border-radius) - 1px);
    border-top-right-radius: calc(var(--basic-border-radius) - 1px);
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(var(--basic-border-radius) - 1px);
    border-bottom-left-radius: calc(var(--basic-border-radius) - 1px);
}
.basic-accordion .accordion-item {
    margin-bottom: .75rem;
    border-radius: var(--basic-border-radius);
    border: 1px solid var(--basic-border-color);
}
.basic-accordion .accordion-button {
    border-radius: var(--basic-border-radius);
}
.basic-accordion .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: inherit;
    border-bottom: 1px solid #e9e9f2;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-color: #e9e9f2 !important;
}
.basic-accordion .accordion-button:focus {
    z-index: inherit;
    border-color: inherit;
    outline: 0;
    box-shadow: none;
}
.basic-accordion .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(-180deg)
}
.basic-accordion .accordion-body p:last-of-type {
    margin-bottom: 0rem;
}
/* alsp accordion close */
.rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.faq-card.card {
	border: 0 none;
}

.faq-card.card {
	border: 0 none;
    border-radius: 0px;
    padding-bottom: 1rem;
    padding: 1rem;
}
.faq-card .card-header {
	border-bottom: 0 none;
    padding: 0;
    padding-bottom: 1rem;
}
.faq-card .card-body {
	padding: 0px;
}
/* widget start */
.widget-title {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--text-body);
}
.widget ul, .widget ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget ul>li, .widget ol>li {
    display: block;
    margin-bottom: .375rem;
}
.widget-link {
    display: block;
    position: relative;
    padding: .25rem 0;
    transition: color .25s ease-in-out;
    color: var(--text-body);
    font-weight: 500;
    text-decoration: none;
	font-size: 1rem;
}

.widget-link>small, .widget-link>.small {
    display: inline-block;
    font-size: 75%;
    font-weight: normal;
}

/* widget close */
.btn-remove-product {
	font-size: 1.25rem;
}
.blog-grid .card-title {
	margin-top: .5rem;
}
.module-product .product-card.mb-4 {
	margin-bottom: 0rem !important;
}
.widget-light .widget-link {
  font-weight: normal;
}
.shadow {
    box-shadow: var(--basic-box-shadow) !important;
}
.swap-image {
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.swap-image .swap-to {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
}
.swap-image .swap-from, .swap-image .swap-to {
    display: block;
    transition: opacity .3s ease-in-out;
}
/* home page category card start */
.card-category .card-body {
	padding: 1rem;
	border-top: 1px solid rgba(0,0,0,.085);
	text-align: center;
}
.card-category .card-title {
	margin-bottom: 0;
}
.card-category .card-title {
	font-size: 1rem !important;
}
/* home page category card close */

#category_filter #collapseCategoryFilter.collapse:not(.show), #brand_filter #collapseBrandFilter.collapse:not(.show) {
    display: block;
}

#category_filter .card-header, #selected-filter .card-header, #brand_filter .card-header, #selected-filter .card-header {
    padding: 1rem;
    border-radius: calc(var(--basic-border-radius) - 1px) calc(var(--basic-border-radius) - 1px) 0 0;
    font-size: 1.125rem;
}

#category_filter .accordion-button, #brand_filter .accordion-button {
    padding: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
}
#category_filter .accordion-item, #brand_filter .accordion-item {
    border: 0 none;
    border-bottom: 1px solid var(--basic-border-color);
}
#category_filter .accordion-item:last-child, #brand_filter .accordion-item:last-child {
    border-bottom: 0 none;
}
#category_filter .accordion-button::after, #brand_filter .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}
#category_filter .accordion-button:focus, #brand_filter .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
#category_filter .accordion-button:not(.collapsed), #brand_filter .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
}
#category_filter .accordion-button:not(.collapsed)::after, #brand_filter .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
#category_filter .accordion-body, #brand_filter .accordion-body {
    padding: 0rem;
}
#category_filter.accordion-card li, #brand_filter.accordion-card li {
    margin-left: 0rem;
}
#category_filter .list-group-flush>.list-group-item, #brand_filter .list-group-flush>.list-group-item {
    border-width: 0 0 0;
}
#category_filter .list-group-item, #brand_filter .list-group-item {
    color: inherit;
    text-decoration: none;
    font-size: 0.875rem;
}

#selected-filter .selected-filter-item {
    cursor: pointer;
    font-size: 0.75rem;
    background-color: #e0e0e0;
    box-shadow: 0 2px 4px 0 hsl(0deg 0% 100% / 50%);
    border-radius: 3px;
    margin: 2px 4px;
    overflow: hidden;
    transition: background-color .1s;
    max-width: 200px;
    padding: 8px;
    display: inline-block;
}

#selected-filter .selected-filter-item .selected-filter-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: bottom;
    margin-left: 8px;
    max-width: 90%;
    display: inline-block;
}
#selected-filter .selected-filter-item:hover .selected-filter-text {
    text-decoration: line-through;
}

/*.product-additional-image-list {
	display: flex;
    flex-direction: row;
    max-width: 100%;
    padding-left: 0rem;
}*/
.product-additional-image-item {
	display: block;
    position: relative;
}
.product-additional-image-item a {
	display: flex;
    position: relative;
    width: 6rem;
    height: 6rem;
    transition: border-color .2s ease-in-out;
    border: 1px solid #e9e9f2;
    border-radius: var(--basic-border-radius);
    text-decoration: none;
    overflow: hidden;
	align-items: center;
    justify-content: center;
	padding: .3rem;
	margin-left: .2rem;
	margin-right: .2rem;
    background-color: #fff;
}
.product-additional-image-item img {
    display: block;
    /*width: 100%;
    height: 100%;*/
    transition: opacity .2s ease-in-out;
    border-radius: var(--basic-border-radius);
    /*opacity: .6;*/
    max-width: 100%;
    max-height: 100%;
}
.product-additional-image-item.active img {
    opacity: 1;
}
.product_image .product-main-image-container .product-main-image {
	position: relative;
    width: 100%;
    height: 30rem;
	margin-top: 1rem !important;
}
#page_product_quick_view .product_image .product-main-image-container .product-main-image {
	height: 25rem;
}
.product_image .product-main-image-container .product-main-image li {
	position: relative;
    width: 100%;
    height: 100%;
    transition: opacity .3s ease-in-out;
    display: inline-block;
    overflow: hidden;
    /*align-items: center;
    justify-content: center;*/
    text-align: center;
	padding: .5rem;
}
.product_image .product-main-image-container .product-main-image li img {
    max-height: 100%;
}

.product-card-quantity {
	padding-top: .5rem;
	padding-bottom: 1rem;
}
.product-card-quantity  .input-group-text {
	border: 0;
    background: transparent;
    font-weight: 600;
    padding-left: 0;
}

.product-card-quantity  .form-control {
	text-align: center;
}
.product-card-quantity  .input-group {
	width: 13rem;
}
/*.product-card-quantity .input-group-btn .btn {
	padding: .575rem .75rem;
}*/
.product-card-quantity .input-group-btn {
    z-index: 1;
}

/* maintenance start */
.maintenance-container {
    text-align: center;
    width: auto;
    height: auto;
    background: #fff;
    /*margin-top: 10%;*/
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: -0.0625rem 0 0.625rem 0 rgb(0 0 0 / 7%), 0.3125rem 1.25rem 2.5rem 0 rgb(0 0 0 / 4%) !important;
    padding-bottom: 4rem;
    padding-top: 4rem;
    font-size: 1rem;
}
.maintenance-container h1 {
    font-size: 3rem;
}
/* maintenance close */

/* common for both theme start */
.card-footer, .card-header {
    background-color: var(--text-white);
}

.fs-xl {
	font-size: var(--fs-xl)!important;
}
.fs-lg {
    font-size: var(--fs-lg)!important;
}
.fs-md {
    font-size: var(--fs-md)!important;	
}
.fs-sm {
    font-size: var(--fs-sm)!important;	
}
.fs-xs {
	font-size: var(--fs-xs)!important;
}

.bg-primary .nav-link:not(#vertical-mega-menu .btn-secondary.nav-link) {
    color: var(--text-white);
    font-size: var(--basic-font-size);
}

.blockquote {
    position: relative;
    padding-left: 5.875rem;
}

.blockquote::before {
    display: block;
    position: absolute;
    /*top: -0.75rem;*/
    left: 0;
    font-family: "bootstrap-icons";
    font-size: 4rem;
    font-weight: normal;
    line-height: 1;
    content: "\f190";
}
.blockquote>:last-child {
    margin-bottom: 0;
}
.blockquote {
	font-size: 16px;
}
.testimonial-list-item {
	border: 1px solid rgba(0, 0, 0, .125);
	margin-bottom: 1rem;
}

.icon-badge {
	width: 2.8rem;
	height: 2.8rem;
	line-height: 1.9rem;
	font-size: 1.2rem;
	background-color: #f3f5f9;
	position: relative;
	display: block;
}
.shadow-ui {
	box-shadow: var(--basic-box-shadow)!important
}
.icon-badge {
	box-shadow: var(--basic-box-shadow)!important
}

.btn-fixed {
    position: fixed;
    bottom: 5.5rem;
    right: 1.2rem;
    z-index: 9999;        
    cursor: pointer;
	z-index: 1000;
    /*line-height: 43px;*/
    width: 3.75rem;
    height: 3.75rem;
    line-height: 3.75rem;    
    font-size: 2rem;
    text-align: center;
}
.btn-fixed:hover {
	color: #fff;
	box-shadow: var(--basic-box-shadow);
}
.alsp-card-form {
    max-width: 45rem;
    margin: 0 auto;
    padding: 32px 30px 30px 30px;
    background-color: var(--bg-body-reverse);
    z-index: 5;
    border: 0;
    border-radius: var(--basic-border-radius) !important;
}
.alsp-card-form .card-footer, .alsp-card-form .card-header {
    background-color: transparent !important;
}
.signin-form .alsp-card-form {
    position: relative;
    max-width: 30rem;
}
.input-search .react-autosuggest__container {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-search .form-control {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;

    height: 2.5rem;
    font-size: inherit;
}

.input-search .input-group .btn {
    z-index: 0 ! important;
    padding: .68rem 1.3rem;
    line-height: 0px;
    /*
    border-left: 0;
    border: 0px solid#eee !important;
    */
}
.input-search .input-group .form-control:focus {
    box-shadow: none !important;
}
.input-group > .btn {
    border-bottom-right-radius: var(--basic-border-radius);
    border-top-right-radius: var(--basic-border-radius);
}
.header-logo-image img {
    height: 3.5rem;
}
#header-middle-content:not(#single-centered #header-middle-content):not(#solid-centered #header-middle-content):not(#single-1 #header-middle-content) {
    margin: 1rem 0 0.5rem 0;
}

.alc-counter {
	z-index: 1;
	text-align: center;
	position: absolute;
	top: -0.687rem;
	width: 1.25rem;
	height: 1.25rem;
	line-height: 1.25rem;
	color: #ffffff;
	border-radius: 100%;
	font-weight: 600;
}

.dropdown-toggle::after {
    /*float: right;
    margin-top: 0.6rem;*/
    vertical-align: middle;
}
.dropdown-menu li:hover > .dropdown-toggle::after {
	transform: rotate(-90deg);
}
.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
}
.dropdown-menu {
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
	border: 0;
	padding: 0px;
	z-index: 1000;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
	list-style: none;
	text-align: left;
	border-radius: 3px;
	background-clip: padding-box;
	background-color: #FFF;
    position: relative;
    /*width: 100%;*/
    width: auto;
}
#header-navigation .nav-link {
    padding: 0.8rem 1rem;    
	font-weight: 500;    
}
/*.navbar {
    padding-top: 0rem;
    padding-bottom: 0rem;
}*/
#header-navigation .navbar {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

footer .social-links .border {
	border: none!important;
}
.component-footer-store-info i, .component-footer-email i, .footer-component-number i {
    float: left;
}

.accordion-card .tab {
	padding: 0;
}
.accordion-card .tab-input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.accordion-card .form-check .form-check-input {
	margin-left: auto;
	margin-right: .5rem;
}
.accordion-card label {
	padding-left: 1.25rem;
	position: relative;
	display: block;
	line-height: 3;
	cursor: pointer;
	margin-bottom: 0rem !important;
}
.accordion-card li {
    margin-left: 1.5rem;
}
.accordion-card .tab-content {
    max-height: 0;
    background: transparent;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
}
.accordion-card label::after {
	color: #444;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 3em;
	height: 3em;
	line-height: 3;
	text-align: center;
	-webkit-transition: all .35s;
	-o-transition: all .35s;
	transition: all .35s;
}
.accordion-card input[type=checkbox] + label::after {
	content: "+";
}
.category-sort-by label{
    width: 6rem;
}
.accordion-card input:checked ~ .tab-content {
	max-height: fit-content;
	overflow-y: scroll;
}
.review-star .btn-sm {
    width: 1.25rem;
    height: 2rem;
    padding: 0;
    color: #e2e2e2 !important;
    box-shadow: none;
}
.address-grid .card .card-header:first-child {
    border-radius: calc(var(--basic-border-radius) - 1px) calc(var(--basic-border-radius) - 1px) 0 0;
}
.address-grid .card {
    border: 1px solid rgba(0,0,0,.085);
    border-radius: var(--basic-border-radius);
    margin-bottom: 1rem;
}
.address-grid:nth-child(2n+3) {
    clear: both;
}
.navbar {
    padding-right: .9375rem;
    padding-left: .9375rem;
}
.offcanvas-collapse {
    display: block;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    background-color: transparent;
    will-change: transform,box-shadow;
    transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1),box-shadow .3s ease;
    box-shadow: none;
    visibility: visible;
}
.offcanvas-header, .offcanvas-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    padding: 1.25rem 1.5rem;
}
.offcanvas-body {
    flex-grow: 1;
    height: 100%;
}

/* header around start */
#around-header .navbar-search {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1090;
}
#around-header .navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    box-shadow: 0 0.125rem 0.625rem -0.1875rem rgb(0 0 0 / 10%);
}
#around-header .navbar-brand {
    display: inline-block;
    font-weight: 500;
}
#around-header .navbar-tool {
    position: relative;
    display: flex;
    align-items: center;
    color: #5a5b75;
}
#around-header .navbar-tool .navbar-tool-icon-box {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.375rem;
    text-align: center;
}
#around-header .navbar-tool>a {
    color: #5a5b75;
    transition: color .25s ease-in-out;
    text-decoration: none;
}
#around-header .navbar-tool .navbar-tool-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.125rem;
}

#around-header #header-middle-content {
    margin: 0;
    box-shadow: 0 0.125rem 0.625rem -0.1875rem rgb(0 0 0 / 10%);
}
/* header around close */
/* ------------------------Slick Slider--------------------  */
.slick-next {
    /*right: -10px !important;*/
    right: -1rem;
}
.slick-prev {
    /*left: -10px !important;*/
    left: -1rem;
}
.slick-arrow.slick-prev, .slick-arrow.slick-next {
  background-color: #ffffff;
  /*padding: 1.563rem;*/
  padding: 1.5rem;
  z-index: 1;
  border: 0.063rem solid #eee;
  border-radius: 50%;
}
.slick-prev:before, .slick-next:before {
    margin: -1.5rem;
   line-height: 0.188rem;
   color:#000;
}
/* use for slider symbol */
.slick-prev:before {
    content: "\2190";
}
.slick-next:before {
    content: "\2192";
}
.slick-dots {
    bottom: 5%;
  }
.slick-dots li button:before {
    font-size: .75rem;
    content: '•';
}
/*.container-fluid .slick-slider {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
} */
/* --------------------End----Slick Slider--------------------  */
.form-group {
    margin-bottom: 1rem;
}
.comment:not(.token)>.comment {
    position: relative;
    margin-top: 1.875rem;
    margin-bottom: 0;
    padding-bottom: .5rem;
    padding-left: 3.25rem;
    border-bottom: 0;
}
.comment:not(.token) {
    margin-bottom: 2rem;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #e9e9f2;
    font-size: .9375rem;
}
.comment:not(.token)>.comment::before {
    position: absolute;
    top: 0;
    left: 1.125rem;
    width: .25rem;
    height: 100%;
    background-color: #e9e9f2;
    content: '';
}
.module-smart_banner img{
    border-radius: 0 0 calc(var(--basic-border-radius) - 1px) calc(var(--basic-border-radius) - 1px);
    border-top-left-radius: calc(var(--basic-border-radius) - 1px);
    border-top-right-radius: calc(var(--basic-border-radius) - 1px);
}
.module-blog .blog-card-image {
    border-top-left-radius: calc(var(--basic-border-radius) - 1px);
    border-top-right-radius: calc(var(--basic-border-radius) - 1px);
}

.module-banner-grid .card {
	border: 0 none;
}

.module-banner-grid .card-img, .module-banner-grid .card-img-top {
	border-bottom-left-radius: calc(var(--basic-border-radius) - 1px);
	border-bottom-right-radius: calc(var(--basic-border-radius) - 1px);
}

/* --------------------Start----Auto Suggest--------------------  */
.react-autosuggest__section-title {
    padding: .5rem 0.75rem;
    background-color: #f7f7f7;  
}
.react-autosuggest__suggestion {
  padding: .3rem .6rem;
  border-bottom: 0.063rem solid #f2f2f6;
}
.react-autosuggest__suggestions-container--open {
    position: absolute;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0.313rem 0.313rem 0 rgba(0,0,0,0.15);
}
.react-autosuggest__suggestions-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0rem;
}
.react-autosuggest__suggestion a {
    color: #333;
}
/* --------------------End----Auto Suggest--------------------  */

.product-option-list label:not(.form-check-label) {
    margin-bottom: .5rem;
    margin-top: .5rem;
    font-size: .9rem;
}
.dropdown-item {
    color: inherit;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    text-decoration: none;
    transition: all 150ms linear;
}
.dropdown-menu, .blockquote, .form-control {
    font-size: var(--basic-font-size);
    line-height: var(--basic-line-height);
}
/*
.form-control:focus {
  color: #737491;
  background-color: #fff;
  border-color: rgba(118,109,244,.35);
  outline: 0;
  box-shadow: 0 0 0 0 transparent, 0 0.375rem 0.625rem -0.3125rem rgb(118 109 244 / 15%);
}
*/
.nav-heading, .nav-heading a, .nav-heading .nav-heading-title {
    transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,box-shadow 0.25s ease-in-out,border-color 0.25s ease-in-out;
    color: #4a4b65;
    font-weight: 600;
    text-decoration: none;
}
.bs-outline {
    border-color: #e5e5ef;
    background-color: transparent;
}
.bs-outline:hover {
    border-color: transparent;
}
.has-icon-left .input-group-text {
    border-radius: var(--basic-border-radius);
    background-color: white !important;
    border-right: 0 ! important;
    border: 1px solid #dfdfeb;
}
.has-icon-left .form-control {
    border: 1px solid #dfdfeb;
    border-left: 0 ! important;
    border-radius: var(--basic-border-radius);
}
.profile-content, .profile-menu {
    /*border: 1px solid #dee2e6!important;*/
    border: var(--basic-border);
}
/* common for both theme start */
/* common for skin start */
.nav-link:hover:not(#vertical-mega-menu .btn-secondary.nav-link) {
    background-color: var(--nav-link-hover-background-color);
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-menu li:hover > .dropdown-toggle {
    background-color: var(--dropdown-item-hover-background-color);
    color: var(--dropdown-item-hover-color);
    /*box-shadow: var(--dropdown-item-hover-box-shadow);*/
}
.row-list-header {
    font-size: var(--basic-font-size);
}
.h5, h5 {
    font-size: var(--h5-font-size);
}
.article-info-image {
    border-radius: var(--basic-border-radius);
}
.space-x {
    margin-right: calc(1rem * var(--basic-space-x-margin-right));
    margin-left: calc(1rem * calc(1 - var(--basic-space-x-margin-left)))
}
.opacity-60 {
    opacity: .6 !important;
}
.nav-link-style > .fs-lg {
    font-size: 1.125rem !important; 
}
.nav-link-style:hover i {
    opacity: 1 !important;
}
.nav-link-style.active>i {
    opacity: 1 !important;
}
.nav-link-style>i {
    transition: opacity .25s ease-in-out;
}
.account-section-badge .review-avatar {
    line-height: 1.7;
    font-size: 1.5rem;
}
.account-section-badge .title {
    font-size: 1.2rem;
}

.card-transaction .card-header {
    /*border-bottom: none;*/
    padding: 1.5rem;
    background-color: transparent;
}
.card-transaction .card-body {
    padding: 1.5rem;
}
.card-transaction .card-header+.card-body {
    padding-top: 0;
}
/*.card-transaction .transaction-item:not(:last-child) {
    margin-bottom: 1.2rem;
}*/
.card-transaction .transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-transaction .transaction-item .transaction-title {
    margin-bottom: .2rem;
    margin-top: .2rem;
}
.card-transaction .transaction-item {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.card-transaction .transaction-item:last-child {
    border-bottom: none;
    padding-bottom: 0rem;
}
.card-transaction .transaction-item:hover {
    color: var(--text-primary);
}
.card-transaction .transaction-item .transaction-item-badge {
    padding-left: 2rem;
    width: 25%;
    text-align: right;
}
.btn-scroll-top.show {
    right: 1.25rem;
    opacity: 1;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}
.btn-scroll-top {
    display: block;
    position: fixed;
    right: -4.125rem;
    bottom: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    transition: right 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55),opacity .3s,background-color .25s ease-in-out;
    border-radius: .75rem;
    background-color: var(--bg-primary);
    color: var(--bg-primary-color);
    text-align: center;
    opacity: 0;
    z-index: 1025;
}
.btn-scroll-top .btn-scroll-top-tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    transition: opacity .25s ease-in-out,visibility .25s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.btn-scroll-top>.btn-scroll-top-icon {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2.625rem;
}
.btn-scroll-top:hover {
    color: var(--text-primary);
    background: #fff;
    border: 1px solid var(--text-primary);
}
.form-check-input:checked {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
}
.form-check-input:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
/* common for skin close */ 
.btn-place-order {
    padding: .8rem;    
    font-size: 1rem;
}
.footer-copyright-text a, .component-footer-copyright a, .copyright-brand-link { 
    font-weight: bold;
}

.bg-secondary .navbar-nav .nav-link {
    color: var(--bg-secondary-color);
}

.btn-tooltip .btn-tooltip-text {
    position: absolute;
    left: 50%;
    bottom: 100%;
    padding: .2084375rem .416875rem;
    transform: translateX(-50%);
    transition: opacity .2s ease-in-out;
    border-radius: .375rem;
    background-color: #37384e;
    color: #fff;
    font-size: .75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s;
}
.btn-tooltip .btn-tooltip-alert {
    position: absolute;
    left: 50%;
    bottom: 100%;
    padding: 1rem 1rem;
    margin-bottom: .2rem;
    transform: translateX(-50%);
    transition: opacity .2s ease-in-out;
    border-radius: .375rem;
    opacity: 0;
    width: 100%;
    border: 1px solid transparent;
    border-radius: var(--basic-border-radius);
}
.btn-tooltip:hover .btn-tooltip-text, .btn-tooltip:hover .btn-tooltip-alert {
    opacity: 1;
    visibility: visible;
}

.btn-tooltip {
    display: inline-block;
    position: relative;        
    cursor: pointer;
}
.btn-tooltip.primary:hover {
    color: var(--text-primary);
}
.btn-tooltip.primary:hover .btn-tooltip-text {
    color: var(--bg-primary-color);
    background-color: var(--bg-primary);
}

.btn-tooltip.danger:hover {
    color: var(--text-danger);
}
.btn-tooltip.danger:hover .btn-tooltip-text {
    color: var(--bg-danger-color);
    background-color: var(--bg-danger);
}
.btn-divider {
    display: inline-block;
    width: 1px;
    height: 1.5rem;
    margin: 0 .75rem;
    background-color: #e9e9f2;
}
.address-grid a.btn-tooltip {
    color: inherit;
}
/* header-1row start */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    box-shadow: 0 15px 30px 0 rgb(34 41 47 / 11%), 0 5px 15px 0 rgb(34 41 47 / 8%);
    z-index: 9999;
}
  
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
  
#btn-theme-customizer {
    margin-bottom: 9.5rem;
    border-radius: 49%;
}

.bi-spin {
    display: inherit;
    -webkit-animation: bi-spin 2s infinite linear;
    animation: bi-spin 2s infinite linear;
}
  
@-webkit-keyframes bi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes bi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.table {
    color: var(--text-body);
    border-color: var(--basic-border-color);
} 

#page-account .container:first-child {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.google-map-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.google-map-container iframe {
    width: 100%;
    height: 13rem;
}
.border-bottom {
    border-bottom: 1px solid var(--basic-border-color) !important;
}
.product-info .social-share-container .list-group-item {
    padding: 0.5rem 0.5rem;
}
.product-info .social-share-container .list-group-item a:hover {
    color: #fff;
}
.card-header:first-child {
    border-radius: calc(var(--basic-border-radius) - 1px) calc(var(--basic-border-radius) - 1px) 0 0;
}
.module .blog-grid, .module .module-blog-grid {
    width: 100%;
    display: inline-block;
}
#page-contact .list-unstyled a {
    color: inherit;
}
.star-rating .bi {
  color: #ffc107 !important;
  margin-right: 0.2rem;
}
.star-rating .bi.selected ~ *, .star-rating .bi.blank {
    color: #c6c7c7 !important;
  }
.product-card .star-rating {
    margin-bottom: 0.5rem;
}
.card-brand a {
    color: inherit;
}
.custom-table .react-bs-container-header {
    display: none;
}
.custom-table table {
    border-collapse: separate;
    border-spacing: 0 .75rem;
}
.custom-table table tbody tr td {
    padding: 1rem;
}
.custom-table tr td:last-child {
	border-right-width: 1px;
    border-top-right-radius: var(--basic-border-radius);
    border-bottom-right-radius: var(--basic-border-radius);
}
.custom-table tr td:first-child {
	border-left-width: 1px;
    border-top-left-radius: var(--basic-border-radius);
    border-bottom-left-radius: var(--basic-border-radius);
}
.custom-table tr td {
	border-top-width: 1px;
    cursor: pointer;
}
.custom-table .rounded-4 {
    border-radius: var(--basic-border-radius);
}

/*.btn-translucent-primary {
    color: var(--text-primary);
    background-color: rgba(var(--text-primary),.08);
}*/

.btn-group-xl>.btn, .btn-xl {
	padding: .5625rem 1.25rem;
	font-size: 1rem;
	border-radius: var(--basic-border-radius);
}
.bg-size-cover {
    background-size: cover !important;
}
.module-product .bg-size-cover {
	border-radius: var(--basic-border-radius);
    height: 100%;
}
#page-checkout .card-block > .card {
    border: 0 none;
    border-top: var(--basic-border);
    border-radius: 0;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}
#page-checkout .card-block > .card > .card-body {
    padding: 0rem;
}
#page-checkout .card-block > .card > .card-body > .card-title {
    padding-bottom: 1rem;
}

/* ---------start--------------Responsive Mobile header css -------------------*/
.header-mobile .navbar-collapse .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    padding: 1.25rem 1.5rem;
    width: 100%;
}
.header-mobile .card-header {
  z-index: 1000;
}
.header-mobile .alc-counter {
    top: -0.4rem;
}
.mobile-logo-image img {
  height: 2.5rem;
  margin-top: .3rem;
}
.header-mobile sub {
    left: 1.8rem;
}
.header-mobile .card-dropdown-content a,
.header-mobile .card-dropdown-content ul a {
  padding-left: 1.25rem !important;
  padding: .875rem 1.125rem;
}
.header-mobile .card-dropdown-content .go-back a {
    padding-left: 2.5rem !important;
}
.header-mobile  .card-dropdown {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #6e716e;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s;
}

.header-mobile  .card-dropdown.dropdown-is-active {
  visibility: visible;
  transition: all 0.5s ease 0s;
  transform: translate3d(0rem, 0rem, 0rem);
}
.header-mobile .card-dropdown li a,
.header-mobile .card-dropdown-content a {
    color: #444;
}
.header-mobile .card-dropdown-content, .card-dropdown-content ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  padding-top: 4rem;
}
.card-dropdown-content a, .card-dropdown-content ul a {
  display: block;
  border-width: 0rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 0.063rem solid #f7f7f7;
}
.header-mobile .card-dropdown-content a,
.header-mobile .card-dropdown-content ul a{
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.header-mobile  .card-dropdown-content.is-hidden,  .header-mobile  .card-dropdown-content ul.is-hidden {
    transform: translateX(100%);
}
.header-mobile .card-dropdown {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0.188rem 0rem 0.5rem 0.063rem rgba(0,0,0,0.4);
  transition: all .5s;
  transform: translate3d(-100%,0,0);
}
.header-mobile {
  background-color: #ffffff;
  position: relative;
  width: 100%;
  display: block;
}
.card-dropdown-content.move-out > li > a,
.card-dropdown-content ul.move-out > li > a {
    transform: translateX(-100%);
}
.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  content: '';
  position: absolute;
  top: 49%;
  display: inline-block;
  height: 0.125rem;
  width: 0.625rem;
  background: #464a4c;
}
.has-children > a::before, .go-back a::before {
    transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
    transform: rotate(-45deg);
}
.has-children > a::before, .has-children > a::after {
  right: 1.25rem;
  transform-origin: 0.563rem 50%;
}
.card-dropdown-content .go-back a {
  padding-left: 2.5rem;
}
.card-dropdown-content .go-back a::before, .card-dropdown-content .go-back a::after {
  left: 1.25rem;
  transform-origin: 0.063rem 50%;
}

.mobile-btn-open-navigation-link .fa {
    font-size: 1.563rem;
}
.mobile-search {
  padding: .7rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: all .5s;
  transform: translate3d(0,-100%,0);
  background: rgba(240, 242, 245, 1);
  opacity: 0;
}
.header-mobile .navbar-toggler {
    color: var(--text-body);
    border-color: transparent;
	margin-left: -0.5rem !important;
}
.header-mobile .navbar-toggler:focus {
	box-shadow: none;
}
.header-mobile.navbar {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
    padding-left: 0rem;
    padding-right: 0rem;
}
.header-mobile .dropdown-menu {
    left: auto;
    right: 0;
    position: absolute;
}
/* ---------END--------------Responsive Mobile header css -------------------*/

#hashLink {
    display: none;
}
  
#hashLink:target {
    display: block;
}
.card-invoice .store {
    width: 100%;
    margin-bottom: 1.25rem;
}
.card-invoice .address {
    width: 100%;
    margin-bottom: 1.25rem;
    border-top: 0.0625rem solid #CDDDDD;
    border-right: 0.0625rem solid #CDDDDD;
}
.card-invoice .address, .product {
    border-collapse: collapse;
}

.card-invoice .address td {
    width: 50%;
}
.card-invoice .heading td {
    background: #E7EFEF;
}
.card-invoice .address th, .address td {
    border-left: 0.0625rem solid #CDDDDD;
    border-bottom: 0.0625rem solid #CDDDDD;
    padding: 0.3125rem;
    vertical-align: text-bottom;
}
.card-invoice td, .card-invoice th, .card-invoice input, .card-invoice select, .card-invoice textarea, .card-invoice option, .card-invoice optgroup {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    color: #000000;
}
.card-invoice .product {
    width: 100%;
    margin-bottom: 1.25rem;
    border-top: 0.0625rem solid #CDDDDD;
    border-right: 0.0625rem solid #CDDDDD;
}
.card-invoice .product td {
    border-left: 0.0625rem solid #CDDDDD;
    border-bottom: 0.0625rem solid #CDDDDD;
    padding: 0.3125rem;
}
.product-review-form textarea.form-control {
    height: 7rem !important;
}
.input-group .error {
    position: absolute;
    bottom: 0;
    height: 0.2rem;
}
.bg-primary a.alc-bg-link:not(#vertical-mega-menu .dropdown-menu .alc-bg-link ) {
    color: var(--bg-primary-color);
}
#page_product_quick_view .product-additional-image-item a {
    width: 5.4rem;
    height: 5.4rem;
}
.policy-tooltip .btn-tooltip-text {
    white-space: inherit;
    word-break: break-word;
    width: 20rem;
    margin-left: -1rem;
}

.product-additional-image-container .video {
    width: 100%;
    height: 100%;
}

.product-additional-image-container .play-overlay {
    z-index: 3;
    background: rgb(93 101 113);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.product-additional-image-container .play-overlay i {
    color: #ccc;
    font-size: 2rem;
    transition: color 0.5s ease;
}
.product-card .card-image {
    /*border-top-left-radius: calc(var(--basic-border-radius) - 1px);
    border-top-right-radius: calc(var(--basic-border-radius) - 1px);*/
    width: 100%;
    display: inline-block;
    /*padding: 1rem .5rem;*/
}
.product-card .card-image a {
    display: flex;
    position: relative;
    width: 100%;
    /*height: 21rem;*/
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
.product-card .card-image a img {
    display: block;
    max-width: 100%;
    width: 100%;
    /*max-height: 100%;
    height: 100%;*/
    padding: 0;
}
/*
#checkoutLogin .accordion-body {
    padding: 2.5rem;
}
#checkoutGuestSignup #page-signup .page-signup-container.mt-4, #checkoutGuestSignup #page-signup .signup-form.mt-3 {
    margin-top: 0rem !important;
}
#checkoutGuestSignup #page-signup .alsp-card-form {
    max-width: 100%;
    background: transparent;
}
#checkoutGuestSignup #page-signup .container {
    padding-left: 0rem;
    padding-right: 0rem;
}
*/

#accordionCheckoutAccount .accordion-body {
    padding: 2.5rem;
}

#accordionCheckoutAccount #page-signup .page-signup-container.mt-4, #accordionCheckoutAccount #page-signup .signup-form.mt-3 {
    margin-top: 0rem !important;
}
#accordionCheckoutAccount #page-signup .alsp-card-form {
    max-width: 100%;
    background: transparent;
    padding: 0rem;
}
#accordionCheckoutAccount #page-signup .container, #accordionCheckoutAccount #page-signup .card-header, #accordionCheckoutAccount #page-signup .card-body {
    padding-left: 0rem;
    padding-right: 0rem;
}
#accordionCheckoutAccount #page-signup .text-center {
    text-align: left !important;
}

/*.testimonial-row .testimonial-profile {
    display: table;
    padding: 15px;
    border: 1px solid #dca842;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.testimonial-row .testimonial-profile .pic {
    float: left;
    display: flex;
    position: relative;
    width: 6rem;
    height: 6rem;
    transition: border-color .2s ease-in-out;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    background-color: #fff;
}
.testimonial-row .testimonial-profile .pic img{
    max-width: 100%;
    max-height: 100%;
}

.testimonial-row .testimonial-profile .title {
    display: inline-block;
    margin: 0 0 0 30px;
    font-size: 19px;
    font-weight: bold;
    color: #dca842;
    position: relative;
    top: 22px;
}
.testimonial-row .testimonial-profile .title:before {
    content: "";
    width: 1px;
    height: 70px;
    background: #dca842;
    position: absolute;
    top: -8px;
    left: -15px;
}

.testimonial-row .testimonial-profile .post {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #888;
    margin-top: 10px;
}*/
.testimonial {
    /*border-bottom: var(--basic-border);*/
    margin-bottom: 3rem;
}
.testimonial .testimonial-content {
    margin: 1.25rem 0 2rem 0;
    position: relative;
}
.testimonial .description {
    padding: 2.25rem;
    margin: 0;
    /*
    padding: 1.5rem 2.25rem;
    background: #dca842;
    color: #fff;*/
    border-radius: var(--basic-border-radius);
    font-size: 1rem;    
    position: relative;
    border: var(--basic-border);
}
.testimonial .description .before-icon {
    top: -18px;
    left: 25px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    position: absolute;
    font-size: 1.5rem;
}
.testimonial .description .after-icon {
    bottom: -18px;
    right: 25px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    position: absolute;
    font-size: 1.5rem;
    -webkit-transform:rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
/*.testimonial .description:before {
    content: "\f10d";
    top: -18px;
    left: 25px;
}
.testimonial .description:before, .testimonial .description:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    background: #dca842;
    position: absolute;
}
.testimonial .description:after {
    content: "\f10e";
    bottom: -18px;
    right: 25px;
}
*/
.testimonial {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.testimonial .testimonial-content:after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 20px solid var(--basic-border-color);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}
.testimonial .testimonial-profile {
    display: table;
    padding: 15px;
    border: 1px solid var(--basic-border-color);
    border-radius: var(--basic-border-radius);
    margin: 0 auto;
    position: relative;
}
.testimonial .testimonial-profile img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
}
.testimonial .pic {
    border-radius: 50%;
    border: 1px solid var(--basic-border-color);
    float: left;
    
    display: flex;
    position: relative;
    width: 6.25rem;
    height: 6.25rem;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;   
    padding: 0.6rem; 
}
.testimonial .title {
    display: inline-block;
    margin: 0 0 0 1.875rem;
    font-size: 1.1875rem;
    /*font-weight: bold;*/
    position: relative;
    top: 1.375rem;
}
.testimonial .title:before {
    content: "";
    width: 1px;
    height: 4.375rem;
    background: var(--basic-border-color);
    position: absolute;
    top: -8px;
    left: -15px;
}
.testimonial .post {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
}
.pagination {
    float: right;
    margin-bottom: 0rem !important;
}
.page-testimonial-container .testimonial:first-child {
    margin-top: 0rem;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.fileUpload input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}
.category-banner {
    display: flex;
    position: relative;
    width: 100%;
    /*height: 10rem;*/
    transition: border-color .2s ease-in-out;
    border: 1px solid #e9e9f2;
    border-radius: var(--basic-border-radius);
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;    
}
.category-banner img {
    display: block;
    transition: opacity .2s ease-in-out;
    border-radius: var(--basic-border-radius);
    max-width: 100%;
    max-height: 100%;
}
.react-bs-table-pagination {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.react-bs-table-pagination > .row {
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
}
.react-bs-table-pagination .react-bootstrap-table-page-btns-ul {
    margin-bottom: 0rem;
}
.module {
 margin-top: 4rem;   
}
#accountMenu .account-menu-item.active {
    color: var(--primary-color);
}
#accountMenu .account-menu-item {
    padding: 1rem 1.5rem;
    border-top: var(--basic-border);
}
/*.product-card-quantity .input-group-btn .btn {
	padding: .575rem .75rem;
}*/
.product-card-quantity .input-group-btn .btn {
    padding: .49rem .75rem;
}
.btrr-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btlr-0 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.social-links .list-group-item {
    padding: 0.5rem;
}
/*.circle {
    width: 500px;
    height: 500px;
    line-height: 500px;
    border-radius: 50%;
    font-size: 50px;
    color: #fff;
    text-align: center;
    background: #000
}*/
/*.card-buttons .bi::before {
    vertical-align: middle !important;
}*/
/*.product_box_default .product-price {
    margin-top: .5rem;
    margin-bottom: .5rem;
}*/

/* Sticky Header  */
.sticky-header {
    position: fixed;
    z-index: 999;
    opacity: 1;
    width: 100%;
    transition: all 0.8s ease-in;
    top: 0;
}
.sticky-header #header-top, .sticky-header #header-middle-content {
    display: none !important;
}
.sticky-header #header-navigation {
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 5.0s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: anim_titles;
    -moz-animation-direction: normal;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}


/** fadeInLeft **/

@-webkit-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@-moz-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration:1s;
    animation-delay: 1s;
}

/* End Sticky Header  */



/* marge old layout dynemic class with botstrap 5, remove this after change layout css in database and live start */
.text-right {
    text-align: right!important;
}

/*#classic-2 .component-logo img {
   --height: 4.9rem;--
   height: 2.1rem;
}*/

#classic-2 .navbar {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
#classic-2 #header-navigation .navbar {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
#classic-2 .component-account-dropdown .dropdown-menu {
    right: 0;
}
#classic-2 #header-middle-content .container-fluid .row:first-child {
    align-items: center;
}
#classic-2 #header-middle-content .container-fluid .col-sm-3:last-child {
    display: flex;
    justify-content: center;
}
.header-notification .alert-danger {
    color: #fff!important;
    z-index: 999;
    background: rgba(228,57,52,0.5) !important;
    border: 0 !important;
    font-size: .9rem;
    padding: 0.7rem 0;
}
footer#classic-2 #footer-navigation {
    padding-top: 3rem;
}

#classic-5 .style-horizontal .footer-single-block, #stylist-1 .style-horizontal .footer-single-block {
    display: inline-flex ! important;
}
#classic-5 .style-horizontal {
    text-align: center;
}

footer .style-horizontal .widget-title {
    margin-bottom: 0rem;
}
footer .style-horizontal .widget-title {
    margin-bottom: 0rem;
    margin-right: 0.5rem;
}
footer .style-horizontal .widget ul>li {
    margin-bottom: 0rem;
}
#classic-5 .component-footer-payment-icons .payment-text, #classic-4 .component-footer-payment-icons .payment-text {
    display: none;
}
/* marge old layout dynemic class with botstrap 5, remove this after change layout css in database and live close */
#page-checkout .checkout-container.container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}
#page-checkout .checkout-container.container-fluid .checkout-action-container {
    width: 64%;
}
.header-notification .alert {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.module-banner .video-box {
    margin-bottom: 0.313rem;
    margin-top: 1.25rem;
    z-index: 3;
    background: rgb(93 101 113);
    width: 100%;
    border-radius: var(--basic-border-radius);
}
.react-player {
    width: 100% ! important;
    height: 21rem ! important;
    max-width: 101% !important;
    border-radius: var(--basic-border-radius);
}
.module-heading {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.slick-next:before, .slick-prev:before {
    color: var(--text-primary);
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    background-color: var(--bg-primary);    
}
.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
    color: var(--bg-primary-color);
}

.module-category-grid .card-category {
    margin-bottom: 1rem;
}
#footer-top {
    padding-bottom: 1rem;
    padding-top: 1rem;
}
footer .widget-light .alc-bg-link, footer .widget-light .alc-bg-link a {
    color: var(--text-body);
    font-weight: normal;
}
footer .logo-image img {
    max-height: 3.25rem ! important;
    width: auto ! important;
}
footer .widget-link a {
    color: var(--text-body);
}
/* 06-12-2021 start */
.cart-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0rem;
    margin: 0rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 none;
    border-radius: var(--basic-border-radius);
    white-space: nowrap;
}
.dropdown-menu.float-end {
    right: 0;
    left: auto;
}
.bi-heart {
    position: relative;
    top: 0.1rem;
}
.module-banner-container .banner-image-details, .module-product-container .banner-image-details {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.module-banner-container .overlay-fix .banner-image-details, .module-banner-container .card:hover .banner-image-details, .module-product-container .overlay-fix .banner-image-details, .module-product-container .card:hover .banner-image-details {
    top: 50%;
    left: 50%;
    opacity: 1;
    padding: 0.5rem;
}
.module-banner-container .overlay-fix .card-img-overlay, .module-banner-container .card:hover .card-img-overlay, .module-product-container .overlay-fix .card-img-overlay, .module-product-container .card:hover .card-img-overlay {
    background: rgba(0,0,0,0.6);
}
footer .bg-ternary .alc-bg-link, footer .bg-ternary .alc-bg-text, footer .bg-ternary .component-footer-store-info {
    color: var(--text-body);
}
/* 06-12-2021 close */
/* 07-12-2021 start */
.profile-content .bg-secondary {
    background-color: #f7f7f7 !important;
}
/* 07-12-2021 close */
/*08-12-2021 start*/
.alc-card-hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.alc-card-hover:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.drp-cart-table img {
    height: 3rem;
    max-width: 3rem ! important;
}
.blog-grid a.author-link {
    color: inherit;
}
.btn-block {
    width: 100%;
}
.btn-close:focus {
    box-shadow: none;
}
/*08-12-2021 close*/
/*09-12-2021 start*/
.sidebar {
    background-color: #f7f7fc !important;
}
/*09-12-2021 close*/
/*10-12-2021 start*/
/*.input-group.btn-first .btn {
	border-top-right-radius: 0!important;
	border-bottom-right-radius: 0!important
}
.input-group.btn-first .form-control {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
    border-bottom-right-radius: var(--basic-border-radius);
    border-top-right-radius: var(--basic-border-radius);    
}*/
/*10-12-2021 close*/
.checkout-confirm .rrm-body {
    background: #fff;
}
.checkout-confirm .table>:not(:last-child)>:last-child>* {
    border-bottom-color: inherit;
}
.gift-voucher-row .gift-voucher-icon {
    font-size: 2.5rem;
}
.fixed-header-nav {
    position: fixed;
    z-index: 999;
    top:0; left:0;
    width: 100%;
}
.page-link:focus {
    box-shadow: none;
}
/*20-12-2021*/
.alc-loader:after {
    border-top-color: var(--bg-primary);
}
.alc-loader:before {
    border-top-color: var(--bg-primary);
}
.alc-loader {
    border-top-color: var(--bg-primary);
}
.page-item.active .page-link {
    z-index: 3;
    color: var(--bg-primary-text-color);
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
}
.page-link, .page-link:hover {
   color: var(--text-primary);
}
/*20-12-2021*/
/*23-12-2021*/
#header_alert_message {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 30%;
    z-index: 99999;
}
#header_alert_message .alert {
    position: relative;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
#header_alert_message .alert h4 {
    margin-top: 0;
    color: inherit;
    font-size: 1.125rem;
}
#accordionPendingTransaction .accordion-header .accordion-button {
    color: inherit;
    font-weight: 600;
    font-size: 1.2rem;
}
.pending-transaction .pending-transaction-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}
.pending-transaction .pending-transaction-button::after {
    flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out
}
.pending-transaction .card-header:not(.collapsed) .pending-transaction-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(-180deg)
}
/*23-12-2021*/
/*29-12-2021*/
.product-customer-review .star-rating {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}
.mt-n1 {
    margin-top: -0.25rem !important;
}
.mt-n2 {
    margin-top: -0.5rem !important;
}
/*29-12-2021*/
/*30-12-2021*/
.spk-img-top {
    display: flex;
    position: relative;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.spk-img-top img {
    max-width: 100%;
    max-height: 100%;
    width: unset;
    padding: 0;
}

.module-recent-view-product .module-recent-product-grid .card-image .spk-img-top {
    height: 12rem;    
}
.module-recent_product .module-recent-product-grid .card-image .spk-img-top {
    height: 18rem;    
}
.module-category .module-category-grid .spk-img-top {
    height: 19.5rem;
}
/*30-12-2021*/
/*06-01-2022*/
#header-top .component-header-email:not(:last-child) {
    margin-right: .5rem;
}
#header-top .component-header-email:last-child {
    margin-left: .5rem;
}
#header-top .component-text-wishlist:not(:last-child), #header-top .component-wishlist-icon:not(:last-child) {
    margin-right: .5rem;
}
#header-top .component-text-wishlist:last-child, #header-top .component-wishlist-icon:last-child {
    margin-left: .5rem;
}
#header-middle-content .component-wishlist-icon, #header-navigation .component-wishlist-icon {
    margin-right: .5rem;
}
/*06-01-2022*/
/*07-01-2022*/
/*#vertical-mega-menu .dropdown-menu {
    min-width: 100%;
}
#vertical-mega-menu .dropdown-toggle::after {
    float: right;
    margin: 0 4px 0px 7px;
}*/
#vertical-mega-menu .dropdown-menu {
    width: 100%;
}
/*07-01-2022*/
/*08-01-2022*/
.component-sidebar-cart-card .card-header .btn-close {
    font-size: 0.8rem;
}
.component-sidebar-cart-card .side-block {
    width: 25%;
    height: 100vh;
    position: fixed;
    right: 0;
    z-index: 100000;
    transition: all .5s;
    transform: translate3d(100%,0,0);
    top: 0;
    border-radius: 0;
}
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    min-height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    z-index: 2;
    display: none;
    top: 0;
    left: 0;
}
.component-sidebar-cart-card .card-footer {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid #e5edec;
    padding: 0;
    text-align: center;
    width: 100%;
}
.component-sidebar-cart-card .card-footer .btn {
    border-radius: 0rem;
}
.component-sidebar-cart-card .scrollbar {
    height: calc(100vh - 7.8rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
}
/*#mega-2 .cart-dropdown:hover>.dropdown-menu {
    top: 2.2rem;
    border: 0;
    margin-right: -5rem;
}
#mega-2 #vertical-mega-menu {
    margin-top: .3rem;
}*/
#header-middle-content .component-text-wishlist:not(:last-child), #header-middle-content .component-wishlist-icon:not(:last-child) {
    margin-right: .5rem;
}
#header-middle-content .component-account-dropdown:not(:last-child) {
    margin-right: .5rem;
}
/*#header-middle-content .component-text-wishlist:last-child, #header-middle-content .component-wishlist-icon:last-child {
    margin-left: 1rem;
}
#header-middle-content .component-account-dropdown:last-child {
    margin-left: 1rem;
}*/

/*08-01-2022*/
/*10-01-2022*/
/*Start------search-full------------ */
#full-page-search .search-overlay .dropdown-full-search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #full-page-search .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    z-index: 999999;
  }
  #full-page-search .search-overlay.active-search-overlay {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #full-page-search input.form-control {
    background: none;
    border: 0;
    border-bottom: 0.125rem solid #fff;
    font-size: 2.3rem;
    color: #fff;
  }
  #full-page-search .react-autosuggest__container {
  width: 60rem;
  }
  #full-page-search .search-overlay button {
    position: absolute;
    right: .5rem;
    font-size: 2.7rem;
    background-color: transparent;
    border: 0;
  }
  /*End------search-full------------ */

header .bg-primary .bg-primary  {
    color: var(--bg-secondary-color) !important;
    background-color: var(--bg-secondary) !important;
    border-color: var(--bg-secondary) !important;
  }
#single-1 #header-middle-content .component-account-dropdown #navbarDropdown {
    box-shadow: var(--basic-box-shadow)!important;

    width: 2.8rem;
    height: 2.8rem;
    line-height: 1.9rem;
    font-size: 1.2rem;
    background-color: #f3f5f9;
    position: relative;
    display: block;

    border-radius: 50%!important;
    text-align: center!important;
    padding: 0.5rem!important;
    border: 1px solid #dee2e6!important;
    color: var(--text-primary);
}
#single-1 #header-middle-content .component-account-dropdown #navbarDropdown.dropdown-toggle::after {
    display: none;
}
#single-centered #horizontal-mega-menu {
    text-align: center;
}
#single-centered .row.align-items-center {
    text-align: center!important;
    justify-content: space-between!important;
}
/*search-dropdown-small----------- */
#search-dropdown-small.show .dropdown-menu{
    opacity: 1;
    visibility: visible;
    border: 0;
    display: block!important;
    padding: 0;
}
#search-dropdown-small .dropdown-menu {
    left: inherit;
}
#search-dropdown-small .form-control {
    width: 17rem;
    font-size: .9rem;
}
#solid-1 .component-account-dropdown:not(:last-child), #solid-1 .search-dropdown-small:not(:last-child), #solid-1 .header-cart-component:not(:last-child), #solid-1 .component-wishlist-icon:not(:last-child) {
    margin-right: .5rem;
}
/*10-01-2022*/
footer#stylist-1 .style-horizontal .widget-link {
    padding-left: 1rem;
    padding-right: 1rem;
}
footer#stylist-1 #footer-bottom-link .component-footer-copyright {
    margin-top: 1rem;
}
footer#stylist-1 .newsletter-form {
    margin-bottom: 2rem;
}

footer .component-footer-store-info h6, footer .component-footer-email h6, footer .footer-component-number h6, footer .component-footer-store-info, footer .component-footer-email, footer .footer-component-number {
    font-weight: normal;
} 

/* product card product_box_classic_box_two start */
#product_box_classic_box_two { border: 0;margin: 5px;border-radius: .2rem;transition: all ease 500ms 0s;}
#product_box_classic_box_two .card-image:hover>a img {filter: brightness(80%);}
#product_box_classic_box_two img {transition: all .3s linear;-webkit-transition: all .3s linear;}
#product_box_classic_box_two .card-inner:hover .card-buttons {opacity: 1;transform: translateY(0);visibility: visible;}
#product_box_classic_box_two .card-buttons {
    position: absolute;
    top: 31%;
    width: 100%;
    left: 0%;
    text-align: center;
    transform: translateY(-50px);
    transition: all 500ms ease 0s;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
}
/* product card product_box_classic_box_two close */

/* Product Classic - 3 close */
#product_box_classic_box_three .product-button-cart {
    margin-top: .5rem;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

#product_box_classic_box_three:hover .card-buttons{opacity: 1;}
#product_box_classic_box_three .product-button-cart {
    margin-top: .5rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
}
#product_box_classic_box_three .product-price {
    margin-bottom: 0rem;
}
#product_box_classic_box_three .card-buttons {
    opacity: 0;
    transition: all 500ms ease;
    position: absolute;
    transition: all .3s ease-in-out;
    opacity: 0;
    right: 0px;
    left: 0px;
    top: 28%;
}
/* Product Classic - 3 start */

/* Product classic_box_fouur */
#product_box_classic_box_four:hover .btn-quick-view {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}
#product_box_classic_box_four .btn-quick-view {
    left: 43%;
    top: 28%;
    bottom: auto;
    right: auto;
    transform: translate3d(-50%, -50%, 1px);
    position: absolute;
    z-index: 4;
    overflow: hidden;
    opacity: 0;
}
#product_box_classic_box_four .card-buttons .btn-quick-view {
    visibility: hidden;
    opacity: 0;
    transform: scale(.88);
    border-radius: 50px !important;
}
#product_box_classic_box_four .top-divider {
    background: rgba(240, 242, 245, 1);
    padding: 0px 5px 0px 5px;
    margin-bottom: .5rem;
    justify-content: space-between;
    position: relative;
    transform: none;
    width: initial;
}

/* Product classic_box_fouur */

/* product_box_classic_box_five */
/* Classic-5 */
#product_box_classic_box_five {
    border: 0;
    border-radius: .1em;
}
#product_box_classic_box_five:hover {transition: all .2s ease-in-out;box-shadow: 0 3px 16px 0 rgba(0,0,0,.11);}
#product_box_classic_box_five .product-quantity,
#product_box_classic_box_five .card-buttons,
#product_box_classic_box_five .product-card-option {opacity: 0 !important;}
#product_box_classic_box_five:hover .card-buttons,
#product_box_classic_box_five:hover .product-quantity,
#product_box_classic_box_five:hover .product-card-option{opacity: 1 !important;}

/* classic_box_seven */
#product_box_classic_box_seven {padding: 0;border: 0;}
#product_box_classic_box_seven .card-image {
    border: 1px solid #eeeeee;
    padding: .2rem;
    border-radius: 0;
}
#product_box_classic_box_seven .card-buttons {
    opacity: 0;
    margin-top: .4rem;
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#product_box_classic_box_seven:hover .card-buttons {
    opacity: 1 !important;
}

/* box_eight */
#product_box_classic_box_eight {
    border: 1px solid #fff;
    position: relative;
}

#product_box_classic_box_eight:hover {
    border: 1px solid #eee;
}
  #product_box_classic_box_eight .product-quantity .input-group .btn,
  #product_box_classic_box_eight .custom-select {
      padding: 8px 13px !important;
      line-height: 1.25;
      background: #f6f6f6;
      border: 1px solid #c9c7c7;
      color: #333333;
      border-radius: 0 !important;
      box-shadow: none !important;
  }  
  #product_box_classic_box_eight .card-buttons .btn-quick-view {
      opacity: 0;
  }
  #product_box_classic_box_eight:hover .btn-quick-view {
      visibility: visible !important;
      opacity: 1 !important;
  }
  #product_box_classic_box_eight .btn-quick-view {
      left: 50%;
      top: 28%;
      bottom: auto;
      right: auto;
      transform: translate3d(-50%, -50%, 1px);
      position: absolute;
      z-index: 4;
      overflow: hidden;
      opacity: 0;
  }


/* classic-9 */
#product_box_classic_box_nine {
    border: 0;
    border-left: 1px solid #eee;
    padding: 0;text-align: left;
    border-radius:0;
}
#product_box_classic_box_nine .text-center {
    text-align: left !important;
}
/*#product_box_classic_box_nine .card-buttons .btn-cart,
#product_box_classic_box_nine .card-buttons .btn-wishlist,
#product_box_classic_box_nine .card-buttons .btn {
    border: 0;
}*/
#product_box_classic_box_nine .product-card-body {
  border-top: 1px solid #eee;
}
/* product card classic 10 */
#product_box_classic_box_ten .card-buttons,
#product_box_classic_box_ten .product-card-action {
    position: absolute;
    right: 21px;
    top: 0;
    opacity: 0;
    -webkit-transition: .6s;
    transition: .6s;
}
#product_box_classic_box_ten .card-buttons .btn {
  margin-top: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
#product_box_classic_box_ten:hover .product-card-action,
#product_box_classic_box_ten:hover .card-buttons {
  right: .2rem;
  visibility: visible;
  opacity: 1;
}
#product_box_classic_box_ten .product-quantity {
    margin-bottom: 1rem ! important;
}
#product_box_classic_box_ten:hover .product-card-action,
#product_box_classic_box_ten:hover .card-buttons {
  right: .2rem;
  visibility: visible;
  opacity: 1;
}
#product_box_classic_box_ten .product-quantity {
    margin-bottom: 1rem ! important;
}
.product-attribute .table-bordered.table>:not(:first-child){
    border-top: 0;
}

#classic-4.custom-footer .bg-primary .newsletter-form .btn-primary, .skin_blue-yellow #classic-5.custom-footer .bg-secondary .newsletter-form .btn-primary, #stylist-1.custom-footer .bg-primary .newsletter-form .btn-primary {
    color: var(--text-primary) !important;
    background-color: #f8f9fa !important;
    border-color: #f8f9fa !important;
    border-left: 1px solid var(--text-primary) !important;
}

#mega-1 #header-navigation.fixed-header-nav {
    background: #fff;
    box-shadow: 0 0.125rem 0.625rem -0.1875rem rgb(0 0 0 / 10%)
}
/*31-01-2022*/
#solid-1 #search-dropdown-small .popup-content {
    position: absolute;
}
/*31-01-2022*/