@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Sidebar
4. Header
5. Menu
6. Home
7. Boxes
8. Categories
9. Products
10. Newsletter
11. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Poppins:300,400,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/




* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.animated-pill {
  padding: 1em 2em;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.animated-pill:hover {
  background-color: #23c483;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.animated-pill:active {
  transform: translateY(-1px);
}


.time {
    background-color: #f3f4f6;
    color: #737b86;
    border-radius: 999px;
    padding: 4px 10px;
    margin-top: 4px;
    font-size: 11px;
    font-weight: bold;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}

.footer-button-bar {
    background-color: #f8f9fa;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.footer-icon,
.footer-link-button {
    position: relative;
    background: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    text-decoration: none;
    color: #737b86;
}

.footer-icon:hover {
    background-color: #d83442;
    color: #fff;
}

.footer-link-button:hover {
    background-color: #007bff;
    color: white;
}

.footer-icon-group {
    display: flex;
    gap: 12px;
}

.footer-icon .tooltip,
.footer-link-button .tooltip {
    position: absolute;
    top: -40px;
    background: #fff;
    color: #333;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.footer-icon .tooltip::before,
.footer-link-button:hover .tooltip,
.footer-link-button:hover .tooltip::before {
    background: #007bff; /* blue hover */
    color: #fff;
}

.footer-icon:hover .tooltip,
.footer-link-button:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
}

.footer-icon.red:hover,
.footer-icon.red:hover .tooltip,
.footer-icon.red:hover .tooltip::before {
    background: #d83442;
    color: #fff;
}

.footer-icon.grey:hover,
.footer-icon.grey:hover .tooltip,
.footer-icon.grey:hover .tooltip::before {
    background: #737b86;
    color: #fff;
}


.toast-box {
    position: relative;
    padding: 14px 18px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    min-width: 240px;
    max-width: 360px;
    opacity: 0.95;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 14px;
    color: white;
}

.alert-success {
    background-color: #28a745;
    color: white;
}

.alert-danger {
    background-color: #d83442;
    color: white;
}

.toast-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    animation: shrinkTimer 8s linear forwards;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    opacity: 0.8;
}

.timer-success {
    background-color: white; /* white timer on green background */
}

.timer-error {
    background-color: white; /* white timer on red background */
}

@keyframes shrinkTimer {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    padding: 0;
}

.toast-close:hover {
    opacity: 1;
}

.back-button {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #e0e0e0;
    color: #333;
}
table {
    background-color: white !important;
}

.back-button:hover {
    background-color: #e0e0e0; /* same as normal */
    color: #333;
}

.pill-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.pill-button {
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
}

.green-pill {
    background-color: #28a745;
    color: white;
}

.grey-pill {
    background-color: #e0e0e0;
    color: #333;
}

.grey-pill:hover {
    background-color: #e0e0e0;
    color: #333;
text-decoration: none;
border: none;

}

.red-pill {
    background-color: #d83442;
    color: white;
}
.red-pill:hover {
    background-color: #d83442;
    color: white;
    text-decoration: none;
    border: none;
}

.pill-button.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #f7f9fc;
    color: #a5a5a5;
}

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0px;
}

p {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    color: #8f8f8f;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 1px #ffa07f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

p:last-of-type {
    margin-bottom: 0;
}

a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;;

}

a:hover
{
    color: none;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FFFFFF;
    background: #ffa07f;
}

p a:hover::after {
    opacity: 0.2;
}

::selection {
    background: #B4D5FF;
    color: #FFFFFF;
}

p::selection {}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {}

.form-control {
    color: #db5246;
    min-height: 45px;
}
b
{
    color: black
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
    padding-left: 263px;
}

.prlx_parent {
    overflow: hidden;
}

.prlx {
    height: 130% !important;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

.parallax_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.nopadding {
    padding: 0px !important;
}

.section_container {
    padding-left: 65px;
    padding-right: 65px;
}

.section_container .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.button_1 {
    width: 138px;
    height: 45px;
    background: #414141;
    text-align: center;
}

.button_1 a {
    display: block;
    line-height: 45px;
    color: #FF5A60;
    font-size: 14px;
    font-weight: 600;
}

.button_1:hover {
    background: #FF5A60;
}

.button_1:hover a {
    color: #414141;
}

/*********************************
3. Sidebar
*********************************/

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 263px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 2px 59px 3px #d3d3d361;
    z-index: 100;
}

.info {
    width: 100%;
}

.info_content {
    padding-left: 21px;
    padding-top: 23px;
}

.info_languages {
    cursor: pointer;
    padding-bottom: 5px;
    padding-right: 20px;
}

