/* - MASTER - */


/* Text right */
.text-right{
    text-align: right;
}

/* Header */
.nav-mobile-icon{
    display: none;
}

/* Footer */
.footer-wrapper{
    background: #ffffff;
}

.footer .nav.items-wrapper .item{
    padding: 3px 0;
    width: 100%;
}

.footer .nav.items-wrapper .item a{
    color: #000000;
    padding: 0;
}

.footer-bottom{
    background: #ffffff;
}

/* helper for pading form pages in two column */
.right-info{
    padding-left: 50px;
}

.left-info{
    padding-right: 50px;
}

/* Page style */
.page-fullwidth-wrapper,
.page-normal-wrapper,
.page-with-menu-wrapper,
.error-page{
    padding-top: 50px;
    margin-bottom: 50px;

}

.page-fullwidth-wrapper .text-wrapper,
.page-normal-wrapper .post-content,
.page-with-menu-wrapper .post-content{
    font-size: 14px;
    line-height: 22px;
}

.page-fullwidth{
    padding: 0 50px;
    text-align: center;
}

.page-form{
    margin-bottom: 50px;
}

.page .post-content p,
.page .text-wrapper p {
    margin-bottom: 10px;
}

/*Page content form */
.page-content-form{
    margin-bottom: 30px;
}

.page-content-form p {
    font-size: 14px;
}

/*Page short description form */
.page-short-description{
    margin-bottom: 30px;
}

.page-short-description p {
    font-size: 14px;
}

/* Page form headline and description center*/
.page-form .intro{
    margin: 45px 0 55px;
}

.page-form .intro .title{
    text-align: center;
}

.page-form .intro .description{
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}

/* Product list */
.product-listing{
    margin-top: 40px;
}

/* Product detail */
.product-details{
    padding-top: 30px;
    margin-bottom: 50px;
}
.horizontal-image .img-wrapper{
    text-align: center;
}

.horizontal-image{
    margin-bottom: 70px;
}

.validation-errors-list li{
    font-size: 11px;
}

.clearfix{
    display: block;
    width: 100%;
}

.newsletter-form .validation-errors-list{
    right: auto;
}

.page-wrapper .img-mobile{
    display: none;
}

.product-details .structure-in-description .heading-wrapper{
    display: none;
}

/* Table - overiding the bootstrap's default styles */
.table-responsive table{
    margin-bottom: 0;
    width: 100%;
    border: 1px solid #e2e2e2;
}

.table-responsive table > thead {
    border-bottom: 1px solid #cacaca;
}

.table-responsive table > thead > tr > th,
.table-responsive table > tbody > tr > th,
.table-responsive table > tfoot > tr > th,
.table-responsive table > thead > tr > td,
.table-responsive table > tbody > tr > td,
.table-responsive table > tfoot > tr > td{
    border: 0;
    vertical-align: middle;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

.table-responsive table>tbody>tr>td,
.table-responsive table>tbody>tr>th,
.table-responsive table > thead > tr > th{
    border-bottom: 1px solid #e2e2e2;
    font-size: 14px;
    padding: 10px 15px;
}

.table-responsive table > thead > tr > th,
.table-responsive table>tbody>tr>th{
    color: #000000;
    font-weight: 700;
}

.table-responsive table>tbody>tr>td>p{
    margin-bottom: 0 !important;
}

.table-responsive table>tbody>tr:nth-child(2n+1){
    background: rgba(0,0,0,0.03);
}

.table-responsive table > tbody > tr:last-child > td{
    border-bottom: 0;
}

.table-responsive table>tbody>tr:hover>td,
.table-responsive table>tbody>tr:hover>th {
    background-color: #f2f2f2;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th{
    background-color: #fff;
}

.table-striped>tbody>tr:nth-child(even)>td,
.table-striped>tbody>tr:hover>td,
.table-striped>tbody>tr:nth-child(even)>th,
.table-striped>tbody>tr:hover>th {
    background-color: #f0f6f8;
}

.lists-tabs .tab-content > .tab-pane{
    opacity: 0;
    -webkit-transition: opacity 0s linear;
    -moz-transition: opacity 0s linear;
    -ms-transition: opacity 0s linear;
    -o-transition: opacity 0s linear;
    transition: opacity 0s linear;
    display: block;
    height: 0;
    overflow: hidden;
}

.lists-tabs .tab-content > .tab-pane.active, .product-tab .tab-content > .tab-pane.active{
    opacity: 1;
    height: inherit;
    overflow: inherit;
}

/*Loader*/

.loader-wrapper{
    position: absolute;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.7);
}

