/* TODO REFACTOR */

.n-body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
.n-main {
    width: 100vw;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    background-image: url(/assets/img/login-bg.png);
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
}
.n-title-basic {
    font-size: 18px;
    color: #F1682B;
    font-weight: 600;
}
.n-title-h1 {
    font-size: 28px;
    color: #F1682B;
    font-weight: bold;
}
.n-title-h2 {
    font-size: 18px;
    color: black;
    font-weight: bold;
    line-height: 26px;
}
.n-subtitle-basic {
    color: #8F8F8F;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    margin: 0;
    transition: 0.2s all ease-in;
}
.n-title-sec {
    color: white;
    font-weight: bold;
    font-size: 20px;
}
.n-login {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.n-login-container {
    background-color: white;
    border-radius: 8px;
    min-width: 500px;
}
@media screen and (max-width: 600px) {
    .n-login-container {
        min-width: auto;
        width: 100%;
        margin: 0 10px;
    }
}
.n-login__logo {
    border-bottom: 1px solid #F1682B;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.n-login__image {
    width: auto;
    height: auto;
}
.n-login__flash {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.n-login-username {
    padding: 40px 40px 30px 40px;
}
@media screen and (max-width: 600px) {
    .n-login-username {
        padding: 20px;
    }
}
.n-login-username__input {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 8px;
}
.n-login-username__input-type {
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}
.n-login-select {
    width: 400px;
    text-align: center;
    color: #00000080;
    font-weight: bold;
}
@media screen and (max-width: 600px) {
    .n-login-select {
        width: 100%;
    }
}
.n-login-username__error {
    text-align: center;
    color: #F1682B;
    padding: 10px 0;
}
.n-login-username__input-button {
    background-color: #F1682B;
    color: white;
    border-radius: 8px;
    width: 100%;
    padding: 6px;
    cursor: pointer;
    border: none;
    height: 40px;
    transition: 0.2s all ease-in;
}
.n-login-username__input-button:hover {
    background-color: #ee6226;

}
.n-login-username__input-button[disabled] {
    opacity: 0.8;
    background-color: #f1682bdb;
}
.n-login-username__input-button-inverse {
    background-color: white;
    color: #F1682B;
    border-radius: 8px;
    width: 100%;
    padding: 6px;
    cursor: pointer;
    border: none;
    height: 40px;
    transition: 0.2s all ease-in;
    font-size: 18px;
    font-weight: 500;
}
.n-login-username__input-button-inverse:hover {
    background-color: #dfdddd;
}
.n-login-username__terms {
    text-align: center;
    padding-bottom: 20px;
}
.n-salepoint-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-height: 500px;
}
.n-salepoint-inner {
    padding: 3px;
    min-width: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.n-salepoint-list {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    /* max-height: 400px; */
    overflow: scroll;
    width: 100%;
    /* padding-top: 20px; */
    padding-bottom: 10px;
}
.n-stadistic {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    z-index: 100;
    padding: 100px;
    transition: 0.2s all ease-in;
    overflow: scroll;
}
@media screen and (max-width: 1024px) {
    .n-stadistic {
        padding: 10px;
        overflow: scroll;
    }
}
.n-stadistic-container {
    background-color: white;
    transition: 0.2s all ease-in;
    border-radius: 8px;
}
.n-stadistic-header {
    background-color: #F1682B;
    display: grid;
    grid-template-columns: 1fr 50px;
    border-radius: 8px 8px 0 0;
}
.n-stadistic-body {
    border-radius: 0 0 8px 8px;
    padding: 20px;
    transition: 0.2s all ease-in;
}
.n-stadistic-header__title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.n-stadistic-header__close {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.n-stadistic-header__icon {
    cursor: pointer;
}
.n-stadistic-header__icon:hover {
    font-size: 32px !important;
    transition: 0.2s all ease-in;
}
.n-stadistic-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1024px) {
    .n-stadistic-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
.n-stadistic-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4px;
    max-width: 200px;
}
label.n-subtitle-basic:hover {
    /* font-weight: bold; */
    color: black;
}
.n-stadistic-input {
    border: none;
    border-bottom: 1px solid #8F8F8F;
    cursor: pointer;
    width: 100%;
}
.n-stadistic-subtitle {
    padding: 10px 0;
}
.n-stadistic-textarea {
    resize: none;
    width: 100%;
    border: none;
    border-bottom: 1px solid #8F8F8F;
    cursor: pointer;
}
.n-stadistic-error {
    font-size: 12px;
    color: #F1682B;
}
.n-login-bar {
    background-color: #F3F3F3;
    border-bottom: 1px solid #CCC;
    min-height: 46px;
    z-index: 90;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .n-login-bar {
        padding: 0 20px;
    }
}
.n-login-bar-sec {
    background-color: #F1682B;
    min-height: 46px;
    z-index: 90;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

@media screen and (max-width: 1024px) {
    .n-login-bar-sec {
        display: none;
    }
}

.n-login-bar-buttons {
    display: flex;
    align-items: center;
}
.n-login-bar__image {
    max-width: 180px;
    height: auto;
    cursor: pointer;
    transition: 0.2s all ease-in;
}
.n-login-bar__image:hover {
    width: 150px;
}
.n-login-bar__icons {
    vertical-align: bottom;
    color: white;
    font-size: 22px !important;
    cursor: pointer;
    margin: 0 4px;
}
.n-login-bar__text {
    font-weight: 600;
    color: white;
}
.n-mainbody {
    background-color: #F2F2F2;
    padding: 0 40px 40px 40px;
}
@media screen and (max-width: 1024px)  {
    .n-mainbody {
        padding: 0 10px 10px 10px;
    }
}
.n-product-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
}
.n-product-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: 1fr;
    margin-bottom: 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s all ease-in;
}
@media screen and (max-width: 1024px) {
    .n-product-item {
        display: grid;
        grid-template-columns: 150px 1fr;
        grid-template-rows: 150px;
    }
}
.n-product-item__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.n-product-item:hover {
    transform: translateY(2px);
    box-shadow: 0px 0px 8px black;
}
.n-product-item__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 40px;
    transition: 0.2s all ease-in;
}
@media screen and (max-width: 1024px) {
    .n-product-item__container__mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 5px;
    }
}
.n-product-item__inner {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 10px;
}
.n-product-item__image {
    height: 170px;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .n-product-item__image {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
}
.n-product-list-search {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .n-product-list-search__mobile {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
}
.n-product-list-search__container {
    display: grid;
    width: 700px;
    grid-template-columns: 1fr 3fr;
}
@media screen and (max-width: 1024px) {
    .n-product-list-search__container__mobile {
        width: 100%;
    }
}
.n-product-list-search__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #F1682B;
    color: white;
    border-radius: 8px 0 0 8px;
    width: 100%;
    cursor: pointer;
    border: none;
    height: 50px;
    transition: 0.2s all ease-in;
}
.n-product-list-search__input {
    background-color: white;
    border-radius: 0 8px 8px 0;
    width: 100%;
    padding: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    height: 50px;
    transition: 0.2s all ease-in;
    display: flex;
}
.n-product-list-search__input input {
    outline: none;
    border: none;
}
.n-product-list-container {
    display: grid;
    grid-template-columns: 450px 1fr;
    transition: 0.2s all ease-in;
}
@media screen and (max-width: 1024px) {
    .n-product-list-container {
        display: flex;
        flex-direction: column;
    }
}
.n-product-item__title {
    font-size: 20px;
    color: black;
    font-weight: bold;
    transition: 0.2s all ease-in;
}
.n-product-item__title:hover {
    color: rgba(0, 0, 0, 0.733);
    text-decoration: none;
}
.product-list__disttribution {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}
.n-product-list-category {
    background-color: white;
    border-radius: 8px;
    margin-right: 30px;
    transition: 0.2s all ease-in;
}
.n-product-list-category__container {
    display: flex;
    justify-content: space-between;
    align-items:center;
    transition: 0.2s all ease-in;
    padding: 20px 30px;
    border-bottom: 1px solid #8F8F8F;
    cursor: pointer;
}
.n-product-list-category__container:hover {
    background-color: #dfdddd;
}
.n-product-list-cards {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
}
@media screen and (max-width: 1024px)  {
    .n-product-list-cards__mobile {
        padding: 15px;
    }
}
.n-product-list-available {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.n-product-searchbar__container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 10px 0;
}
.n-product-filters {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
@media screen and (max-width: 1024px)  {
    .n-product-filters {
        justify-content: space-between;
    }
}
.product-list-arrow {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #F1682B !important;
}
.n-product-results {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.n-product-no-results {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 16px;
    color: #F1682B ;
    font-weight: bold;
    font-size: 18px;
}
.n-product-list-limit {
    max-height: 500px;
    overflow: scroll;
}
.item__block {
    display: inline-grid;
    grid-template-columns: 300px;
    grid-template-rows: 200px 200px;
    margin: 10px;
}
@media screen and (max-width: 1024px) {
    .item__block {
        display: inline-grid;
        grid-template-columns: 100%;
        grid-template-rows: 1fr 0.7fr;
        max-width: 300px;
    }
}
@media screen and (max-width: 1024px) {
    .inline-grid {
        display: inline-grid;
    }
}
.container__block {
    flex-direction: column;
    padding: 0 15px;
}
.inner__block {
    align-items: flex-end;
}
.filter__block {
    color: #8F8F8F !important;
}
.n-product-detail__image {
    height: 400px;
    width: 100%;
    border-radius: 0 0 8px 8px;
}
.n-product-detail__container {
    display: grid;
    grid-template-columns: minmax(100px, 1024px) 1fr;
    grid-template-rows: auto;
    padding: 25px 0;
}
@media (max-width: 1024px) {
    .n-product-detail__container {
        display: grid;
        grid-template-columns: 1fr;
        padding: 15px 0;
    }
}
.n-product-detail__inner {
    border-bottom: 1px solid #8F8F8F;
    padding: 15px 5px;
}

.n-product-detail__ul {
    list-style-type: none;
    margin-bottom: 10px;
}
.n-product-detail__ul__sec {
    list-style-type: none;
    margin-bottom: 10px;
    padding: 0px 15px;
}
.li__start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    color: black;  
}
.li__includes {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    color: #767676;
    padding-bottom: 10px;  
}
.li__exclusions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    color: #767676;
    padding-bottom: 10px;  
}
.li__start:before { 
    content: 'star_border';
    font-family: 'Material Icons';
    margin-left: -20px;
    margin-right: 10px;
    color: #F1682B;
    font-size: 24px;
} 
.li__includes:before { 
    content: 'control_point';
    font-family: 'Material Icons';
    margin-left: -20px;
    margin-right: 10px;
    color: #8F8F8F;
    font-size: 24px;
} 
.li__exclusions:before { 
    content: 'highlight_off';
    font-family: 'Material Icons';
    margin-left: -20px;
    margin-right: 10px;
    color: #8F8F8F;
    font-size: 24px;
} 
.product-detail__text {
    font-size: 16px;
    line-height: 22px;
    color: #767676;
}
.product-detail__includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.n-product-detail__calendar {
    display: grid;
}
.n-product-detail__calendar__container {
    position: relative;
}
.n-product-detail__calendar__button {
    font-size: 16px;
    border: 1px solid rgb(204, 204, 204);
    text-align: center;
    color: black;
}
.n-product-detail__calendar__icon {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #F1682B;
}
.n-product-detail__pax__container {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 50px;
    grid-template-rows: 1fr;
    border-bottom: 1px solid #8F8F8F;
    padding: 10px;
    margin: 10px;
}
.n-product-detail__pax__input {
    border: none;
    text-align: center;
    width: 50px;
    padding-left: 15px;
    font-size: 16px;
    color: black;
    font-weight: bold;
}
.n-product-detail__pax__error {
    text-align: center;
    font-size: 14px;
    color: red;
    padding: 4px;
    font-weight: bold;
}
.n-product-detail__pax__text {
    font-size: 16px;
    color: black;
    font-weight: bold;
    display: flex;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
}
.n-product-detail__pax__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.n-product-detail__pax__icon {
    color: #F1682B;
    font-weight: bold !important;
}
.n-product-options__pax {
    display: grid;
    grid-template-columns: 1fr 80px;
    grid-template-rows: 1fr;
    padding: 8px 0;
}

.n-cart {}
.n-cart__title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
@media (max-width: 1024px) {
    .n-cart__title {
        padding: 20px;
    }
}
.n-cart__title-text {
    font-size: 36px;
    font-weight: 400;
    margin-left: 8px;
}
@media (max-width: 1024px) {
    .n-cart__title-text {
        font-size: 26px;
    }
}
.n-cart__title-icon {
    font-size: 32px !important;
}
@media (max-width: 1024px) {
    .n-cart__title-icon {
        font-size: 26px !important;
    }
}
.n-cart__body {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    grid-template-rows: 1fr;
}
@media (max-width: 1024px) {
    .n-cart__body {
        display: grid;
        grid-template-columns: 1fr;
    }
}
.n-cart__inner {}
@media (max-width: 1024px) {
    .n-cart__inner{
        width: 100%;
    }
}
.n-cart__total {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F1682B;
}
.n-cart__total__amount {
    font-size: 18px;
    color: #F1682B;
    font-weight: bold;
    margin-left: 5px;
}
.n-cart__total__currency {
    font-size: 18px;
    color: #F1682B;
    font-weight: bold;
}
.n-cart__input {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4px;
}
.n-car__input__inverse {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    color: red;
    height: 45px;
    text-decoration: none !important;
}
.n-cart__card {}
.n-cart__card__container {}
.n-cart__card__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    border-bottom: 1px solid #8F8F8F;
    padding-bottom: 25px;
}
@media (max-width: 1024px) {
    .n-cart__card__head {
        display: grid;
        grid-template-columns: 1fr;
    }
}
.n-cart__card__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    border-bottom: 1px solid #8F8F8F;
    padding-bottom: 25px;
    padding-top: 25px;
}
.n-cart__card__footer {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr;
    grid-template-rows: 1fr;
    padding-top: 25px;
}
.n-cart__card__footer__inner {
    border: 1px solid #8F8F8F;
    padding: 15px;
}
.n-cart__card__footer__textarea {
    width: 100%;
    border: none;
    cursor: pointer;
    resize: none;
    padding: 5px;
}
.n-cart__card__footer__textarea:hover {
    background-color: #0000000d;
}
.n-cart__card__inner2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
@media (max-width: 1024px) {
    .n-cart__card__inner2 {
        align-items: center;
    }
}
.n-cart__card__inner1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.n-cart__data {
    padding: 8px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.n-cart__data__icon {
    font-size: 26px !important;
    margin-right: 8px;
    color: #F1682B;
}
.n-cart__data__text {
    font-size: 16px;
    font-weight: bold;
}
.n-cart__data__sec {
    font-size: 16px;
    font-weight: bold; 
    color: #F1682B;
    margin-right: 8px;
}
.n-cart__data__price {
    padding-top:20px;
}
.n-table {
    display: flex;
    flex-direction: column;
}
.n-table__head__th {
    font-size: 16px;
    color: black;
    font-weight: 500;
    text-align: center;
    padding: 10px;
}
.n-table__tr {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.n-table_three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.n-table_four {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
}
.n-table__six {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-template-rows: 1fr;
    text-align: center;
}
.n-table__seven {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-template-rows: 1fr;
    text-align: center;
}
.n-table__eight {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: 1fr;
    text-align: center;
}
.n-table__title {
    font-size: 16px;
    color: black;
    font-weight: 500;
}
.n-calendar__basic {
    font-size: 16px;
    border: 1px solid rgb(204, 204, 204);
    color: black;
    height: auto;
}
.n-table__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.n-table__columns_2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.n-table__wrapper {
    background: white !important;
    margin: 0;
}
.n-package__box {
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    border: 1px solid #8F8F8F;
    transition: 0.2s all ease-in;
}
.n-package__box:hover {
    box-shadow: 0px 0px 8px #0000001c;
}	


.n-select__style {
    transition: 0.2s all ease-in;
}
.n-select__style:hover {
    color: black;
    border-color: black;
    font-weight: bold;
}
.n-checkbox__style {
    color: #8F8F8F;
    transition: 0.2s all ease-in;
}
.n-checkbox__style:hover {
    color: black;
    background-color: #8080802b;
    padding: 5px;
    border-radius: 8px;
    font-weight: bold;
}
.n-sidebar {
    position: fixed;
    background-color: white;
    height: 100%;
    width: 80%;
    z-index: 999;
    top: 0;
    right: 0;
    box-shadow: 0px 0px 6px #00000075;
    transition: 0.2s all ease-in;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.n-sidebar__right {
    position: fixed;
    background-color: white;
    height: 100%;
    width: 80%;
    z-index: 999;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 6px #00000075;
    transition: 0.2s all ease-in;
    display: flex;
    flex-direction: column;
    overflow: scroll;
}
.n-sidebar__top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #F1682B;
}
.n-sidebar__icon {
    margin: 0;
    color: white;
}
.n-sidebar__sec-icon {
    color: #F1682B;
}
.n-sidebar__menu-text {
    font-weight: bold;
    font-size: 18px;
}
.n-sidebar__menu-box {
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #8F8F8F;
    color: #F1682B;
}
.n-sidebar__menu-box__sec {
    background-color: #F2F2F2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px;
    border: 1px solid white;
}

.n-sale-detail__body {
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.5fr;
}

@media screen and (max-width: 1024px) {
    .n-hide-mobile {
        display: none !important;
    }
}
@media screen and (min-width: 1024px) {
    .n-hide-desktop {
        display: none !important;
    }
}
.n-shadow {
    box-shadow: 0px 0px 8px black;
}
.n-shadow-light {
    box-shadow: 0px 0px 8px #0000001c;
}
.n-border-radius8 {
    border-radius: 8px;
}
.n-border-radius8top {
    border-radius: 8px 8px 0 0;
}
.n-nopadmar {
    padding: 0;
    margin: 0;
}
.padding20 {
    padding: 20px;
}
.padding10 {
    padding: 10px;
}
.padding5 {
    padding: 5px;
}
.paddingbottom {
    padding-bottom: 20px;
}
.paddingheight {
    padding: 30px 0;
}
.margin5 {
    margin: 5px;
}
.margin-right20 {
    margin-right: 20px;
}
.margin-bottom20 {
    margin-bottom: 20px;
}
.margin-top20 {
    margin-top: 20px;
}
.width400 {
    width: 400px;
}
.width200 {
    width: 200px;
}
.fullwidth {
    width: 100%;
}
.min-width100 {
    min-width: 100px;
}
.min-width300 {
    min-width: 300px;
}
.max-height500 {
    max-height: 500px;
}

@media screen and (max-width: 1024px) {
    .width400 {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .width400 {
        width: 100%;
    }
}
.font-size22{
    font-size: 22px;
}
.font-size14{
    font-size: 14px;
}
.category-pad {
    margin: 20px 30px;
}
.border-top {
    border-top: 1px solid #8F8F8F;
}
.border-bottom {
    border-bottom: 1px solid #8F8F8F;
}
.border-bottom__light {
    border-bottom: 1px solid #00000024;
}
.white {
    background-color: white !important;
}
.black {
    background-color: black !important;
}
.light-orange {
    background-color: #f1682a17;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-scroll {
    overflow: scroll;
}
.tablet--min {
    min-width: 1460px;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.center {
    text-align: center;
}
.end {
    display: flex;
    justify-content: flex-end;
}
.grid-column-gap {
    grid-column-gap: 5px;
}
.divider {
    position: relative;
    top: 5px;
    display: inline-block;
    height: 25px;
    width: 1px;
    background: #d3d3d3;
    margin: 0 15px;
}
*:focus {
    outline: none;
}


@media screen and (max-width: 1024px) {
    .title-mobile {
        font-size: 16px;
    }
    .title-mobile__sec {
        font-size: 14px;
    }
    .no-margin-top__mobile {
        margin-top: 0;
    }
    .no-margin-right__mobile {
        margin-right: 0;
        padding: 0 15px;
    }
    .one-column {
        display: grid;
        grid-template-columns: 1fr;
    }
    .fullwidth__mobile {
        width: 100%;
    }
    .n-cart__card__inner1__mobile {
        align-items: center;
    }
    .margin-bottom20__mobile {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .min__image {
        min-width: 300px;
        min-height: 200px;
    }
}



.n-loading__body {
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.rotate{
    animation: rotate 1.5s linear infinite; 
  }
  @keyframes rotate{
    to{ transform: rotate(360deg); }
  }

  .total__discount{
    position: relative;
    display: inline-block;
}

    .total__discount::before, .total-discount::after {
        content: '';
        width: 100%;
        position: absolute;
        right: 0;
        top: 50%;
    }
    .total__discount::before {
        border-bottom: 2px solid rgb(255, 0, 0);
        -webkit-transform: skewY(-30deg);
        transform: skewY(-30deg);
    }
    .total__discount::after {
        border-bottom: 2px solid #FF0000;
        -webkit-transform: skewY(30deg);
        transform: skewY(30deg);
    }


/* IMPROVE */
.b-contain *, .b-contain *::before, .b-contain *::after {
	box-sizing: content-box !important;
}

.b-contain input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.b-contain span {
	line-height: 1.54;
	font-size: 1rem;
	font-family: inherit;
}

.b-contain {
	display: table;
	position: relative;
	padding-left: 2.2rem;
	cursor: pointer;
	margin-bottom: .5rem;
}

.b-contain input[type="checkbox"] ~ .b-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.5rem;
	width: 1.5rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 1px solid rgba(184, 194, 204, 1);
	border-radius: 50%;
}

.b-contain input[type="radio"] ~ .b-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.5rem;
	width: 1.5rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 2px solid rgba(184, 194, 204, 1);
	border-radius: 2.0rem;
}

.b-contain input[type="checkbox"] ~ .b-input::after {
	content: '';
	position: absolute;
	display: none;
	left: .50rem;
	top: .18rem;
	width: .25rem;
	height: .6rem;
	border: solid #F1682B;
	border-width: 0 2px 2px 0;
	transition: background 250ms;
	transform: rotate(45deg);
}

.b-contain input[type="radio"] ~ .b-input::after {
	content: '';
	position: absolute;
	display: none;
	left: .25rem;
	top: .25rem;
	width: .75rem;
	height: .75rem;
	border-radius: 2.0rem;
	background: rgba(255, 255, 255, 1);
	transition: background 250ms;
}

.b-contain input:disabled ~ .b-input::after {
	border-color: rgba(135, 149, 161, 1);
}

.b-contain input:checked ~ .b-input::after {
	display: block;
}

.b-contain:hover input ~ .b-input,
.b-contain input:focus ~ .b-input {
	background: rgb(231, 238, 243);
}

.b-contain input:focus ~ .b-input {
	box-shadow: 0 0 0 2px rgba(#F1682B,0.5);
}

.b-contain input:checked ~ .b-input {
	background: white;
	border-color: rgba(0, 0, 0, 0.6);
}

.b-contain input[type="checkbox"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input::after {
	background: rgba(135, 149, 161, 1);
}

.b-contain input:checked:focus ~ .b-input, .b-contain:hover input:not([disabled]):checked ~ .b-input {
	background: white;
	border-color: rgba(0, 0, 0, 0.6);
}

.b-contain .b-input::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	margin-left: -0.85rem;
	margin-top:#F1682B;
	border-radius: 2rem;
	opacity: .6;
	z-index: 99999;
	transform: scale(0);
}

.sale-list__flex {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
}

@keyframes b-ripple {
	0% {
		transform: scale(0);
	}

	20% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

@keyframes b-ripple-duplicate {
	0% {
		transform: scale(0);
	}

	30% {
		transform: scale(1);
	}

	60% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

.b-contain input + .b-input::before {
	animation: b-ripple 250ms ease-out;
}

.b-contain input:checked + .b-input::before {
	animation-name: b-ripple-duplicate;
}

.b-contain .b-input::before {
	visibility: hidden;
}

.b-contain input:focus + .b-input::before {
	visibility: visible;
}

.b-contain:first-child .b-input::before {
	visibility: hidden;
}

.n-main.dynamic-bg-override {
    background-image: var(--dynamic-bg-url) !important;
}

.n-login-bar-sec.dynamic-color-override {
    background-color: var(--dynamic-header-color) !important;
}