.info_languages::after {
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 10px;
    background: #FFFFFF;
    content: '';
}

.language_flag {
    display: inline-block;
    width: 20px;
    height: 12px;
    margin-right: 6px;
    vertical-align: center;
}

.language_flag img {
    max-width: 100%;
}

.dropdown_text {
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 0.75;
    vertical-align: center;
    margin-right: 15px;
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.has_children {
    z-index: 1;
}

.has_children:hover>.dropdown_text,
.has_children ul .dropdown_text:hover {
    color: #FF5A60;
}

.dropdown_arrow {
    display: inline-block;
    vertical-align: center;
}

.dropdown_arrow i {
    font-size: 12px;
    color: #FFFFFF;
}

.has_children ul {
    position: absolute;
    top: 100%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    padding-top: 10px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    background: #1a1a1a;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.has_children:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.has_children:hover i {
    color: #FF5A60;
}

.has_children ul li:not(:last-child) {
    margin-bottom: 8px;
}

.has_children ul li a {
    display: block;
}

.has_children ul li a .dropdown_text {
    margin-right: 0;
}

.info_currencies {
    margin-left: 28px;
    padding-bottom: 5px;
    cursor: pointer;
}

.sidebar_logo {
    padding-left: 25px;
    padding-right: 26px;
    margin-top: 64px;
}

.sidebar_logo a {
    display: block;
}

.sidebar_logo a>div {
    border: solid 2px #FF5A60;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 0.75;
    color: #FF5A60;
}

.sidebar_logo a>div span {
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Navigation */
.sidebar_nav {
    padding-left: 32px;
    margin-top: 40px;
}

.sidebar_nav ul {
    display: inline-block;
}

.sidebar_nav ul li:not(:last-child) {
    margin-bottom: 8px;
}

.sidebar_nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #040508;

    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar_nav ul li a i {
    margin-left: 10px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar_nav ul li a:hover {
    color: #d83442;
}

.sidebar_nav ul li:hover a i {
    color: #d83442;
    -webkit-transform: translateZ(2px);
    -moz-transform: translateZ(2px);
    -ms-transform: translateZ(2px);
    -o-transform: translateZ(2px);
    transform: translateZ(2px);
}

/*Search*/
.search {
    width: 100%;
    height: 45px;
    background: transparent;
    padding-left: 45px;
    padding-right: 43px;
    margin-top: 58px;
}

.search_form {
    display: block;
    position: relative;
}

.search_input {
    width: 100%;
    height: 45px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: solid 1px #cacaca;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.search_input:focus,
.search_input:hover {
    border-bottom: solid 1px #FF5A60;
}

.search_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 45px;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.search_button:hover {
    color: #FF5A60;
}

.search_button:active {
    border: none;
    outline: none;
}

.search_input::-webkit-input-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #7f7d7d !important;
}

.search_input:-moz-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #7f7d7d !important;
}

.search_input::-moz-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #7f7d7d !important;
}

.search_input:-ms-input-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #7f7d7d !important;
}

.search_input::input-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #7f7d7d !important;
}

/* Cart */
.cart {
    padding-left: 45px;
    padding-right: 43px;
    margin-top: 78px;
}

.cart_icon {
    width: 26px;
    height: 32px;
}

.cart_icon a {
    display: block;
    position: relative;
}

.cart_icon a img {
    max-width: 100%;
}

.cart_num {
    position: absolute;
    top: 17px;
    left: -11px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #FF5A60;
    text-align: center;
    line-height: 23px;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

.cart_text {
    font-size: 14px;
    font-weight: 700;
    color: #040508;
    text-transform: uppercase;
    margin-left: 24px;
}

.cart_price {
    font-size: 14px;
    font-weight: 400;
    color: #040508;
    margin-left: 21px;
}

/*********************************
4. Header
*********************************/

.header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    background: #1a1a1a;
    z-index: 999;
}

.header_content {
    width: 100%;
    height: 100%;
}

/* Logo */
.header_logo {
    margin-left: 50px;
}

.header_logo a {
    display: block;
}

.header_logo a>div {
    border: solid 2px #FF5A60;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 0.75;
    color: #FF5A60;
    padding-left: 14px;
    padding-right: 16px;
}

.header_logo a>div span {
    text-transform: uppercase;
    color: #FFFFFF;
}

/* Navigation */
.header_nav {
    margin-left: 55px;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
}

.header_nav ul li:not(:last-child) {
    margin-right: 25px;
}

.header_nav ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.header_nav ul li a:hover {
    color: #FF5A60;
}