.loader-icon{
    position: relative;
    display: block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .4);
    top: 150px;
    left: 35%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 43px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spin .6s linear infinite;
    animation: spin .6s linear infinite;
}

.loader-icon-xs{
    height: 30px;
    width: 30px;
}

.loader-icon:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5px;
    left: 20px;
    border-radius: 50%;
    background-color: #3973b5;
}

.loader-icon-inline{
    top: 10px;
    left: 20px;
    display: inline-block;
}

.loader-icon-xs:after{
    width: 5px;
    height: 5px;
    left: 10px;
    top: -4px;
}

.cart-loader.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
}

.cart-loader.loader-wrapper .loader-icon {
    top: 50%;
    margin-top: -40px;
}

/* Cart empty */
.empty-cart-alert-wrapper{
    margin-bottom: 40px;
}
.table-cart-discount-info,
.on-cart-asterisk{
    display: none;
}

.show-store-list > span{
    display: none;
}

/* Popovers */
.popover-header{
    padding: 5px 10px;
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
    background: #ffffff;
    border: none;
    border-radius: .3rem;
}
.popover-body{
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    display: none;
    border-top: 1px solid;
}
.popover-body *{
    font-size: 12px;
    line-height: 1.5;
}
.popover, .popover-header, .popover-body{
    max-width: 210px;
    text-align: center;
    border-color: #e5e5e5;
}
.popover-body .popover-text,
.popover-body .popover-text *{
    font-size: 13px;
    line-height: 1.5;
}

.cart-products-wrapper-onepage .cart-table .price-info,
.cart-product .price-info{
    display: none;
}

.password-eye-wrapper,
.password-eye-wrapper span {
    position: unset;
}

.password-eye-wrapper .fa-eye {
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 25px;
    top: 65%;
    transform: translateY(-50%);
    z-index: 999;
}

.login-page .password-eye-wrapper .fa-eye {
    right: 35px;
}

.password-eye-wrapper .fa-eye:before {
    margin-left: 10px;
    bottom: -4px;
    position: relative;
    content: url("../../images/core/password_eye_show.png");
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.password-eye-wrapper .fa-eye.active:before{
    content: url("../../images/core/password_eye_hide.png");
}

/* accordion map */

.accordion-map.store-listing-map {
    height: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-height: unset;
    margin-bottom: 0;
}

.accordion-map.store-listing-map.show-map-as-accordion {
    opacity: 1;
    margin-bottom: 80px;
}
.delete-user-page-wrapper{
    margin-bottom: 20px;
}

/* City Select Availability In Stores */

.city-select-wrapper > label {
    margin-right: 20px;
    margin-bottom: 0;
}

.city-select-wrapper .styled-select {
    width: 200px;
}

/* Cart address */

.sum-table-header .subtitle,
.cart-address .subtitle {
    display: none;
}

/* Error 404 page*/

.container.error-404 {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container.error-404 img {
    max-width: 500px;
}
body.uc-favorites > .modal-backdrop {
    opacity: 0.5 !important;
}
body *:focus-visible{
    box-shadow: 0px 0px 0px 2px rgba(255,255,255,1) inset, 0px 0px 0px 3px rgba(0,0,0,1) inset;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1) inset, 0px 0px 0px 3px rgba(0,0,0,1) inset;
    -moz-box-shadow: 0px 0px 0px 2px rgba(255,255,255,1) inset, 0px 0px 0px 3px rgba(0,0,0,1) inset;
}
body .form-group-checklabel:has(input:focus):focus-visible,
body .icheck-input:has(input:focus):focus-visible,
body .icheck-input:focus-visible,
body .btn:focus-visible {
    outline: 1px solid #000 !important;
    outline-offset: 1px !important;
}
body select:focus-visible{
    box-shadow: unset;
}
body .icheck-item:has(.icheck-input:focus-visible) {
    outline: 1px solid #000 !important;
    outline-offset: 1px !important;
}
body .nav-main > li:has(a:focus-within) .show-menu-with-keybord {
    display: inline-block !important;
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 20px;
}
body .nav-main > li:has(a:focus-within) .show-menu-with-keybord:before {
    font-size: 20px;
}
.sr-only.visually-hidden {
    font-size: 0;
    height: 0;
    position: absolute !important;
}
body .autocomplete-button:focus-visible,
body .autocomplete-input:focus-visible {
    box-shadow: unset !important;
    outline: unset !important;
}
.show-menu-with-keybord {
    display: none !important;
}