/*****************************
03 - Base - Typhography
*****************************/
/*...::: Font Weight :::... */
.font--light {
    font-weight: 300 !important;
}
.font--regular {
    font-weight: 400 !important;
}
.font--semi {
    font-weight: 500 !important;
}
.font--semi-bold {
    font-weight: 600 !important;
}
.font--bold {
    font-weight: 700 !important;
}
.ft_init {
    font-size: initial;
    margin-bottom: 0;
}
/*...::: Font Size :::... */
.font_12 {
    font-size: 12px !important;
}
.font_14 {
    font-size: 14px !important;
}
.font_16 {
    font-size: 16px !important;
    line-height: 1.8 !important;
}
.font_18 {
    font-size: 18px !important;
    line-height: 1.8 !important;
}
.font_20 {
    font-size: 20px !important;
}
.font_21 {
    font-size: 21px !important;
}
.font_22 {
    font-size: 22px !important;
}
.font_25 {
    font-size: 25px !important;
    line-height: 1.3 !important;
}
.font_26 {
    font-size: 26px !important;
    line-height: 1.3 !important;
}
.font_32 {
    font-size: 32px !important;
}
.font_40 {
    font-size: 40px !important;
}
.title {
    display: block;
    line-height: 1.5;
    font-weight: 400;
}
.title--xlarge {
    font-size: 26px;
}
.title--large {
    font-size: 26px;
}

.title--medium {
    font-size: 18px;
}
.title--medium2 {
    font-size: 22px;
}
.title--normal {
    font-size: 18px;
}
.title--small {
    font-size: 12px;
}
.title--product {
    font-size: 24px;
}
@media (min-width: 576px) {
    .title--xlarge {
        font-size: 32px;
    }
    .title--large {
        font-size: 32px;
    }
    .title--small {
        font-size: 13px;
    }
}
@media (min-width: 768px) {
    .title--xlarge {
        font-size: 44px;
    }
    .title--large {
        font-size: 44px;
    }
    .title--medium {
        font-size: 22px;
    }
    .title--medium2 {
        font-size: 26px;
    }
    .title--normal {
        font-size: 22px;
    }
    .title--small {
        font-size: 17px;
    }
    .title--product {
        font-size: 24px;
    }
}
@media (min-width: 992px) {
    .title--xlarge {
        font-size: 53px;
    }
    .title--large {
        font-size: 53px;
    }
    .title--medium {
        font-size: 28px;
    }
    .title--medium2 {
        font-size: 32px;
    }
    .title--normal {
        font-size: 28px;
    }
    .title--product {
        font-size: 20px;
    }
}
@media (min-width: 1200px) {
    .title--xlarge {
        font-size: 35px;
    }
    .title--large {
        font-size: 35px;
    }
    .title--small {
        font-size: 11px;
    }
}
@media (min-width: 1566px) {
    .title--xlarge {
        font-size: 60px;
    }
    .title--large {
        font-size: 56px;
    }
    .title--medium {
        font-size: 30px;
    }
    .title--medium2 {
        font-size: 34px;
    }
    .title--normal {
        font-size: 32px;
    }
    .title--small {
        font-size: 18px;
    }
}
/*****************************
04 - Base - Animation
*****************************/
@keyframes animate-top {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes animate-bottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes animate-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes animate-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes animate-zoom {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes animate-zoom-blink {
    0% {
        transform: scale(1.1);
    }
    25% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1.1);
    }
}
@keyframes slideInDown {
    from {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.glossy-flash-animate::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 50%;
    top: 0;
    opacity: 1;
}
.glossy-flash-animate::after {
    background: rgba(255, 255, 255, 0.6);
    bottom: 80%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
}
.glossy-flash-animate:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear;
}
.glossy-flash-animate:hover::after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear;
}