.header_extra {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

/* Cart */
.header .cart {
    margin-right: 60px;
    margin-left: 40px;
    margin-top: -7px;
    padding-left: 5px;
    padding-right: 5px;
}

/* Hamburger */
.hamburger {
    display: none;
    margin-left: 50px;
    cursor: pointer;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}

.hamburger i {
    font-size: 20px;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.hamburger:hover i {
    color: #FF5A60;
}

/*********************************
5. Menu
*********************************/

.menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 101;
    padding-right: 60px;
    padding-top: 87px;
    padding-left: 50px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.menu.active {
    left: 0;
}

.menu_close_container {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 18px;
    height: 18px;
    transform-origin: center center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
}

.menu_close {
    width: 100%;
    height: 100%;
    transform-style: preserve-3D;
}

.menu_close div {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    top: 8px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_close div:last-of-type {
    -webkit-transform: rotate(90deg) translateX(-2px);
    -moz-transform: rotate(90deg) translateX(-2px);
    -ms-transform: rotate(90deg) translateX(-2px);
    -o-transform: rotate(90deg) translateX(-2px);
    transform: rotate(90deg) translateX(-2px);
    transform-origin: center;
}

.menu_close:hover div {
    background: #FF5A60;
}

.menu .logo {
    margin-bottom: 60px;
}

.menu_nav ul li:not(last-child) {
    margin-bottom: 10px;
}

.menu_nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;

    letter-spacing: 0.05em;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_nav ul li a:hover {
    color: #FF5A60;
}

.menu_search {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 67px;
    display: inline-block;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
    transform: translateY(2px);
}

.menu .header_search_form {
    width: 100%;
}

.search form {
    position: relative;
}

.menu .search_input {
    width: 100%;
    background: transparent;
    height: 42px;
    border: none;
    outline: none;
    padding-left: 20px;
    border-bottom: solid 2px #d9d9d9;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu .search_input::-webkit-input-placeholder {
    font-size: 12px !important;
    font-style: italic;
    font-weight: 400 !important;
    color: #FFFFFF !important;
}

.menu .search_input:-moz-placeholder {
    font-size: 12px !important;
    font-style: italic;
    font-weight: 400 !important;
    color: #FFFFFF !important;
}

.menu .search_input::-moz-placeholder {
    font-size: 12px !important;
    font-style: italic;
    font-weight: 400 !important;
    color: #FFFFFF !important;
}

.menu .search_input:-ms-input-placeholder {
    font-size: 12px !important;
    font-style: italic;
    font-weight: 400 !important;
    color: #FFFFFF !important;
}

.menu .search_input::input-placeholder {
    font-size: 12px !important;
    font-style: italic;
    font-weight: 400 !important;
    color: #FFFFFF !important;
}

.menu .search_input:focus,
.menu .search_input:hover {
    border-bottom: solid 2px #FF5A60;
}

.header_search_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

.header_search_button:focus {
    outline: none;
}

.header_search_button i {
    font-size: 16px;
    color: #d9d9d9;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.header_search_button:hover i {
    color: #FF5A60;
}

.menu_extra {
    position: absolute;
    right: 50px;
    bottom: 30px;
}

.menu_social {
    font-size: 12px;
}

.menu_social {
    margin-right: -6px;
    margin-top: 5px;
}

.menu_social ul {
    display: inline-block;
}

.menu_social ul li {
    display: inline-block;
}

.menu_social ul li a i {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    padding: 6px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_social ul li a i:hover {
    color: #FF5A60;
}

/*********************************
6. Home
*********************************/

.home {
    width: 100%;
    height: 730px;
}

.home_slider_container {
    width: 100%;
    height: 100%;
}

.home_content_container {
    position: absolute;
    top: 120px;
    left: 117px;
    width: 100%;
}

.home_content {
    max-width: 690px;
}

.home_discount_num {
    font-size: 122px;
    font-weight: 700;
    color: #414141;
    line-height: 0.75;
}

.home_discount_num::after {
    display: block;
    position: absolute;
    top: -3px;
    left: 100%;
    content: '%';
    font-size: 72px;
    font-weight: 700;
}

.home_discount_text {
    font-size: 16px;
    font-weight: 600;
    color: #414141;
    line-height: 0.75;
    margin-left: 11px;
    margin-bottom: 2px;
}

.home_title {
    font-size: 100px;
    line-height: 1.2;
    color: #414141;
    font-weight: 300;
    margin-top: -20px;
}

.home_button {
    margin-top: 6px;
    margin-left: 8px;
}

.home_slider_nav {
    position: absolute;
    top: 51.5%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 39px;
    height: 39px;
    background: transparent;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.home_slider_nav div {
    width: 100%;
    height: 100%;
}

.home_slider_nav:hover {
    background: #FF5A60;
}

.home_slider_prev {
    left: 32px;
}

.home_slider_next {
    right: 32px;
}

.home_slider .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 25px;
}

.home_slider .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    background: #FFFFFF;
}

.home_slider .owl-dots .owl-dot.active span,
.home_slider .owl-dots .owl-dot:hover span {
    background: #FF5A60;
}

/*********************************
7. Boxes
*********************************/

.boxes {
    width: 100%;
    background: #FFFFFF;
    padding-top: 100px;
    z-index: 1;
}

.box {
    width: 100%;
}

.box_image {
    width: 100%;
}

.box_image img {
    max-width: 100%;
}

.box_title {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -26px;
    width: 237px;
    height: 67px;
    background: #FFFFFF;
    text-align: center;
}

.box_title:hover {
    background: #FF5A60;
}

.box_title a {
    display: block;
    line-height: 67px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
}

/*********************************
8. Categories
*********************************/

.categories {
    width: 100%;
    background: #FFFFFF;
    padding-top: 96px;
}

.categories_list_container {
    display: inline-block;
}

.categories_list li {
    position: relative;
}

.categories_list li:not(:last-child) {
    margin-right: 70px;
}

.categories_list li:not(:last-child)::after {
    position: absolute;
    top: -9px;
    right: -37px;
    content: '/';
    font-size: 30px;
    color: #414141;
    font-weight: 300;
}

.categories_list li a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #414141;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.categories_list li a:hover {
    color: #FF5A60;
}

/*********************************
9. Products
*********************************/

.products {
    width: 100%;
    background: #f7f9fc;
    margin-top: 30px;
    min-height: 600px;
    padding-bottom: 99px;
}

.products2 {
    width: 100%;
    margin-top: 30px;
    min-height: 600px;
    padding-bottom: 99px;
}

.products_container {
    width: calc(100% + 27px);
    left: -14px;
}

.product {
    width: calc(100% / 4);
    padding-left: 14px;
    padding-right: 13px;
    margin-bottom: 45px;
}

.product_image {
    width: 100%;
}

.product_image::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: solid 5px #FF5A60;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    content: '';
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product:hover .product_image::after {
    visibility: visible;
    opacity: 1;
}

.product_image img {
    max-width: 100%;
}

.product_tag {
    position: absolute;
    top: 0;
    right: 0;
    width: 59px;
    height: 59px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 59px;
    text-align: center;
    z-index: 1;
}

.product.hot .product_tag {
    background: #FF5A60;
}

.product.sale .product_tag {
    background: #fd006b;
}

.product.new .product_tag {
    background: #414141;
}

.product_content {
    padding-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 45px;
    background: #FFFFFF;
}

.product_title a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #414141;
    line-height: 1.2;
    text-transform: uppercase;
}

.product_price {
    font-size: 24px;
    font-weight: 700;
    color: #414141;
    margin-top: 13px;
}

.product.sale .product_price {
    color: #fd006b;
}

.product_price span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #949494;
    margin-left: 12px;
}

