@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
:root {
    --default: black;
    --secondary: rgba(0,0,0,0.2);
    --hov-secondary: var(--hov-primary);
    --tertiary: #2d2d2d;
    --quaternary: #191617;
    --quinary: #232122;
    --black: black;
    --white: white;
    --error: #E61D34;
    --gray: #f9f9f9;
    --font-family: 'Open Sans', sans-serif;
    --body-size: 14px;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
html,
body {
    overflow-x: hidden;
}
body {
    color: var(--default);
    font-size: var(--body-size);
    line-height: 1.25;
    font-weight: 400;
    font-family: var(--font-family);
    background-color: var(--gray);
}
a,
a:hover {
    color: inherit;
}
a.text-primary:focus,
a.text-primary:hover,
a.text-primary.hov-text-hov-primary:focus,
a.text-primary.hov-text-hov-primary:hover {
    color: var(--hov-primary) !important;
}
p:last-child {
    margin-bottom: 0;
}
.text-email {
    width: 8.8em;
}
.grecaptcha-badge {
    display: none;
}
.btn {
    border-radius: 0;
}
.btn-b-width-2 {
    border-width: 2px;
}
.btn-circle {
    border-radius: 50%;
}
.visibility-hidden {
    visibility: hidden;
}
.alert-grey {
    background-color: var(--gray);
    color: var(--default);
}
.loader {
    position: relative;
    pointer-events: none;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
.btn.btn-b-width-2.loader:before,
.btn.btn-b-width-2.loader:after {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
}
.loader:before {
    content: "";
    background-color: rgba(255,255,255,0.7);
}
.loader:after {
    content: "";
    -webkit-animation:la-spin 2s infinite linear;
    animation:la-spin 2s infinite linear;
    color: var(--primary);
    width: 30px;
    height: 30px;
    margin: auto;
    background-image: url('/public/assets/img/icons/loader.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.sk-main-wrapper {
    background-color: transparent;
    min-height: auto;
}
/*Pagination*/
.pagination .page-link,
.page-item.disabled .page-link {
    min-width: 30px;
    min-height: 30px;
    line-height: 30px;
    font-size: 16px;
    border-radius: 0 !important;
    color: rgba(0,0,0,0.3);
    background-color: transparent;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 0;
    position: relative;
}
.page-item:first-child .page-link:before,
.page-item:last-child .page-link:before {
    content: "";
    border-top: 1px solid;
    border-left: 1px solid;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.page-item:first-child .page-link:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.page-item:last-child .page-link:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
/*Modal*/
.modal-content {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.35);
}
.modal-backdrop {
    background-color: var(--white);
}
.modal-backdrop.show {
    opacity: 0.9;
}
.close {
    color: #808080;
    text-shadow: none;
    opacity: .5;
}
.modal .close svg {
    stroke: #808080;
    stroke-miterlimit: 10;
    stroke-width: 0.095rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.modal .close:hover svg {
    stroke: var(--primary);
}
.modal-content .modal-body {
    max-height: calc(100vh - 50px);
}
/*Form*/
.form-control,
.bootstrap-select .dropdown-toggle {
    padding: 10px;
    font-size: inherit;
    height: auto;
    border: 1px solid rgba(25,22,23,0.1);
    color: var(--default);
    border-radius: 0;
    background-color: transparent;
}
.form-control::-webkit-input-placeholder {
    color: var(--default);
}
.form-control:-ms-input-placeholder {
    color: var(--default);
}
.form-control::placeholder {
    color: var(--default);
}
.form-control-with-label {
    position: relative;
}
.form-control-with-label.flex-grow-1 {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
}
.form-control-with-label .form-control,
.form-control-with-label .bootstrap-select .dropdown-toggle {
    padding: 20px 10px 3px;
}
.form-group .form-control-with-label .bootstrap-select {
    padding: 0 !important;
}
.form-control-with-label label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3px 10px;
    font-size: 1em;
    color: var(--default);
    margin: 0;
    pointer-events: none;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 23px;
}
.form-control-with-label.focused label,
.form-control-with-label.always-focused label {
    opacity: 0.5;
    font-size: 12px;
}
.form-control-with-label:not(.always-focused):not(.focused) label {
    min-height: 100%;
}
.form-control-with-label .bootstrap-select > .dropdown-toggle::after {
    margin-top: -15px;
}
.bootstrap-select .dropdown-menu {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 0;
}
.bootstrap-select .dropdown-menu li:not(:last-child)::after {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    border-top: 1px solid rgba(0,0,0,0.2);
    content: "";
}
.bootstrap-select .dropdown-menu .dropdown-item {
    padding: 5px 15px;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item:active {
    color: var(--primary) !important;
    background-color: transparent;
}
.bootstrap-select .dropdown-menu::before,
.bootstrap-select .dropdown-menu::after {
    display: none;
}
.sk-checkbox,
.sk-radio {
    padding-left: 0;
    font-size: inherit;
}
.sk-checkbox .sk-square-check,
.sk-checkbox .sk-rounded-check,
.sk-radio .sk-square-check,
.sk-radio .sk-rounded-check {
    position: relative;
    display: inline-block;
    top: 0;
    margin-right: 0.25em;
}
.sk-square-check,
.sk-rounded-check {
    border: 1px solid;
    height: 0.8em;
    width: 0.8em;
}
.sk-square-check {
    border-radius: 0;
}
.input-group .form-control-with-label:first-child .form-control {
    border-right: 0;
}
.input-group-append .btn {
    background-color: transparent;
    border-top: 1px solid rgba(25,22,23,0.1);
    border-right: 1px solid rgba(25,22,23,0.1);
    border-bottom: 1px solid rgba(25,22,23,0.1);
    color: rgba(0,0,0,0.5);
}
.input-group-append .btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    border-right: 1px solid rgba(25,22,23,0.1);
}
.input-group-append .btn:hover {
    background-color: var(--primary);
    color: var(--white);
}
.input-group-append .btn:hover::before {
    border-right-color: transparent;
}
/*Table*/
.table {
    color: inherit;
}
.table th {
    padding: 0 10px 15px;
}
.table td {
    padding: 20px 10px;
}
.table td,
.table th {
    border-top: none;
}
.table td:first-child,
.table th:first-child {
    padding-left: 0;
}
.table td:last-child,
.table th:last-child {
    padding-right: 0;
}
.table thead th {
    border-bottom: 1px solid rgba(0,0,0,0.5);
    font-weight: 700;
}
.table tbody td {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    vertical-align: middle;
}
/*Dropdown*/
.dropdown-menu {
    top: calc(100% + 15px);
    border-color: transparent;
    border-radius: 0;
    max-width: 100%;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
}
.dropdown-menu.dropdown-menu-center {
    left: auto;
    right: 0;
}
.dropdown-menu::before {
    left: 0;
    right: 0;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    margin: auto;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dropdown-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-color: var(--white);
}
/*Header*/
.header-categories {
    line-height: 1;
}
.header-categories li {
    display: inline-block;
}
.header-categories li:not(:last-child) {
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid var(--primary);
}
.header-categories li a:hover {
    color: var(--primary);
}
.header-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0,0,0,0.2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link svg.fill,
.header-link svg.stroke {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link svg.stroke {
    fill: none;
    stroke: var(--black);
    stroke-miterlimit: 10;
}
.header-link:hover,
.front-header-search .header-link.on-phone:hover {
    background-color: var(--primary);
    border-color: var(--primary)
}
.header-link:hover svg.fill {
    fill: var(--white);
}
.header-link:hover svg.stroke {
    stroke: var(--white);
}
.cart-number {
    background-color: var(--black);
    color: var(--white);
    font-size: 9px;
    padding: 2px;
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    right: 1px;
    min-width: 15.25px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-link:hover .cart-number {
    background-color: var(--white);
    color: var(--black);
}
.front-header-search-container {
    border: 1px solid transparent;
}
.front-header-search .form-control {
    position: absolute;
    left: 50px;
    opacity: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;
    width: calc(100% - 50px);
}
.front-header-search .header-link.on-phone {
    display: none;
}
.typed-search-box {
    border-left: 1px solid rgba(0,0,0,0.2);
    border-right: 1px solid rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    left: -1px;
    right: -1px;
}
.typed-search-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    border-top: 1px solid rgba(0,0,0,0.2);
}
.front-header-search {
    width: 35px;
    height: 35px;
    position: relative;
}
.front-header-search.active .front-header-search-container {
    width: 200px;
    left: -165px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.2);
}
.front-header-search.active .form-control {
    opacity: 1;
    pointer-events: all;
}
.front-header-search.active .header-link {
    border-color: transparent;
}
.header-dropdown-link svg {
    fill: rgba(0,0,0,0.4);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-dropdown-link:hover {
    color: var(--primary);
}
.header-dropdown-link:hover svg {
    fill: var(--primary);
}
/*Fixed Search*/
.fixed-search {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    z-index: 1000;
}
.fixed-search.active .fixed-search-container {
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
}
.fixed-search-form {
    background-color: var(--white);
    position: relative;
}
.fixed-search:not(.active) .fixed-search-form {
    display: none;
}
.fixed-search-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.fixed-search-close svg {
    stroke: rgba(25,22,23,0.4);
    stroke-miterlimit: 10;
    stroke-width: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.fixed-search-close:hover svg {
    stroke: var(--primary);
}
.fixed-search-toggle,
.fixed-search-btn {
    background-color: var(--primary);
    text-align: center;
    padding: 7px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.fixed-search.active .fixed-search-toggle,
.fixed-search:not(.active) .fixed-search-btn {
    display: none;
}
.fixed-search-toggle:hover,
.fixed-search-btn:hover {
    background-color: var(--hov-primary);
}
/*Results*/
.bootstrap-select.form-brand .dropdown-toggle {
    border: 0;
    padding: 5px 0;
}
.product-res-image {
    padding-top: 85%;
    position: relative;
}
.product-res-brand {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
.product-res-star {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    top: -0.1em;
}
.product-res-star svg {
    fill: rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-res-whole-price {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-res-star.active {
    color: var(--primary);
}
.product-res-star.active svg {
    fill: var(--primary);
}
.product-res-star.active .product-res-whole-price {
    opacity: 1;
}
.product-res-stock-warning,
.product-res-limit-warning {
    position: absolute;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    min-width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-res-stock-warning.active,
.product-res-limit-warning.active {
    opacity: 1;
}
/*Publish*/
.product-publish-description ul {
    padding-left: 1em;
}
.product-publish-stock-warning:not(.active),
.product-publish-limit-warning:not(.active) {
    display: none;
}
.out-of-stock-btn {
   pointer-events: none;
}
.sk-plus-minus.disabled {
    pointer-events: none;
    opacity: 0.7;
}
.sk-plus-minus.disabled * {
    cursor: default;
}
/*Cart*/
.eye-toggle {
    position: relative;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.eye-toggle:not(.active):after {
    content: "";
    position: absolute;
    border-bottom: 2px solid;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.eye-toggle:hover {
    color: var(--primary);
}
.cart-res-item {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 2px solid rgba(0,0,0,0.07) !important;
}
.cart-res-delete svg {
    vertical-align: baseline;
    fill: rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.cart-res-delete:hover {
    color: var(--primary);
}
.cart-res-delete:hover svg {
    fill: var(--primary);
}
.cart-comments {
    border-width: 2px;
    font-weight: 600;
}
.form-control.cart-comments::-webkit-input-placeholder {
    color: rgba(0,0,0,0.5);
}
.form-control.cart-comments:-ms-input-placeholder {
    color: rgba(0,0,0,0.5);
}
.form-control.cart-comments::placeholder {
    color: rgba(0,0,0,0.5);
}
/*Checkout*/
.checkout-boxes,
.sk-megabox .sk-megabox-elem {
    background-color: rgba(107,107,107,0.1);
    color: rgba(0,0,0,0.5);
}
.sk-megabox .sk-megabox-elem {
    border: none;
    border-radius: 0;
}
.sk-megabox > input:checked ~ span .sk-rounded-check {
    border-color: var(--primary);
}
.sk-megabox .sk-rounded-check::after {
    width: auto;
    height: auto;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    margin: auto;
}
/*My Account*/
.sk-user-sidenav-wrap {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    max-height: none;
    border: none;
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link {
    color: rgba(0,0,0,0.4);
    font-weight: 400;
    font-size: 1em;
    border-left: none;
    padding: 10px 0;
}
.sk-side-nav-list .sk-side-nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sk-user-sidenav .sk-side-nav-list .sk-side-nav-link svg {
    fill: rgba(0,0,0,0.4);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.sk-user-sidenav .sk-side-nav-link.active,
.sk-user-sidenav .sk-side-nav-link:hover {
    background-color: transparent;
    color: var(--primary);
}
.sk-user-sidenav .sk-side-nav-link.active svg,
.sk-user-sidenav .sk-side-nav-link:hover svg {
    fill: var(--primary);
}
.sk-user-panel {
    padding-left: 0;
}
.account-side-link svg {
    fill: rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.account-side-link:hover svg {
    fill: var(--primary)
}
/*Order Popup*/
.card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    border-radius: 0;
}
.card.card-white .card-header {
    border-bottom: 2px solid rgba(77,77,79,0.5);
}
.order-step-item {
    color: rgba(77,77,79,0.4);
}
.order-step-item .title {
    border-bottom: 2px solid;
    padding-bottom: 3px;
    position: relative;
}
.order-step-item.text-primary .title::before {
    content: "";
    border-bottom: 2px solid;
    border-right: 2px solid;
    display: inline-block;
    width: 0.5em;
    height: 0.85em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    left: 0.25em;
    margin-right: 1em;
}
/*Manage Profile*/
.profile-address-btn-drop svg {
    fill: #6b6b6b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.profile-address-btn-drop:hover svg {
    fill: var(--primary);
}
.profile-address-btn-drop + .dropdown-menu {
    padding: 0 5px;
    position: absolute !important;
    top: 10px !important;
    right: 100% !important;
    left: auto !important;
    transform: none !important;
    min-width: 6rem;
    max-width: none;
}
.profile-address-btn-drop + .dropdown-menu::before,
.profile-address-btn-drop + .dropdown-menu::after {
    display: none;
}
.profile-address-btn-drop + .dropdown-menu .dropdown-item {
    padding: 5px 0;
    color: rgba(0,0,0,0.5);
}
.profile-address-btn-drop + .dropdown-menu .dropdown-item.active,
.profile-address-btn-drop + .dropdown-menu .dropdown-item:hover,
.profile-address-btn-drop + .dropdown-menu .dropdown-item:active {
    color: var(--primary) !important;
    background-color: transparent;
}
.profile-address-btn-drop + .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
/*Terms Pages*/
.terms-res-item {
    margin-bottom: 35px;
}
.terms-res-item:last-child {
    margin-bottom: 0;
}
.terms-res-item a {
    color: inherit;
    display: flex;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}
.terms-res-item a::after {
    content: "";
    flex: 1;
    border-bottom: 2px dotted;
}
.terms-res-item a:hover {
    color: var(--primary);
}

/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {

}
/* md */
@media (min-width: 768px) {
    /*All*/
    :root {
        --body-size: 16px;
    }
    /*Form*/
    .form-control,
    .bootstrap-select .dropdown-toggle {
        padding: 13px 15px;
    }
    .form-control-with-label label {
        padding: 5px 15px;
        min-height: 27px;
    }
    .form-control-with-label .form-control,
    .form-control-with-label .bootstrap-select .dropdown-toggle {
        padding: 23px 15px 5px;
    }
    /*Header*/
    .header-link,
    .front-header-search {
        width: 50px;
        height: 50px;
    }
    .front-header-search.active .front-header-search-container {
        width: 245px;
        left: -195px;
    }
    .header-categories li:not(:last-child) {
        padding-right: 15px;
        margin-right: 15px;
    }
    .cart-number {
        font-size: 10px;
        bottom: 5px;
        right: 2px;
        min-width: 16.5px;
    }
}
/* lg */
@media (min-width: 992px) {

}
/* xl */
@media (min-width: 1200px) {
    /*All*/
    :root {
        --body-size: 18px;
    }
    /*My Account*/
    .sk-user-sidenav-wrap {
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        max-width: 250px;
    }
    .sk-user-panel {
        padding-left: 30px;
    }
}
/* xxl */
@media (min-width: 1500px) {
    /*Dropdown*/
    .dropdown-menu.dropdown-menu-center {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    /*My Account*/
    .sk-user-panel {
        padding-left: 70px;
    }
    /*Manage Profile*/
    .profile-address-item:nth-child(2n+1) {
        border-right: 1px solid rgba(0,0,0,0.1);
    }
}
/* xxxl */
@media (min-width: 1750px) {

}
/*Responsive - Desktop First*/
/* xl */
@media (max-width: 1499.98px) {
    /*Dropdown*/
    .dropdown-menu::before {
        left: auto;
        right: 15px;
    }
}
/* lg */
@media (max-width: 1199.98px) {
    /*Manage Profile*/
    .manage-profile-box {
        background-color: var(--gray);
    }
}
/* md */
@media (max-width: 991.98px) {

}
/* sm */
@media (max-width: 767.98px) {
    /*Dropdown*/
    .dropdown-menu::before {
        right: 8px;
    }
    /*Manage Profile*/
    .profile-address-default {
        top: auto !important;
    }
}
/* xs */
@media (max-width: 575.98px) {
    /*Header*/
    .front-header-search.active .front-header-search-container {
        width: auto;
        left: 0;
        border-bottom: transparent;
    }
    .front-header-search .form-control {
        left: auto;
        width: 150px;
        right: -1px;
        background-color: var(--white);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
        border: 1px solid rgba(0,0,0,0.2) !important;
    }
    .front-header-search .header-link.on-phone {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -149px;
        background-color: var(--white);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
        border: 1px solid rgba(0,0,0,0.2);
        border-right: none;
        z-index: 1;
    }
    .front-header-search.active .header-link.on-phone {
        display: -ms-flexbox;
        display: flex;
    }
    .typed-search-box {
        left: -149px;
        right: -1px;
        width: 183px;
        top: calc(200% - 1px) !important;
        z-index: 1;
    }
}