/*****************************
07 - Component - CMS
*****************************/
.cms.m-t-100 {
    margin-top: 60px;
}
.cms .col-12 {
    margin-bottom: 40px;
}
.cms .col-12:last-child {
    margin-bottom: 0;
}
.cms__content {
    text-align: center;
}
@media (min-width: 576px) {
    .cms .col-12:nth-child(3) {
        margin-bottom: 0;
    }
    .cms .col-12:nth-child(4) {
        margin-bottom: 0;
    }
}
@media (min-width: 768px) {
    .cms.m-t-100 {
        margin-top: 80px;
    }
    .cms .col-12:nth-child(3) {
        margin-bottom: 0;
    }
    .cms .col-12:nth-child(4) {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .cms.m-t-100 {
        margin-top: 100px;
    }
    .cms .col-12 {
        margin-bottom: 0px;
    }
}
/*****************************
11 - Component - Modal
*****************************/
.modal {
    z-index: 999;
    background: rgba(24, 24, 24, 0.5);
    padding-right: 0 !important;
}
.modal-product-image--large {
    margin-bottom: 20px;
}
.modal-dialog {
    max-width: calc(100% - 20px) !important;
    margin: 1.75rem auto !important;
}

.modal-header {
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    background: #000000;
    color: #fff;
}
.modal-header.white {
    background: #fff;
    color: #000000;
}
.modal-header .close {
    margin: 0 !important;
    color: #fff;
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    line-height: 0;
}
.modal-header.white .close {
    color: #000000;
}
.modal-title {
    text-align: center;
    margin: 0 auto;
}
.modal-title.text-left {
    margin: 0 0 0 5px;
}
.modal__border {
    border-left: none;
}
.modal__product-img {
    text-align: center;
}
.modal__product-title {
    margin-top: 25px;
}
.modal__product-title,
.modal__product-price {
    display: block;
}
.modal__product-info span,
.modal__product-shipping-info span {
    font-weight: 300;
    padding-left: 5px;
}
.modal__product-cart-buttons {
    display: flex;
    flex-direction: column;
}
.modal__product-cart-buttons a {
    margin-bottom: 15px;
}
.modal__product-cart-buttons a:last-child {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .modal__product-cart-buttons {
        flex-direction: row;
    }
    .modal__product-cart-buttons a {
        margin-bottom: 0;
        margin-right: 30px;
    }
    .modal__product-cart-buttons a:last-child {
        margin-right: 0;
    }
    .modal__product-title {
        margin-top: 0px;
    }
    .modal-dialog {
        max-width: 730px !important;
    }
}
@media (min-width: 992px) {
    .modal-dialog {
        max-width: 870px !important;
    }
    .modal-header {
        padding: 10px;
    }
    .modal__border {
        border-left: 1px solid #ddd;
    }
}
/*****************************
14 - Component - Pagination
*****************************/
.page-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
    text-align: center;
}
@media (min-width: 768px) {
    .page-pagination {
        margin-top: 80px;
        flex-direction: row;
        align-items: center;
    }
}
@media (min-width: 992px) {
    .page-pagination {
        margin-top: 30px;
    }
}
.page-pagination__list {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .page-pagination__list {
        margin-top: 0;
    }
}
.page-pagination__item {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}
.page-pagination__item:last-child {
    margin-right: 0;
}
.page-pagination__link {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #e0e0e0;
}
.page-pagination__link:hover,
.page-pagination__link.active {
    border: 1px solid var(--header_link_hover_color);
    background: var(--header_link_hover_color);
    color: #fff;
}
/*****************************
38 - Layout - Addcart Offcanvas
*****************************/
.offcanvas-add-cart {
    background: #fff;
    overflow-y: auto;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}
.offcanvas-add-cart__list {
    display: flex;
    font-size: 14px;
    padding: 10px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}
.offcanvas-add-cart__list:last-child {
    margin-bottom: 0;
}
.offcanvas-add-cart__img-box {
    margin-right: 15px;
}
.offcanvas-add-cart__img {
    width: 100%;
}
.offcanvas-add-cart__link {
    display: block;
    color: #181818;
}
.offcanvas-add-cart__link:hover {
    color: var(--header_link_hover_color);
}
.offcanvas-add-cart__detail span {
    display: block;
}
.offcanvas-add-cart__item-dismiss {
    width: 18px;
    height: 18px;
    background: #000000;
    border-radius: 50%;
    line-height: 18px;
    position: absolute;
    right: 0;
}
.offcanvas-add-cart__item-dismiss i {
    font-size: 14px;
    color: #fff;
}
.offcanvas-add-cart__item-count {
    left: 0;
    top: 0;
    color: #fff;
    background: var(--header_sub_bg_color);
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.8em;
    white-space: nowrap;
}
.offcanvas-add-cart__price {
    color: #181818;
    font-weight: 600;
    font-size: 16px;
    margin: 5px 0;
}
.offcanvas-add-cart__info {
    font-size: 12px;
    color: #777;
}
.offcanvas-add-cart__checkout-list {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
}
.offcanvas-add-cart__checkout-left-info {
    color: #777;
}
.offcanvas-add-cart__checkout-right-info {
    font-weight: 600;
    color: #d22d26;
}
.offcanvas-add-cart__btn-checkout {
    margin-top: 20px;
}
.offcanvas-add-cart__checkout-box-bottom {
    padding-bottom: 15px;
}