.product_button {
    width: 138px;
    height: 45px;
    background: #edf4f6;
    text-align: center;
    margin-top: 22px;
}

.product_button:hover {
    background: #FF5A60;
}

.product_button a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 45px;
}

/*********************************
10. Newsletter
*********************************/

.newsletter {
    width: 100%;
    padding-top: 95px;
    padding-bottom: 81px;
}

.newsletter_title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    text-transform: uppercase;
}

.newsletter_subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 14px;
}

.newsletter_form_container {
    margin-top: 94px;
}

.newsletter_form {
    width: 100%;
}

.newsletter_input {
    width: 100%;
    height: 45px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: solid 2px #FFFFFF;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.newsletter_input:hover,
.newsletter_input:focus {
    border-bottom: solid 2px #FF5A60;
}

.newsletter_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 138px;
    height: 45px;
    background: #FF5A60;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.newsletter_input::-webkit-input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #FFFFFF !important;
}

.newsletter_input:-moz-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #FFFFFF !important;
}

.newsletter_input::-moz-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #FFFFFF !important;
}

.newsletter_input:-ms-input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #FFFFFF !important;
}

.newsletter_input::input-placeholder {
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #FFFFFF !important;
}

/*********************************
11. Footer
*********************************/

.footer {
    width: 100%;
    background: #f6f8fa;
}

.footer_content {
    padding-top: 84px;
    padding-bottom: 64px;
}

.footer_logo {
    width: 212px;
}

.footer_logo a {
    display: block;
}

.footer_logo a>div {
    border: solid 2px #FF5A60;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 0.75;
    color: #FF5A60;
    padding-left: 25px;
    padding-right: 26px;
}

.footer_logo a>div span {
    text-transform: uppercase;
    color: #1a1a1a;
}

.footer_about_text {
    padding-right: 50px;
    margin-top: 57px;
}

.cards {
    margin-top: 50px;
}

.card
{
	box-shadow: 3px 3px 20px 3px #f1f1f1;
	border:1px solid #f1f1f1;
	border-radius: 10px !important;

}

.cards ul li:not(:last-child) {
    margin-right: 7px;
}

.footer_questions {
    margin-top: 8px;
    padding-right: 50px;
}

.footer_title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #414141;
    text-transform: uppercase;
}

.footer_list {
    margin-top: 88px;
}

.footer_list ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    -ms-columns: 2;
    -o-columns: 2;
    columns: 2;
}

.footer_list ul li {
    position: relative;
    padding-left: 22px;
}

.footer_list ul li::before {
    display: block;
    position: absolute;
    top: 8px;
    left: 1px;
    width: 5px;
    height: 5px;
    background: #d8e3e7;
    border: solid 2px #d8e3e7;
    content: '';
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_list ul li:hover::before {
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    background: transparent;
    border: solid 2px #FF5A60;
}

.footer_list ul li:not(:last-child) {
    margin-bottom: 9px;
}

.footer_list ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #8f8f8f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_list ul li a:hover {
    color: #414141;
    font-weight: 700;
}

.footer_blog {
    margin-top: 8px;
    padding-right: 50px;
}

.footer_blog_container {
    margin-top: 92px;
}

.footer_blog_item:not(:last-child) {
    margin-bottom: 30px;
}

.footer_blog_image {
    width: 68px;
    height: 68px;
}

.footer_blog_image img {
    max-width: 100%;
}

.footer_blog_content {
    padding-left: 29px;
}

.footer_blog_title {
    margin-top: -4px;
}

.footer_blog_title a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #414141;
    text-transform: uppercase;
    line-height: 1.2;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_blog_title a:hover {
    color: #FF5A60;
}

.footer_blog_date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #8f8f8f;
    margin-top: 4px;
}

.footer_blog_link {
    margin-top: 9px;
}

.footer_blog_link a {
    font-size: 12px;
    font-weight: 500;
    color: #FF5A60;
}

.footer_contact {
    margin-top: 8px;
    padding-right: 50px;
}

.footer_contact_list {
    margin-top: 88px;
    padding-right: 20px;
}

.footer_contact_list ul li:not(:last-child) {
    margin-bottom: 19px;
}

.footer_contact_list ul li span {
    font-size: 14px;
    font-weight: 700;
    color: #FF5A60;
}

.footer_contact_list ul li div {
    padding-left: 14px;
    font-size: 14px;
    font-weight: 400;
    color: #8f8f8f;
    line-height: 1.75;
    margin-top: -1px;
}

/* Footer Social */
.footer_social {
    width: 100%;
    background: #f0f5f7;
}

.footer_social_container {
    width: 100%;
    height: 124px;
}

.footer_social_item {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer_social_icon i {
    font-size: 30px;
    color: #d7d7d7;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_social_item:hover .footer_social_icon i {
    color: #FF5A60;
}

.footer_social_title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #9f9fa0;
    text-transform: uppercase;
    margin-left: 20px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_social_item:hover .footer_social_title {
    color: #414141;
}

/* Credits */
.credits {
    width: 100%;
    background: #1a1a1a;
}

.credits_content {
    width: 100%;
    height: 81px;
}

.credits_text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #787878;
}



/*Shahzad*/

.menu-line-hr {
    background-color: lightgray;
    width: 70%;
    margin: 0px auto
}



@media only screen and (max-width: 1800px) {
  /* Navigation */
    .sidebar_nav-bellow {
        padding-left: 45px;
        margin-top: 75px !important;
    }
}

@media only screen and (max-width: 1600px) {
  /* Navigation */
    .sidebar_nav-bellow {
        padding-left: 45px;
        margin-top: 25px !important;
    }
}

@media only screen and (max-width: 1400px) {
  /* Navigation */
    .sidebar_nav-bellow {
        padding-left: 45px;
        margin-top: -75px !important;
    }
}


.sidebar_nav-bellow ul {
    display: inline-block;
}

.sidebar_nav-bellow ul li:not(:last-child) {
    margin-bottom: 8px;
}

.sidebar_nav-bellow ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: gray;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar_nav-bellow ul li a:hover {
    color: #FF5A60;
}


.app-logo {
    width: 90%;
    margin: 0px auto;
}




/*Product List*/

.product-wrapper,
.product-img {
    overflow: hidden;
    position: relative;
    height: 200px;
    border: 1px solid #f4f4f4;
}

.product-thumbnail {
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.6 black;
}

.mb-45 {
    margin-bottom: 15px
}

.product-action {
    bottom: 0px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    transition: all 0.6s ease 0s
}

.product-wrapper {
    border-radius: 10px
}

.product-img>span {
    background-color: #00BBB1;
    box-shadow: 0 0 100px 1.7px rgba(0, 0, 0, 0.06);
    color: white;
    display: inline-block;
    font-size: 9px;
    min-width: 40px;
    font-weight: 600;
    left: 20px;
    letter-spacing: 1px;
    padding: 4px;
    border-radius: 3px;
    position: absolute;
    text-align: center;
    z-index: 99;
    top: 20px
}

.out-stock {
    background-color: #6c6d70 !important;
    color: white !important;
}

.product-action-style {
    background-color: #fff;
    box-shadow: 20px 20px 60px 2px lightgray;
    display: inline-block;
    padding: 16px 2px 12px;
    width: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
    padding: 60px 20px 20px 20px;
    cursor: pointer;
    height: 100%;
}


.product-wrapper:hover .product-action {

    opacity: 1;
    height: 100%;
}

.product-title {
    color: #000000 !important;
    font-weight: 600 !important;
    text-transform: unset !important;
    font-family: "Poppins";
}


.active-nav a {
    color: #d83442 !important
}

.theme-colour {
    color: #f0515a;
}


.text-white
{
    color: white !important
}

.btn-theme:hover {
    background-color: #f0515a;
    color: white !important;
    font-size: 15px
}


.pagination-button {
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 6px 0;
    border:1px solid lightgray;
    background-color: white !important;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 100px;
}

.pagination-button:hover
{
	background-color: #f0515a !important;
}


.none-btn {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 6px 0;
    font-size: 16px;
    line-height: 1.428571429;
    border-radius: 8px;
}

.none-btn:focus
{
	border:2px solid #f0515a;
}

.product-wrapper-add-ons:focus
{
	border:2px solid  ;
}



.pagination-button:hover {
    background-color: #ff5a60;
    color: white;
}


/*Product Modal*/
.modal-header {
    border-bottom: 0px !important;
    padding: 0.6rem 1rem 1rem 1rem;
}

.f-12 {
    font-size: 12px;
    color: black !important
}

.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    height: 350px;
    border-radius: 6px;
    border:1px solid #f1f1f1;
    object-fit: cover;
    background-size: cover;
    flex-grow: 1;
}

.preview-thumbnail.nav-tabs {
    border: none;
}

.preview-thumbnail.nav-tabs li {
    width: 100%;
    margin-right: 2.5%;
    margin-bottom: 10px;
}

.preview-thumbnail.nav-tabs li img {
    max-width: 100%;
    display: block;
    height: 80px;
    border-radius: 6px;
    background-size: cover;
    object-fit: cover;
    width: 80px;
    border:1px solid #f1f1f1;
}

.preview-thumbnail.nav-tabs li a {
    padding: 0;
    margin: 0;
}

.preview-thumbnail.nav-tabs li:last-of-type {
    margin-right: 0;
}

.tab-content {
    overflow: hidden;
}

.tab-content img {
    width: 100%;
    -webkit-animation-name: opacity;
    animation-name: opacity;
    background-size: cover;
    height: 350px;
    object-fit: cover;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}


@media screen and (min-width: 997px) {
    .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-title,
.price,
.sizes,
.colors {
    text-transform: UPPERCASE;
    font-weight: bold;
}

.checked,
.price span {
    color: #f0515a;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase !important;
}

.product-title,
.rating,
.product-description,
.price,
.vote,
.sizes {
    margin-bottom: 15px;
}

.product-title {
    margin-top: 0;
}

.size {
    margin-right: 10px;
}

.size:first-of-type {
    margin-left: 40px;
}

.color {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 2em;
    width: 2em;
    border-radius: 2px;
}

.color:first-of-type {
    margin-left: 20px;
}

.add-to-cart,
.like {
    background: #f0515a;
    padding:10px;
    border: none;
    text-transform: unset;
    color: #fff;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

.add-to-cart:hover,
.like:hover {
    background: black;
    color: #fff;
}

.not-available {
    text-align: center;
    line-height: 2em;
}

.not-available:before {
    font-family: fontawesome;
    content: "\f00d";
    color: #fff;
}

.orange {
    background: #ff9f1a;
}

.green {
    background: #85ad00;
}

.blue {
    background: #0076ad;
}

.tooltip-inner {
    padding: 1.3em;
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

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

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

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



.theme-text
{
	color: #d83442 !important;
	font-weight: 600 !important;
}



/*# sourceMappingURL=style.css.map */


.padd-10
{
	padding:10px !important;
}


.col-zero-1
{
	padding-right: 0px !important;
}

.col-zero
{
	padding-right: 0px !important;
	padding-left: 0px !important
}


/*Modal add-ons*/
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: #1E88E5 !important;
    border: none;
    padding: 5px 20px !important;
    font: inherit;
    font-size: 50px !important
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    color: #0D47A1 !important;
    background-color: transparent !important
}

.owl-dots {
    display: none
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0
}

.item {
    display: none
}

.next {
    display: block !important;
    position: relative;
    transform: scale(0.8);
    transition-duration: 0.3s;
    opacity: 0.6
}

.prev {
    display: block !important;
    position: relative;
    transform: scale(0.8);
    transition-duration: 0.3s;
    opacity: 0.6
}

.item.show {
    display: block;
    transition-duration: 0.4s
}

@media screen and (max-width: 999px) {

    .next,
    .prev {
        transform: scale(1);
        opacity: 1
    }

    .item {
        display: block !important
    }
}






.product-wrapper-add-ons,
.product-img-add-ons {
    overflow: hidden;
    position: relative;
    height: 100px;
    border: 1px solid #f4f4f4;
}

.product-wrapper-add-ons:hover
{
	border:2px solid #f0515a;
}


.product-thumbnail-add-ons {
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.6 black;
}

.mb-45 {
    margin-bottom: 15px
}

.product-action-add-ons {
    bottom: 0px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    transition: all 0.6s ease 0s
}

.product-wrapper-add-ons {
    border-radius: 10px
}

.product-img-add-ons>span {
    background-color: #00BBB1;
    box-shadow: 0 0 100px 1.7px rgba(0, 0, 0, 0.06);
    color: white;
    display: inline-block;
    font-size: 9px;
    min-width: 40px;
    font-weight: 600;
    left: 20px;
    letter-spacing: 1px;
    padding: 4px;
    border-radius: 3px;
    position: absolute;
    text-align: center;
    z-index: 999;
    top: 20px
}

.out-stock-add-ons {
    background-color: #6c6d70 !important;
    color: white !important;
}

.product-action-style-add-ons {
    background-color: #fff;
    box-shadow: 20px 20px 60px 2px lightgray;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
    padding: 10px 10px 10px 10px;
    cursor: pointer;
    height: 100%;
}


.f-13
{
	font-size: 13px !important
}

.btn-theme-add-ons
{
	font-size: 10px !important;
	background: #f0515a;
	color: white;
}


.product-wrapper-add-ons:hover .product-action-add-ons {

    opacity: 1;
    height: 100%;
}

.product-title-add-ons {
    color: #000000 !important;
    font-weight: 600 !important;
    text-transform: unset !important;
    font-family: "Poppins";
}


.none-cont
{
	height: 100px;
	width: 100%;
	text-align: center;
	background-color: #e6e7e9;
	border-radius: 7px;
}


/*Mobile Respons*/

@media only screen and (max-width: 600px) {
  .tab-content img
	{
		height: 230px !important;
	}
    .div-center
    {
        width: 329px !important
    }

    .mb-text-center
    {
        text-align: center;
    }
	.preview-pic
	{
		height: 230px !important;
	}
	.preview-thumbnail.nav-tabs li img
	{
		height: 50.5px !important;
	}

	.product-action-style
	{
		padding: 43px 20px 20px 20px;
	}

	.mb-45
	{
		margin-bottom: 15px !important;
	}
	.img-sm
	{
		width: 55px !important
	}

	.d-xs-none
	{
		display: none;
	}
	.d-s-block
	{
		display: block !important;
	}

	.step
	{
		width: 17% !important;
	}

	.step span
	{
		display: none !important;
	}


}



/*Cart*/

.param {
    margin-bottom: 7px;
    line-height: 1.4;
}
.param-inline dt {
    display: inline-block;
}
.param dt {
    margin: 0;
    margin-right: 7px;
    font-weight: 600;
}
.param-inline dd {
    vertical-align: baseline;
    display: inline-block;
}

.param dd {
    margin: 0;
    vertical-align: baseline;
}

.shopping-cart-wrap .price {
    color: #f0515a;
    font-size: 18px;
    font-weight: bold;
    margin-right: 5px;
    display: block;
}
var {
    font-style: normal;
}

.media img {
    margin-right: 1rem;
}
.img-sm {
    width: 90px;
    max-height: 75px;
    object-fit: cover;
}

.btn-remove
{
	border-radius: 100px;
	font-size: 25px;
	width: 40px;
	height: 40px;
	line-height: 1;
	color: black;
}

.btn-remove:hover
{
	background-color: #f0515a;
	color: white;
}

.product-title-cart
{
	color: black;
}

.text-black
{
	color: black;
	font-weight: 600;
}


.price-wrap var
{

	color: #ff5a60
}

.table-hr
{
	border-bottom: 1px solid #f2f2f2;
	border-top: 1px solid #f2f2f2;
}
.hr-bottom
{
	border-bottom: 1px solid #f2f2f2
}

.d-s-block
{
	display: none ;
}

.btn:focus
{
	box-shadow: none !important;
}

.form-control:focus
{
	box-shadow: none !important;
	border:1px solid #d83442;
}

.label-control
{
	color: black;
	font-weight: 600;
}

.btn-lg
{
	padding: 12px;
	font-size: 17px;
	min-width: 160px !important;
}

.text-sm
{
	font-size: 14px !important;
}

.secondry-colour
{
	background-color: #00b7ad;
	color: white;
	border:none !important;
}

.text-secondary
{
	color: #00b7ad !important;
}

.text-colour
{
	color: #f0515a !important;
}

.clip-textarea
{
	height: 18px; width: 80px; border:none;
	overflow: hidden;

}

.clip-textarea:focus
{
	box-shadow: none !important;
}


textarea
{
	resize: none !important;
}

.input-lg
{
	min-height: 50px;
}



.bg-black
{
	background-color: black;
	text-align: center;
	border-radius: 10px 10px 0px 0px !important;
}

.bg-black h3
{
	color: white;
	font-size: 20px !important;
}


/*File upload button*/
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-file-upload{

  color: white;
  background-color: #00b7ad;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.remove-file
{
	font-size: 17px;
	font-weight: 400;
	color: #f0515a;
	margin-bottom: -4px;
	margin-right: 7px;
	cursor: pointer;

}


/* Hide all steps by default: */
.tab {
  display: none;
}



/* Make circles that indicate the steps of the form: */
.step {
  height: 6px;
  width: 19%;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  opacity: 1;
  cursor: pointer;
}

.step-active
{
	background-color: #f0515a !important;
}


.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}


.active-bar
{
	color: #f0515a;
	z-index: 99;
	font-weight: 600;
	opacity: 1;
}



/*Login*/

.login-bg
{
    background-image: url('https://metatrak.dk/wp-content/uploads/2025/04/Firefly-generate-a-map-with-road-and-routes-going-from-a-to-b.-Make-it-dark-themed-with-black-and-g-scaled.jpg');
    height: 100%;
    width: 100%;
}


.back {
  background: #e2e2e2;
  background-image: url('https://metatrak.dk/wp-content/uploads/2025/04/Firefly-generate-a-map-with-road-and-routes-going-from-a-to-b.-Make-it-dark-themed-with-black-and-g-scaled.jpg');
  background-size: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.div-center {
  width: 400px;
  height: 400px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 1em 2em;
  border-bottom: 2px solid #ccc;
  display: table;
}

.div-center-register {
  width: 600px;
  height: 400px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 1em 2em;
  border-bottom: 2px solid #ccc;
  display: table;
}

div.content {
  display: table-cell;
  vertical-align: middle;
}

.btn-theme
{
    background-color: #d83442 !important;
    color: white !important;
    min-height: 45px !important;
    line-height: 2.4;
    /*margin-top: 35px !important;*/
    border:none !important;
}

.lable-control
{
    color: black;
    font-weight: 550;
}

.mt-more-option
{
    margin-top: 250px;
}

.table-cs tr td
{
    color: #242424 !important;
    font-weight: 550;
}

.table-cs tr th {
    color: #737b86 !important;
    background-color: #f3f4f6 !important; /* Light Grey Background */
    padding: 10px; /* Optional: Improves spacing */
}

.btn-success
{
    background-color: #d83442 !important;
    font-size: 13px !important;
}

.btn-success:hover
{
    color: white !important;
}

#mapid { height: 230px; z-index: 1 !important }

.text-success
{
    color: #d83442 !important
}

.text-white
{
    color: white !important;
}


.mt-btn-main
{
    margin-top: 100px !important;
}
.btn {
    background-color: #e2001a!important;
    border-color: #e2001a!important;
}