
/*Old Css Work*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap");
/* @import url("https://db.onlinewebfonts.com/c/3d37467c4a9c7c1188bc3e0b7aadfa0d?family=Bangla+MN"); */
:root {
    --primary-bg-color: #ffffff;
    --primary-text-color: #000000;
    --grey-text-color: #00000050;
    --grey-bg: #f5f4f4;
    --dark-grey: #a2a2a2;
    --input-bg: #ededed;
    --light-grey: "#00000061";
    --border-grey: #70707030;
}

/* @font-face {
  font-family: BanglaMN;
  src: url("bangla-mn.ttf");
} */

/* @font-face {
  font-family: "Bangla MN";
  src: url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.ttf");
  /* src: url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/3d37467c4a9c7c1188bc3e0b7aadfa0d.svg#Bangla MN")
      format("svg"); * */

@font-face {
    font-family: "Bangla MN";
    src: url("../fonts/bangla.ttf");
    /* url("assets/fonts/bangla.eot") format("embedded-opentype"),
    url("assets/fonts/bangla.woff2") format("woff2"),
    url("assets/fonts/bangla.woff") format("woff"), */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    color: var(--primary-text-color);
    background: var(--primary-bg-color);
    font-size: 1rem;
    overflow-x: hidden;
    font-family: "Bangla MN";
    height: 100%;
}

/* GLOBALS */
a {
    cursor: pointer;
    text-decoration: none;
}
p {
    font-size: 0.938rem;
    line-height: 31px;
    margin-bottom: 0;
    font-weight: 400;
}
h1 {
    font-size: 4.813rem;
    line-height: 91px;
    font-weight: 500;
    margin-bottom: 0;
}
/* h2 {
    font-size: 3.25rem;
    line-height: 70px;
    margin-bottom: 0;
} */
h3 {
    font-size: 1.875rem;
    line-height: 50px;
    margin-bottom: 0;
}
.heading_small {
    font-size: 1.875rem;
    line-height: 41px;
    letter-spacing: 0.78px;
}
.heading_large {
    font-size: 3.688rem;
    line-height: 70px;
}
.heading_space {
    font-size: 0.875rem;
    line-height: 17px;
    letter-spacing: 1.4px;
}
.small_heading {
    font-size: 1.25rem;
    line-height: 50px;
}
.privacy .small_heading {
    font-family: "Bangla MN";
}
.text {
    font-size: 0.875rem;
    line-height: 18px;
}
.small_text {
    font-size: 0.75rem;
    line-height: 31px;
}

ul {
    padding-left: 0;
}
li {
    list-style: none;
}
img {
    width: 100%;
    height: 100%;
}
img.checkout_order_summary_img.dial {
    margin-right: -100%;
}
.button {
    padding: 18px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    letter-spacing: 1.4px;
    min-height: 59px;
    font-size: 0.875rem;
    transition: 0.4s ease-in-out;
    -webkit-appearance: none;
}
.white_text {
    color: var(--primary-bg-color);
}
.btn_filled {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-text-color);
}
.btn_filled:hover,
.btn_filled:active,
.btn_filled:focus {
    background: var(--primary-bg-color);
    color: var(--primary-text-color);
    border: 1px solid var(--primary-text-color);
}

.btn_filled_white {
    background: var(--primary-bg-color);
    color: var(--primary-text-color);
    border: 1px solid var(--primary-bg-color);
}
.btn_filled_white:hover,
.btn_filled_white:active,
.btn_filled_white:focus {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
}

.btn_outline {
    background: var(--primary-bg-color);
    color: var(--primary-text-color);
    border: 1px solid var(--primary-text-color);
}
.btn_outline:hover,
.btn_outline:active,
.btn_outline:focus {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-text-color);
}

.btn_outline_dark {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color);
}
.btn_outline_dark:hover,
.btn_outline_dark:active,
.btn_outline_dark:focus {
    background: var(--primary-bg-color);
    color: var(--primary-text-color);
    border: 1px solid var(--primary-bg-color);
}

.grey_text {
    color: var(--grey-text-color);
}
.flex_center {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.flex_center_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex_start_between {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.flex_end_between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.flex_start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex_end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.column_flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.column_flex_center {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.container {
    margin: 0 139px;
    padding: 0;
}
/* .left_gap .container {
  margin: auto;
  margin-right: 0;
  padding-right: 0;
} */
.light_grey_text {
    color: var(--light-grey);
}
.inter {
    font-family: "Inter", sans-serif;
}
.underline {
    color: var(--primary-text-color);
}

.underline2 {
    text-decoration: underline;
}
.italic {
    font-style: italic;
}

/* NAVBAR */

.navbar {
    padding: 25px 55px;
}
.home_navbar {
    padding: 25px 0px 0;
}
.navbar .navbar-nav {
    gap: 30px;
}
.navbar .nav-link {
    color: var(--primary-text-color);
    font-size: 0.875rem;
    line-height: 17px;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler {
    background: var(--primary-text-color);
    border-radius: 50%;
    padding: 0 9px;
    width: 50px;
    height: 48px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 2.5rem;
}
/* .navbar-brand.footer_logo {
  width: 20%;
} */
.form-select,
.form-select:hover,
.form-select:focus {
    background: var(--primary-text-color);
    box-shadow: none !important;
    outline: none;
    padding: 10px 10px 3px;
    color: var(--primary-bg-color);
    cursor: pointer;
    border-color: var(--primary-text-color);
}
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: var(--primary-text-color);
    overflow-x: hidden;
    transition: 0.5s ease-in-out;
}

.overlay .overlay-content {
    /* position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: 0.7s ease-in-out;
}

.overlay .overlay-content a {
    transition: 0.3s;
    border-bottom: 1px solid #fffff131;
    padding: 5px 10px 20px;
}
/* .overlay-content .topNav {
    padding-top: 30px;
} */
.overlay .overlay-content p {
    text-decoration: none;
    font-size: 1.563rem;
    color: var(--primary-bg-color);
    display: block;
}
.overlay .overlay-content p.small_heading {
    font-size: 1.25rem;
    padding-left: 30px;
}
.overlay-content a.button {
    font-size: 0.875rem;
    border: 1px solid var(--primary-bg-color);
    padding: 18px 30px 10px;
    min-height: 59px;
    display: flex;
    min-width: 350px;
    transition: 0.5s ease-in-out;
    max-width: 70%;
}
.about .button {
    min-width: 350px;
    max-width: 35%;
}
.overlay .overlay-content a:hover,
.overlay .overlay-content a:focus {
    color: #f1f1f1;
}
.overlay-content a.button:hover {
    color: var(--primary-text-color);
}
.overlay-content .flex_center_between .column_flex {
    width: 300px;
    gap: 25px;
}

.overlay .close_btn_div {
    background: white;
    border-radius: 50%;
    position: absolute;
    right: 68px;
    top: 28px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay .overlay-content {
    padding-top: 50px;
}

.overlay .cart_icon_nav {
    top: 20px;
    left: 20px;
    position: absolute;
}

/* .overlay #currencyDropdown {
    left: 20px;
    width: 80px;
    position: absolute;
    top: 20px;
} */

.close_btn_div a {
    color: black;
    font-weight: bold;
    font-size: 37px;
    margin-top: -5px;
}
.overlay-content .sidebarSlider {
    width: 50%;
}
.overlay-content .slider {
    width: 33vw;
}
.overlay-content .slick-list {
    padding: 0 !important;
}
.overlay-content .slick-slide {
    margin: 0 20px;
}
.overlay-content .slider img {
    width: 100%;
    height: 100%;
}
.cart_icon_nav img {
    width: 48px;
    height: 52px;
}

/*.overlay-content .dropdown-toggle {
  background-color: var(--primary-text-color);
  border: none;
  border-bottom: 1px solid #fffff131;
  padding: 10px 10px 20px;
}
.overlay-content .dropdown-toggle::after {
  display: none;
}
.overlay-content .dropdown-menu.show {
  background-color: var(--primary-text-color);
  width: 100%;
  position: relative !important;
  transform: none !important;
}
.overlay-content .dropdown-menu.show li {
  border-bottom: 1px solid #fffff131;
}
.overlay-content .dropdown-menu.show a {
  border-bottom: none;
} */
/* .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
} */

.gallery_img {
    /* display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 140px; */
    margin: 5px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
}
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }
    /* .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  } */
}

/* FOOTER */

.footer {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
    padding: 70px 0 55px;
}
.white_text.email:hover {
    color: var(--primary-bg-color);
}
.footer .flex_start {
    align-items: flex-start;
}
.footer .column_flex {
    gap: 30px;
}
.footer .column_flex:first-child {
    width: 38%;
}
.footer .flex_start .flex_start {
    gap: 60px;
    align-items: flex-start;
}
.footer .newsletter_form .flex_start {
    gap: 10px;
}
.footer .newsletter_form {
    z-index: 1;
}
.footer h3 {
    max-width: 90%;
}
.footer .button {
    min-width: 311px;
    font-size: 0.875rem;
    max-width: 50%;
}
.newsletter_form .form-control {
    max-width: 300px;
}
.newsletter_form .button {
    min-height: 45px;
    min-width: 200px;
    max-width: 200px;
    padding: 17px 30px 9px;
}
.footer .inter {
    font-weight: 200;
    font-size: 0.8125rem;
    line-height: 24px;
    /* max-width: 204px; */
    color: var(--primary-bg-color);
}
.footer .copyright {
    padding-top: 13px;
    max-width: 100%;
}
.footer_logo,
.overlay_landing .navbar-brand img {
    width: 8vw;
}
/* .footer img {
  width: 20%;
} */

/* PAGE CSS */

.page_data {
    height: 100%;
    overflow-x: hidden;
    /* position: relative; */
}
.page_data .main_data {
    height: 100%;
    /* height: 88vh; */
    width: 100%;
    padding-top: 15px;
}
.main_data.build {
    height: 88vh;
    overflow-y: scroll;
}
.page.single {
    padding-top: 50px;
}
.main_data .home_banner {
    width: 100%;
    height: 88vh;
}
.main_data .home_banner .banner_img {
    position: absolute;
    top: 0%;
    right: 0;
    z-index: -100;
    max-width: 53%;
    width: 100%;
    height: 100vh;
}
/* .main_data.page .home_banner .banner_img {
  height: auto;
} */
.main_data.page .home_banner .banner_img {
    max-width: 67vw;
    overflow: hidden;
    height: 100%;
}

.final_watch {
    /* position: relative; */
    position: absolute;
    /* transform: rotate(51deg); */
    display: flex;
    /* top: -60vh; */
    /* top: 50px; */
    /* bottom: -100%; */
    right: -10%;
    align-items: center;
}
.final_watch img {
    width: 650px;
    height: 650px;
}
.final_watch .selected_dial {
    position: absolute;
}
.final_watch .selected_dial img {
    width: 100%;
    height: 100%;
}

.left_gap {
    position: relative;
}
.main_data .bottom_banner {
    width: 100%;
    height: 685px;
}
.bottom_banner .banner_img {
    position: absolute;
    /* right: 0; */
    right: 0;
    top: 42px;
    z-index: -100;
}
.main_data .banner_data {
    height: 100%;
    width: 50%;
    padding-top: 12%;
}
.main_data .home_banner.out_of_stock_selected .banner_data {
    padding-top: 1%;
    width: 60%;
}
/* .bottom_banner .banner_data {
  margin-left: -85px;
} */
.main_data .text_section {
    width: 85%;
    margin-top: 80px;
}
.main_data .text_section p {
    width: 85%;
    padding: 20px 0;
}
.main_data .cards_container {
    padding: 50px 0 10px;
}
.main_data .cards_container .flex_center_between {
    gap: 15px;
}
.main_data .card {
    border: none;
    width: 100%;
    /* height: 613px; */
    padding-right: 15px;
    max-width: 570px;
}
.main_data .card-img img {
    width: 555px;
    height: 664px;
}
.main_data .card .card-img-overlay {
    /* top: 66%; */
    top: 0;
    /* left: 20px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 30px; */
    padding: 30px 30px 20px;
}
/* .main_data .card:nth-child(2) .card-img-overlay {
  left: 35px;
} */
.main_data .card .card-title {
    /* width: 60%; */
    color: var(--primary-bg-color);
}
.card .card_btn {
    display: flex;
    justify-content: center;
}
.main_data .card .button {
    max-width: 241px;
    min-width: 241px;
    padding: 15px 20px 10px;
}
.bottom_banner .column_flex {
    gap: 15px;
}
.card .heading_small {
    letter-spacing: normal;
    font-weight: 400;
}
.bottom_banner .column_flex .button {
    margin-top: 30px;
}
.home .button {
    min-width: 311px;
    max-width: 60%;
}
.home .button#home_shop {
    font-size: 1.3rem;
}
#info-box::after {
    content: attr(data-scroll-direction);
}

.home .button.small_btn {
    margin: auto;
    max-width: 40%;
}

.main_data .collections {
    padding: 50px 0 200px;
}
.main_data .collections .flex_center {
    gap: 40px;
}
.slider img {
    width: auto;
    height: auto;
}
.collections .collection {
    max-width: 435px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.collection .collection_img {
    padding-bottom: 10px;
}
/* .collections .collection:first-child .collection_img img {
    margin-top: -20px;
} */
/* .collections .collection:first-child .collection_img {
    padding-bottom: 20px;
} */
.collection_img img {
    width: 400px;
    height: 500px;
}
.collection .collection_data {
    max-width: 412px;
    padding-bottom: 10px;
    /* min-height: 230px; */
}
.collection .collection_info {
    min-height: 550px;
    padding-top: 20px;
}
.collection .collection_info li {
    font-weight: 500;
    padding-bottom: 28px;
}
.collection .collection_btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.collection .collection_btn .button {
    font-size: 0.875rem;
    min-width: 300px;
    margin-bottom: 10px;
    text-transform: uppercase;
    max-width: 90%;
}

.single .container:first-child {
    margin: 0 150px;
}
.main_data.single h3 {
    letter-spacing: normal;
    font-size: 1.6rem;
    line-height: 50px;
}
.main_data .single_col_main {
    max-width: 850px;
    padding-bottom: 20px;
}
.main_data .single_col_main .heading_large {
    padding-top: 20px;
    line-height: 80px;
}
.main_data .single_collection .column_flex {
    gap: 0;
}
.main_data .single_collection .column_flex .flex_center_between {
    justify-content: center;
    padding: 60px 0 0;
}
.single_collection .flex_center_between {
    padding: 30px 0;
}
.main_data .single_img {
    text-align: center;
}
.main_data .single_collection.home div:nth-child(odd) .single_img {
    text-align: left;
}
.main_data .single_collection.home div:nth-child(odd) .single_info {
    margin-left: auto;
    padding: 0;
}
.main_data .single_collection.home div:nth-child(even) .single_img {
    text-align: right;
}
.main_data .single_collection.home div:nth-child(even) .single_info {
    margin-right: auto;
    padding: 0;
}
.main_data .single_collection.home .single_info h5 {
    line-height: 38px;
}
.main_data .single_collection.home .single_img .first_img {
    width: 80%;
    /* width: 340px; */
}
/* .main_data .reviews_media {
    padding: 20px;
    background: var(--grey-bg);
} */
.reviews_media img {
    max-width: 200px;
}
.main_data .single_img.second {
    margin-left: -35px;
}
.main_data .left .single_img {
    text-align: left;
}
/* .main_data .single_img img {
  width: auto;
} */
.main_data .first_section {
    padding: 80px 0;
}
.main_data .single_img .first_img {
    width: 46%;
}
.main_data .first_section .single_img .first_img {
    width: 70%;
}
.main_data .single_img .second_img {
    width: 60%;
}
.main_data .single_img .second_img.celeritas {
    width: 100%;
}
.main_data .single_info {
    width: 80.4%;
}
.main_data .flex_center_between:nth-child(n) .single_info {
    padding-left: 65px;
}
.main_data .flex_center_between:first-child .single_info {
    padding-left: 0px;
}
.main_data .flex_center_between:nth-child(2n-2) .single_info {
    padding-left: 139px;
    width: 100%;
}
.main_data .start {
    align-items: flex-start;
    padding-top: 90px;
}
.main_data .start .single_info {
    width: 100% !important;
}
.main_data .single_info.cele {
    /* padding-left: 0 !important; */
    width: 83% !important;
}
.main_data .info_single {
    padding-top: 50px;
}
.single_info .last_para {
    width: 75%;
}
.start .single_img {
    padding-right: 100px;
}
.start .cele_i {
    padding-right: 0px;
}
.main_data .single_collection .column_flex .flex_center_between .single_info {
    display: flex;
    justify-content: flex-start;
    padding-left: 139px;
}
.main_data
    .single_collection
    .column_flex
    .flex_center_between
    .single_info:last-child {
    justify-content: flex-start;
    padding-left: 0;
    /* margin-left: 150px; */
}
/* .main_data .flex_center_between:nth-child(2n-2) .single_img {
  text-align: right;
} */
.main_data .single_img.text-center img {
    width: 100%;
}
.overlay-content .arrow_right {
    width: auto;
}
.single_collection .single_info .column_flex {
    gap: 70px;
}
.single_info p {
    padding-top: 20px;
    width: 77%;
}
.main_data .start .single_info .info_single p {
    width: 85%;
}
.main_data
    .single_collection
    .column_flex
    .flex_center_between
    .single_info:last-child
    p {
    width: 65%;
    /* width: 480px; */
}
.half_div {
    width: 100%;
}
.case_dial img {
    height: 101px;
}
.single_collection .characteristic {
    padding-bottom: 100px;
    /* padding-left: 120px; */
}
.single_collection .collection_price {
    padding-top: 40px;
    padding-bottom: 50px;
}
.single_collection .flex_center {
    align-items: center;
}
.single_collection .button {
    max-width: 545px;
    padding-top: 19px;
    padding-bottom: 10px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    height: 77px;
    transition: 0.3s ease-out;
}
.div_outline {
    border: 1px solid var(--primary-text-color);
    color: var(--primary-text-color);
    background: var(--primary-bg-color);
    padding: 28px 50px 5px;
    height: 77px;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.page.build {
    /* padding-top: 25px; */
    position: relative;
    height: 85vh;
    overflow: hidden;
}
.build .row:nth-child(1) {
    align-items: flex-start;
}
.slider .row {
    align-items: flex-start !important;
}
.slick-prev:before,
.slick-next:before {
    color: var(--primary-text-color);
}
.slick-prev {
    color: var(--dark-grey);
    position: absolute;
    left: 10px;
    top: 50%;
    width: 40px;
    height: 40px;
    z-index: 100;
}
.slick-prev:hover,
.slick-next:hover {
    color: var(--dark-grey);
}
.slick-next {
    color: var(--dark-grey);
    position: absolute;
    right: 80px;
    top: 50%;
    width: 40px;
    height: 40px;
}
.slick-arrow2 .slick-prev,
.slick-arrow2 .slick-next {
    width: 12px;
    height: 12x;
}
.slider-choose {
    max-width: 358px !important;
    padding: 15px 0;
}
.slider-choose .slick-prev {
    left: 15px;
}
.revolve {
    /* position: absolute;
  left: 75%;
  top: 25%; */
    width: auto;
    cursor: pointer;
}
.slider-choose .slick-next {
    right: 10px;
}
.dial_select {
    height: 100%;
    border: 1px solid var(--grey-text-color);
    /* border-top: none; */
    max-width: 358px;
    min-height: 90vh !important;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 77vh !important; */
}

/* .slider-choose {
    border: 1px solid var(--grey-text-color);
} */
.slider-for .slick-slide,
.slider-choose .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.slider-for,
.wireframe {
    transition: 0.3s ease-in-out;
}
.slider-for .slick-slide {
    width: 100% !important;
    /* left: -40px !important; */
}
.slider-for .slick-slide img,
.wireframe img {
    width: 650px;
    height: 650px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    /* margin-top: -3%; */
}
.wireframe img {
    margin-left: -120px;
    /* margin-top: -9%; */
}
#watch_slider .flex_center {
    align-items: flex-start;
}

.select_watch .column_flex_center {
    gap: 0 !important;
}

#watch_slider .wireframe:nth-child(2) h4,
#watch_slider .wireframe img {
    margin-left: 30px;
}
#watch_slider .wireframe:first-child img {
    margin-left: 0px;
}
#watch_slider .wireframe img {
    width: 350px;
    height: 350px;
}
.slider-nav .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
    width: 100% !important;
    flex-wrap: wrap;
    overflow: auto;
    max-height: 65vh;
}
.slider-select .slick-track .slick-slide {
    /* margin: 0 0 0 -2px; */
    margin: 0;
}
.build_info .grey_text {
    padding-bottom: 10px;
}
.slider-nav .slick-slide {
    padding: 15px;
    height: 100%;
    cursor: pointer;
    width: 50% !important;
    margin: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    height: 160px;
    border: 1px solid var(--grey-text-color);
    border-top: none;
    border-left: none;
    position: relative;
}
.slider-nav .slick-slide .out_of_stock {
    position: absolute;
    left: 0;
    top: 5px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    /* background: #a30000; */
    background: #ca9871;
    padding: 5px 15px 0px 8px;
}
.out_of_stock p {
    font-size: 12px !important;
    line-height: 20px;
    font-weight: 300;
}
.slider-nav .slick-slide:nth-child(2n-2) {
    border-right: none;
}
.slider-nav .slick-slide:last-child {
    margin-bottom: 100px !important;
}
.slider-nav .heading_space {
    font-size: 12px;
    width: 100%;
}
.slider-nav .slick-current {
    background: var(--grey-bg);
}
.slider-select .slick-track {
    /* width: 100% !important; */
    display: flex;
    align-items: flex-start;
    transition: 0.5s ease-in-out;
}
.slider-for .slick-track {
    align-items: center;
    /* min-height: 425px; */
    min-height: 60vh;
    height: 100%;
    max-height: 60vh;
    margin-left: -60px;
    /* margin-top: -9%; */
}
/* .strap .slick-track {
    max-height: 70vh;
} */
.strap img {
    width: 70%;
    /* margin-top: -50px; */
}
/* .slider-select .slick-slide {
  width: 100% !important; 
} */

/* .strap .slick-slide {
  max-height: 625px;
} */
.case_slide .strap img {
    width: auto;
}
.strap .strap_dial {
    position: absolute;
    width: 30% !important;
    top: 32%;
    left: 35%;
}
.strap .strap_case {
    position: absolute;
    width: 28% !important;
    top: 30%;
    left: 54%;
    z-index: -100;
}
.dark_bg {
    background: var(--primary-text-color);
    /* padding: 2px 170px 0; */
    /* width: 101.7%; */
    color: var(--primary-bg-color);
}
.dark_bg .flex_center {
    gap: 50px;
    justify-content: flex-start;
}
.dark_bg .flex_center_between {
    gap: 20px;
    align-items: center;
    cursor: pointer;
}
.dark_bg img {
    width: 20px;
    height: 20px;
}
.slider-choose .heading_space {
    padding-top: 5px;
    text-align: center;
}
.dark_bg .heading_space {
    color: var(--dark-grey);
    padding-top: 10px;
}
#dial_bottom {
    color: var(--primary-bg-color);
}
#watch_build #dial_bottom {
    color: var(--dark-grey);
}
#watch_build #watch_bottom {
    color: var(--primary-bg-color);
}
.dial_inactive {
    display: none;
}
#watch_build .dial_inactive {
    display: block;
}
#watch_build .dial_active {
    display: none;
}
.strap_active {
    display: none;
}
.cover_active {
    display: none;
}
.main_data .build_watch2 {
    background: var(--primary-text-color);
    position: absolute;
    width: 92vw;
    /* bottom: 58px; */
    bottom: 0;
}
.build_watch {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    max-width: 358px;
}
.black_bar {
    background: var(--bs-black);
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 59px;
    width: 80%;
}
.build_watch1 {
    /* background: var(--primary-text-color); */
    position: absolute;
    left: 0;
    bottom: 0;
    height: 59px;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}
.build_watch1 .dark_bg {
    height: 59px;
    display: flex;
    align-items: center;
}
/* .main_data .build_watch2 .dark_bg {
  padding: 0 170px;
} */
/* .build_watch2 .col-lg-8,
.build_watch2 .col-lg-4  {
  padding: 0;
} */
.build_watch2 .button,
.build_watch .button {
    max-width: 358px;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 14px 50px 4px;
    /* margin-left: 3px; */
}
.build_watch .button {
    max-width: 100%;
}
/* .build_watch #next_confirm {
    border-bottom: none;
} */
.home_banner .flex_center {
    /* gap: 120px; */
    gap: 12%;
    justify-content: flex-start;
}
.home_banner .flex_center_between {
    gap: 10px;
    justify-content: flex-start;
}
.home_banner .column_flex {
    gap: 50px;
}
.home_banner .flex_center .column_flex,
.item_info .flex_center_between .column_flex,
.reset .column_flex {
    gap: 0px;
}
.main_data .selected_data {
    /* padding-left: 150px; */
    width: 48%;
}
.selected_data .column_flex {
    gap: 20px;
}
.selected_data .column_flex:first-child {
    gap: 70px;
}
.selected_data .column_flex:first-child p {
    padding-top: 20px;
}
.selected_data h3 {
    width: 77%;
    line-height: 45px;
}
.home_banner .flex_center_between .button,
.selected_data .button {
    height: 59px;
    padding: 18px 30px 10px;
}
.selected_data .button {
    max-width: 350px;
}
.selected_char {
    width: 52%;
    /* padding-left: 30px; */
    /* padding-top: 50px; */
    position: relative;
    /* background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    background-size: contain; */
}
.pouch_image {
    position: absolute;
    width: auto;
    right: 10%;
    height: 65%;
    top: 10%;
}
.selected_watch {
    position: relative;
    padding: 100px 0 200px;
}
.selected_watch .flex_center .flex_center_between {
    align-items: flex-start;
}
.selected_char img {
    width: auto;
    position: absolute;
    right: 0;
    top: 0px;
}
.main_data .page_banner .home_banner .banner_img {
    top: -5%;
}
/* .selected_char .column_flex {
    margin-top: -65px;
} */
/* .page .banner_img {
  margin-top: -16px;
} */
/* .selected_watch .selected_data {
  padding-left: 139px;
} */
.selected_char li {
    padding-bottom: 30px;
}

/* .watch_cart .flex_start_between {
  justify-content: flex-start;
} */
.cart .item {
    border: 1px solid var(--border-grey);
    padding: 20px 40px 20px 0px;
}
.item .flex_start_between {
    gap: 20px;
}
/* .item .flex_center_between {
    gap: 60px;
} */
.item .flex_center_between:nth-child(2) {
    /* gap: 50px; */
    gap: 10px;
    align-items: baseline;
}
.item_info .column_flex .item_char .flex_center_between {
    /* gap: 35px !important; */
    gap: 15px !important;
}
.item .flex_center_between .flex_start_between {
    gap: 20px;
}
.price_edit {
    min-width: 120px;
}
.watch_cart .dark_bg {
    padding: 30px 12px;
    /* max-width: 235px; */
    max-width: 85%;
    width: 100%;
    /* min-height: 590px;
  height: 100%; */
    min-height: 74vh;
    height: 100%;
}
/* .watch_cart .dark_bg .flex_center_between {
    gap: 80px;
} */
.watch_cart .dark_bg .column_flex {
    gap: 15px;
    width: 100%;
}
.watch_cart .dark_bg .column_flex:first-child {
    padding: 10px 5px;
}
.watch_cart .dark_bg .column_flex .light_grey_text {
    opacity: 0.61;
}
.watch_cart .dark_bg .column_flex .checkout_method {
    margin-left: -10px;
    margin-bottom: 10px;
    margin-top: -15px;
}
.amount_name {
    font-size: 0.875rem;
}
.discount.cut {
    text-decoration: line-through;
}
.tooltip, .tooltip-inner {
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    opacity: 1 !important;
}
.tooltip .tooltip-arrow {
    display: none !important;
}
.tooltip-inner {
    padding: 0;
}

.column_flex_between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* gap: 185px; */
}
.watch_cart .dark_bg .column_flex_between {
    height: 100%;
}
.watch_cart .dark_bg .button {
    padding: 18px 35px 10px;
    /* max-width: 211px; */
    min-height: 46px;
}
.bold {
    font-weight: 600;
}
.semi_bold {
    font-weight: 600;
}
.item .price_edit .column_flex {
    gap: 60px;
    align-items: flex-end;
}
.item .edit img {
    width: 25px;
    height: 25px;
    margin-bottom: -20px;
}
.item .minus img,
.item .plus img {
    width: 18px;
    height: 18px;
}
/* .watch_cart .row:first-child {
  align-items: flex-start;
} */
.watch_cart .col-lg-9 {
    padding-right: 0;
}
.watch_cart .col-lg-3 {
    padding-left: 0;
}
.watch_cart .checkout_method .flex_start {
    gap: 10px;
    align-items: flex-start;
    padding-left: 5px;
}
.checkout_method img {
    width: 40px;
    display: block;
}

.cart .line {
    border: 1px solid var(--border-grey);
    width: 2px;
    position: absolute;
    left: 52%;
    top: 0;
    height: 100%;
}
.login .flex_start {
    gap: 60px;
}
.login .button {
    min-height: 44px;
}
input {
    background: var(--input-bg) !important;
    border: none !important;
}
.social_icon {
    width: 40px;
    transition: 0.3s ease-in-out;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
        hue-rotate(158deg) brightness(105%) contrast(103%);
    /* border-radius: 50%; */
    /* padding: 10px; */
    /* background: var(--primary-bg-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 70px;
}
/* .social_icon .insta {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
        hue-rotate(158deg) brightness(105%) contrast(103%);
} */
.slick-dots li button:before {
    font-size: 12px;
}
/* .social_icon:hover {
    background: var(--primary-text-color);
}
.social_icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(158deg) brightness(105%) contrast(103%);
} */
.social_icon img {
    width: 33px;
}
.form-control {
    height: 45px;
    max-width: 444px;
    border-radius: 0;
    padding-left: 20px;
    padding-top: 13px;
}
.form-control:focus,
.navbar-toggler:focus,
.form-check-input:focus {
    box-shadow: none;
}
.form-control::placeholder {
    opacity: 0.5;
    font-size: 0.75rem;
}
.form-check-input {
    margin-top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50% !important;
}
.form-check-input:checked {
    background: var(--primary-text-color) !important;
}
.form-check {
    display: flex;
    gap: 15px;
}
.form-check .text {
    padding-top: 9px;
    margin-bottom: 0;
}
.login {
    padding-top: 10px;
}
.login .form_area {
    padding-top: 30px;
}
.form_area {
    max-width: 444px;
}
.reset.account {
    height: 60vh;
    width: 95%;
}
.reset.account .container,
.reset.account .flex_center {
    height: 100%;
}
.reset.account .container {
    margin: auto;
}
.reset.account .flex_center .column_flex {
    height: 100%;
    display: flex;
    justify-content: center;
}
.reset.account .flex_center .column_flex .small_heading {
    margin-left: 22%;
}
.reset.account .form_area {
    max-width: 100%;
}
.reset.account .form_area .flex_center_between {
    gap: 50px;
}
.form-label {
    margin-bottom: 0;
    font-size: 0.75rem;
}
label {
    font-weight: 400;
}
.form_area .button {
    max-width: 444px;
    font-size: 0.875rem;
    line-height: 17px;
    letter-spacing: 1.4px;
    min-height: 44px;
    padding-top: 20px;
}
.reset.account .form_area .button {
    max-width: 290px;
    margin-left: 30%;
    height: 44px;
    border-radius: 0;
}
.form_area .small_text {
    color: var(--primary-text-color);
}
.form_area .small_text:hover {
    text-decoration: underline;
}
.form_area .column_flex {
    align-items: center;
    gap: 25px;
}
.form_area .column_flex .btn_filled {
    margin-bottom: 10px;
}
.form_area .flex_center_between {
    gap: 10px;
}
.main_data .order_summary {
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-grey);
    width: 100%;
    max-width: 352px;
    height: 78vh;
    overflow: hidden;
}
.main_data .order_summary .heading_space:first-child {
    line-height: 45px;
    padding-top: 10px;
}
.order_summary .summary .item .flex_start {
    position: relative;
}
.order_summary .summary img.dial {
    position: absolute;
    height: auto;
}
/* .order_summary .summary .flex_start {
    gap: 10px;
} */
.order_summary .summary .flex_start p {
    margin-left: -15px;
}
.summary .item,
.order_summary .total_price {
    padding: 10px 20px;
    border-top: 1px solid var(--border-grey);
}
.summary .item {
    padding: 0 20px 0 0px;
}
.mb-5 {
    margin-bottom: 2.5rem !important;
}
.order_summary .total_price {
    padding-top: 20px;
}
.total_price .flex_center_between {
    padding-bottom: 15px;
}
.reset .column_flex {
    width: 444px;
    padding-top: 20px;
}
.reset .button {
    height: 44px;
}
.datepicker table tr td span {
    height: 50px;
}
.datepicker table tr td span.active.active {
    background: var(--primary-text-color);
    background-image: none;
}
.modal-open {
    overflow-y: scroll !important;
    padding-right: 0px !important;
}
.modal-content {
    background: var(--primary-text-color);
    color: var(--primary-bg-color);
}
.modal-content .modal-header {
    border-bottom: none;
    padding: 15px 15px 0;
}
.modal-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1.3em auto no-repeat;
    opacity: 1;
    margin-top: 1px;
    margin-right: 1px;
}
.modal-content .modal-body {
    padding: 0 5% 2%;
}
.modal-body .flex_center {
    justify-content: flex-start;
}
.modal-body .flex_start {
    align-items: flex-start;
}
.modal-body .modal_img {
    padding: 0 30%;
}
.modal-body .modal_img.main {
    padding: 8% 5% 0 0;
    width: 30%;
}
.modal-body .modal-content .flex_start p {
    margin-top: 5px;
}
.modal-body .form-control {
    max-width: 300px;
}
.modal-body button {
    max-width: 200px;
    min-height: 45px;
}
.modal-body .form-check {
    width: fit-content;
}
.modal-body .form-check,
.modal-body .form-check-input {
    cursor: pointer;
}
.modal-body .form-check-label {
    margin-top: 4px;
}
.modal .form-check-input[type=checkbox]:checked {
    background: var(--input-bg) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}
#month input {
    padding: 15px 10px;
}
.main_data.success {
    padding-top: 80px;
}
.success .container {
    margin-left: 150px;
}
.success .column_flex {
    gap: 40px;
}
.item_info .column_flex .item_char.acc .flex_center_between {
    gap: 50px !important;
}
.item_info .column_flex .item_char.acc .flex_center_between .column_flex.left {
    padding-left: 60px;
}
.success .heading_large {
    line-height: 40px;
}
.success .button {
    max-width: 444px;
    min-height: 45px;
}
.success .main_img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1000;
}
.home .main_img {
    padding: 40px 0;
}
.main_data .about {
    padding: 30px 0 150px;
}
.about .column_flex {
    align-items: center;
    gap: 60px;
}
.about_page .text_section {
    width: 89%;
    margin-top: 50px;
}
.about_page .text_section p {
    width: 100%;
    padding-bottom: 60px;
}
.about_page .text_section h3 {
    line-height: 50px;
    font-size: 1.7rem;
}
.left_gap .flex_center_between {
    padding: 80px 0 50px;
}
.left_gap .flex_center_between h3 {
    width: 86%;
}
.main_data .text-center p {
    font-size: 1.375rem;
    line-height: 41px;
}
.cart_icon {
    display: none;
    text-align: center;
}
.cart_icon img {
    width: auto;
    cursor: pointer;
}
.slider-select {
    /* height: 75vh; */
    /* height: 100%; */
    overflow: hidden;
}

.mobile_card {
    display: none;
}
.main_data .privacy {
    padding-top: 10px;
}
.privacy .column_flex {
    gap: 20px;
    padding: 30px 0 100px;
}
.privacy .inter {
    max-width: 82%;
}
.inter .bold {
    font-weight: 800;
}
.main_data .privacy.terms {
    padding-top: 20px;
}
.privacy.terms .column_flex {
    padding-top: 25px;
    gap: 20px;
}
.privacy .text.bold {
    font-size: 0.938rem;
    font-weight: 800;
    max-width: 86%;
    line-height: 31px;
}
.privacy ul {
    padding-left: 20px;
    margin-bottom: 0;
}
.privacy li {
    font-family: "Inter";
    list-style: disc;
    font-size: 0.938rem;
    padding: 5px 0;
    line-height: 31px;
}
.privacy.terms .terms_sections .column_flex {
    padding: 0;
    gap: 30px;
}
.privacy.terms .text {
    line-height: 31px;
}
.privacy.terms .terms_sections.small {
    max-width: 88%;
}
.privacy.terms .finalul {
    padding-top: 10px;
}

.glass {
    width: 150px;
    height: 150px;
    position: absolute;
    border-radius: 50%;
    cursor: crosshair;

    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85),
        0 0 4px 4px rgba(0, 0, 0, 0.25), inset 0 0 20px 2px rgba(0, 0, 0, 0.25);

    display: none;
    background-color: var(--primary-bg-color);
    touch-action: pan-right pinch-zoom;
    z-index: 99;
}
.cover_cart {
    width: 40px;
    height: 120px;
    margin-left: -30px;
    margin-right: 40px;
}
.dark_bg .bonus_div .flex_center_between {
    gap: 10px;
    align-items: flex-start;
}
.bonus_div .bonus_response {
    font-size: 0.6rem;
}
#bonus_error,
.error {
    color: red;
}
#bonus_accept {
    color: green;
}
#applyPromoBtn {
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    border: none;
    background: var(--primary-text-color);
    border-radius: 0;
}
.bonus_input {
    background: var(--primary-text-color) !important;
    color: var(--primary-bg-color);
    border: 1px solid var(--primary-bg-color) !important;
    width: 100%;
    padding: 10px 10px 5px;
    outline: none;
    height: 44px;
}
.bonus_input::placeholder {
    font-size: 0.57rem !important;
}
.bonus_div .arrow_right {
    background: var(--primary-text-color);
    border: 1px solid var(--primary-bg-color);
    padding: 9px 10px 6px;
    height: 44px;
}
.curtain {
    background: var(--primary-bg-color);
    width: 100%;
    height: 100%;
    overflow: auto;
    position: absolute;
    top: 0;
}
.overlay_landing {
    width: 100%;
    height: 100%;
    /* padding: 15% 0 0 60%; */
}
.curtain_img {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}
.curtain_img img {
    width: auto;
    opacity: 0.2;
}
.overlay_landing .row {
    /* align-items: center; */
    /*height: 100%; */
    margin-right: 0;
    height: 100%;
}
.overlay_landing .col-lg-8 {
    height: 100%;
    padding-right: 0;
}
.overlay_landing .landing_data {
    height: 100%;
    /* max-width: 360px; */
    margin-left: 100px;
    padding-top: 30%;
}
.landing_data h2 {
    line-height: 65px;
    padding-bottom: 20px;
    max-width: 300px;
}
.landing_data h6 {
    max-width: 330px;
    padding-bottom: 40px;
    font-weight: 400;
    line-height: 28px;
}
.overlay_landing .landing_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}
.landing_form .landing_form_data {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    max-width: 400px;
}
.landing_form label {
    padding-top: 10px;
}
.landing_form .form-control {
    padding: 10;
    /* width: 350px; */
    border: 1px solid var(--primary-text-color) !important;
    background: var(--primary-bg-color) !important;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.landing_form_data div {
    width: 100%;
}
.landing_form .form-control::placeholder {
    color: var(--primary-text-color) !important;
}
.landing_form_data div {
    width: 100%;
}
.landing_form .button {
    min-height: 50px;
    padding: 10;
    display: flex;
    align-items: center;
    /* min-width: 250px; */
    /* width: 350px; */
    margin: 20px 0 0;
    /* margin-left: 65px */
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.country-select,
.iti {
    width: 100%;
}
.iti--separate-dial-code .iti__selected-dial-code {
    margin-top: 8px;
}
.country-select .flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/country-select-js/2.1.1/img/flags.png");
}
.landing_data .newsletter_error {
    padding-top: 0;
    line-height: 20px;
}
.footer .newsletter_error {
    width: 60%;
}
.landing_data .newsletter_error.email_success,
.out_of_stock_selected .newsletter_error.text-success {
    color: var(--primary-text-color) !important;
    font-style: italic;
}
.overlay_landing .navbar-brand {
    position: absolute;
    left: 100px;
    top: 30px;
}
/* .overlay_landing .navbar-brand img {
    width: 110px;
} */
.product_documents {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}
.build_watch.mobile,
.build_watch1.mobile {
    /* #exit_btn { */
    display: none;
}
.build_head .flex_end_between {
    gap: 10px;
    align-items: flex-start;
}
#exit_btn {
    /* top: 90px; */
    /* right: 80px; */
    display: block;
    min-width: 70px;
    border-radius: 30px;
    min-height: 30px;
    /* height: 30px; */
    font-size: 0.875rem;
    text-align: center;
    padding: 10px 15px 0px;
}
.page_banner {
    position: relative;
}
.thumbnail_img_div {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.thumbnail_img_div img {
    width: 70px;
    margin-top: 20px;
    border-radius: 50%;
}
.dialSelectionBox .thumbnail_img_div img {
    width: 100px;
    margin-top: 0;
}

/*  ANIMATION  */

.anim,
.anim2,
.anim3,
.anim4,
.animate1,
.animate2 {
    opacity: 0;
}
.sideIn {
    animation-duration: 2s;
    animation-name: slidein;
    opacity: 1;
}
.sideInLeft {
    animation-duration: 2s;
    animation-name: slideinleft;
    opacity: 1;
}
.opacityAnim {
    animation-duration: 2s;
    animation-name: opacityAnim;
    opacity: 1;
}
.sideTop {
    animation-duration: 2s;
    animation-name: slidetop;
    opacity: 1;
}
.sideBottom {
    animation-duration: 2s;
    animation-name: slidebottom;
    opacity: 1;
}
.collection .collection_data {
    min-height: 280px;
}
@keyframes slidein {
    from {
        transform: translateX(30%);
    }

    to {
        transform: translateX(0%);
    }
}
@keyframes slideinleft {
    from {
        transform: translateX(-30%);
    }

    to {
        transform: translateX(0%);
    }
}
@keyframes slidetop {
    0% {
        transform: translateY(-30%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes slidebottom {
    0% {
        transform: translateY(20%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes opacityAnim {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate1 {
    /* transform: translateY(-50%); */
    animation: animate1 1s ease-in-out forwards;
}

.animate2 {
    animation: animate2 1s ease-in-out forwards;
}

@keyframes animate1 {
    from {
        opacity: 0;
        /* transform: translateY(-50%); */
    }
    to {
        opacity: 1;
        /* transform: translateY(0); */
    }
}

@keyframes animate2 {
    from {
        opacity: 0;
        transform: translateX(-20%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main_data .gal {
    justify-content: center;
    padding: 10px 0 150px;
}
.gal .gallery {
    flex-wrap: wrap;
    width: 100%;
}
.main_data .gal .text-center p.grey_text {
    font-size: 1rem;
    padding-bottom: 10px;
}
.gallery img {
    width: 150px;
    height: 150px;
    transition: 1s;
    padding: 5px;
}

.gallery img:hover {
    filter: drop-shadow(4px 4px 6px var(--dark-grey));
    transform: scale(1.01);
}

.checkout_order_summary_img {
    width: 110px !important;
    margin-left: -10px;
}

.field_error {
    color: red;
    font-size: 12px;
}

.field_success {
    color: green;
    font-size: 12px;
}

.btn_spinner {
    height: 18px !important;
    width: auto !important;
    margin-top: -7px;
}

.item .empty_cart {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.item .empty_cart img {
    width: 20%;
    filter: grayscale(100%);
}

.cursor-pointer {
    cursor: pointer;
}

.wireframe {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 60vh; */
    height: 60vh;
}
#watch_build .wireframe.mob_wireframe {
    display: none;
}
.slider-for-strap .slick-slide {
    display: flex !important;
    align-items: center;
}
/* .slider-for .slick-slide .dial_in_strap_box img {
    margin-top: -15%;
} */

.navbar .container-fluid .flex_end {
    gap: 10px;
}

.cart_product_image_box {
    height: 150px;
    width: 150px;
    position: relative;
}

.cart_product_image_box img {
    height: 150px;
    width: 150px;
    position: absolute;
    /* top: 100px; */
}

/* .main_data .build_watch2 {
    bottom: 9px;
} */

.dial_select .button {
    max-width: 100%;
}

input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label {
    top: -5px;
    left: 10px;
    font-size: 11px;
    opacity: 1;
}

.inputText {
    font-size: 14px;
    width: 100%;
    height: 35px;
}

.floating-label {
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 10px;
    font-size: 12px;
    transition: 0.2s ease all;
}

/* #currencyDropdown {
    border-radius: 25px;
    text-align: center;
    height: 46px;
    padding: 13px 18px 5px 20px;
    -webkit-appearance: none;
} */
.hide {
    display: none !important;
}
.newsletter_error {
    font-size: 12px;
    line-height: 25px;
    padding-top: 10px;
}

.hide_footer {
    overflow: hidden;
    height: 100vh;
}
.dial_in_strap_box {
    width: 100%;
    position: absolute;
}

.dial_in_strap_box img {
    width: 45%;
    margin: auto;
    /* margin-top: 22%; */
}

.error_box {
    position: absolute;
    bottom: 10%;
    left: 10%;
    text-align: center;
    color: red;
    font-size: 12px;
    z-index: 1;
}
.footer .flex_start .flex_start.social_data {
    min-width: 238px;
    align-items: center;
    gap: 10px;
    z-index: 100;
}
.home_banner.out_of_stock_selected .email_stock form {
    padding-top: 20px;
}
.home_banner.out_of_stock_selected .email_stock input {
    max-width: 338px !important;
    height: 59px;
    background: var(--primary-bg-color) !important;
    border: 1px solid var(--primary-text-color) !important;
    padding-top: 12px;
}
.home_banner.out_of_stock_selected .email_stock input::placeholder {
    color: var(--primary-text-color) !important;
}
.home_banner.out_of_stock_selected .email_stock .button {
    width: 100px;
    font-size: 0.75rem;
    padding: 18px 0 10px;
}
.home_banner.out_of_stock_selected .flex_center_between {
    align-items: flex-start;
}
.home_banner.out_of_stock_selected .flex_center_between .button {
    max-width: 438px;
}

#watch_slider.select_watch .wireframe img {
    height: 50vh;
    width: 25vw;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .desktop_card {
        display: none;
    }
    .dark_bg .heading_space {
        padding-top: 5px;
    }
    .build_watch.mobile .button {
        max-width: 100%;
    }
    .main_data .home_banner.out_of_stock_selected .banner_data {
        width: 100%;
    }
    .navbar-toggler {
        padding: 0 8px;
        margin-top: -1px;
    }
    .cart_icon_nav img,
    .navbar-toggler {
        width: 45px;
        height: 44px;
    }
    /* #currencyDropdown {
        height: 44px;
    } */
    .overlay_landing .navbar-brand {
        left: 30px;
        top: 23px;
    }
    .overlay_landing .landing_data {
        /* max-width: 350px; */
        margin: auto;
        padding: 0 20px 10px;
        padding-top: 30%;
        margin-left: 10px;
        /* margin-top: 15vh; */
    }
    .curtain_img img {
        display: none;
    }
    .overlay_landing .row {
        width: 100%;
        height: auto;
    }
    .landing_form .button {
        width: 100%;
        min-width: 100%;
    }
    .cart_icon_nav img {
        margin-top: -2px;
    }
    .item .edit img {
        width: 20px;
        height: 20px;
    }
    .mobile_card {
        display: block;
    }
    html {
        font-size: 15px;
    }
    .container {
        margin: 0;
        padding: 0 30px;
        max-width: 100%;
    }
    .navbar {
        padding: 20px 10px 0;
    }
    .home_navbar .container {
        padding: 0 10px 0 20px;
    }
    .cart_icon {
        display: block;
        padding: 0 0 20px;
    }
    .login .flex_start {
        flex-wrap: wrap;
    }
    .summary .item {
        padding-right: 10px;
    }
    .picker {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
        width: 100%;
        height: 100%;
        overflow: hidden;
        text-align: center;
        font-size: 14px;
        background: rgba(37, 38, 45, 0.4);
        display: none;
        transition: all 0.5s ease-out;
    }
    #cart_summary {
        display: none;
        position: fixed;
        transition: all 0.5s ease-out;
        display: none;
        width: 100%;
        left: 0;
        bottom: 0;
        overflow-x: hidden;
        overflow-y: scroll;
        z-index: 10000;
        animation: fromBottom 0.5s;
        background: var(--primary-bg-color);
        padding: 40px 30px 0;
        max-width: 100%;
    }
    @keyframes fromBottom {
        0% {
            opacity: 0;
            transform: translateY(100);
        }
        100% {
            opacity: 100%;
            transform: translateY(0);
        }
    }
    .summary_cart {
        border: 1px solid var(--border-grey);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .main_data .order_summary {
        height: auto;
        background: var(--primary-bg-color);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .main_data .card-img img {
        width: 100%;
        height: 100%;
    }
    .main_data .banner_data,
    .main_data .text_section,
    .main_data .text_section p,
    .collections .collection_img img,
    .slider img,
    .selected_data h3,
    .selected_char,
    .reset .column_flex,
    .single_info p,
    .main_data
        .single_collection
        .column_flex
        .flex_center_between
        .single_info:last-child
        p,
    .left_gap .flex_center_between h3 {
        width: 100%;
    }
    .form-check {
        gap: 10px;
    }
    .about .text-center {
        text-align: left !important;
    }
    .main_data .banner_data {
        /* padding-top: 35%; */
        height: auto;
        margin-top: 58vh;
        padding-top: 0;
    }
    .main_data.home .banner_data {
        margin-top: 50vh;
    }
    .main_data .cards_container {
        padding-bottom: 30px;
    }
    .bottom_banner .banner_data,
    .main_data.home .bottom_banner .banner_data {
        margin-top: 0;
    }
    .page.main_data .home_banner .banner_data {
        margin-top: 0;
        margin-bottom: 85%;
        padding-top: 20px;
    }
    .selected_watch {
        padding: 20px 0;
    }
    .banner_data .main_heading {
        font-size: 3rem;
        line-height: 70px;
    }
    .home h3 {
        line-height: 45px;
        letter-spacing: normal;
    }
    .home_banner .column_flex {
        gap: 30px;
    }
    .main_data .home_banner {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        position: relative;
    }
    .main_data .home_banner .banner_img {
        /* position: relative; */
        /* height: auto; */
        height: 45vh;
        width: 100vw;
        /* top: -40px; */
        right: -30px;
        max-width: 100vw;
    }
    .page.main_data .home_banner .banner_img {
        width: auto;
        height: auto;
        right: -30px;
        top: auto;
    }
    .home_banner .flex_center {
        flex-direction: row;
        /* gap: 50px; */
        gap: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    /* .main_data .bottom_banner {
    height: auto;
  } */

    /* .main_data .bottom_banner .banner_data {
    margin-left: 0;
    margin-top: 0;
    padding-right: 30px;
  } */
    .main_data .bottom_banner .banner_img {
        position: relative;
        right: -30px;
        top: 0;
    }

    .main_data .card {
        height: auto;
    }
    .flex_center_between,
    .flex_start_between,
    .flex_end_between,
    .flex_center,
    .footer .flex_start {
        flex-direction: column;
    }
    .flex_center#sales_price {
        flex-direction: row;
    }

    .flex_center.build_head {
        flex-direction: row;
    }

    .gal .gallery {
        flex-direction: row;
    }
    .footer .flex_start,
    .footer .flex_start .flex_center_between {
        align-items: flex-start;
    }
    .footer .flex_start .flex_center_between {
        flex-direction: column;
    }
    .footer .flex_start .column_flex {
        gap: 20px;
    }
    .footer .column_flex .column_flex {
        flex-direction: row;
        /* padding-bottom: 30px; */
    }
    .footer .column_flex .column_flex {
        justify-content: space-between;
    }
    .footer .flex_start .flex_start {
        padding-bottom: 0;
    }
    .footer .inter {
        max-width: 100%;
    }
    .footer .column_flex:first-child {
        width: 100%;
        padding-bottom: 10px;
    }
    .main_data .single_img img {
        width: 50%;
    }
    .home_banner .flex_center_between .button,
    .watch_cart .dark_bg .button,
    .selected_data .button,
    .selected_watch .button,
    .single_collection .button,
    .form_area,
    .form-control,
    .form_area .button,
    .footer h3,
    .privacy.terms .text.bold,
    .privacy.terms .terms_sections.small,
    .privacy .inter,
    .newsletter_form .form-control {
        max-width: 100%;
    }
    .main_data .card .button {
        min-height: 45px;
    }
    .main_data .card .card-img-overlay {
        /* top: 47%; */
        /* left: 10px; */
        gap: 10px;
        padding: 20px 10px;
    }
    .main_data .card .card-title {
        /* max-width: 98%; */
        width: 100%;
        height: 65%;
    }
    .card .card_btn {
        width: 92%;
    }
    /* .main_data .card:nth-child(2) .card-img-overlay {
    left: 20px;
  } */

    /* .main_data .card .card-img-overlay {
    position: relative;
    width: 100%;
    padding: 0;
    left: 0;
  }
  .card-img-overlay .card-title .heading_small {
    color: var(--primary-text-color);
  } */

    .collection .collection_info {
        min-height: auto;
        padding-top: 30px;
    }
    .collection .collection_info li {
        padding-bottom: 15px;
        line-height: 25px;
    }

    .single .container:first-child {
        margin: auto;
    }
    .landing_form .landing_form_data {
        flex-direction: column;
    }
    .heading_large {
        font-size: 3rem;
    }
    .page .main_img {
        margin-top: 30px;
    }
    /* .main_data .single_collection .flex_center_between:nth-child(2n-2), */
    .main_data .single_collection .column_flex,
    .main_data .single_collection .flex_center_between.reverse_col,
    .main_data .single_collection .flex_center_between.start {
        flex-direction: column-reverse;
    }
    .main_data .single_collection .flex_center_between:nth-child(2n-2),
    .main_data .single_collection .column_flex.reverse_col {
        flex-direction: column;
    }

    .main_data
        .single_collection
        .flex_center_between:nth-child(2n-2)
        .single_info {
        width: 100% !important;
        padding-left: 0;
        /* padding-right: 20px; */
    }
    .main_data
        .single_collection
        .flex_center_between:nth-child(2n-2)
        .single_img {
        text-align: center;
        padding: 20px 0;
    }
    .main_data .single_collection .flex_center_between .single_img img,
    .main_data .single_collection.home .single_img .first_img,
    .main_data .single_collection .flex_center_between .single_img.cele_i img {
        width: 100%;
    }
    .main_data .single_img.second {
        margin-left: 0;
    }
    .main_data .single_collection .flex_center_between .single_img .second_img {
        width: 90%;
    }
    .main_data
        .single_collection.home
        .flex_center_between
        .single_img
        .second_img {
        width: 100%;
    }
    .main_data
        .single_collection
        .flex_center_between:first-child
        .single_img
        img {
        width: 50%;
    }
    .main_data
        .single_collection.home
        .flex_center_between:first-child
        .single_img
        img {
        width: 100%;
    }
    .main_data
        .single_collection
        .first_section.flex_center_between:first-child
        .single_img
        img {
        width: 70%;
    }
    .single_collection .button {
        padding: 19px 5px 11px;
    }
    /* .main_data.single h3 {
        line-height: 45px;
    } */
    .main_data .single_collection .column_flex .flex_center_between {
        padding: 20px;
    }
    .main_data .single_collection .flex_center_between,
    .main_data .single_collection .flex_center_between .single_info {
        padding: 10px 0;
    }
    .main_data
        .single_collection
        .column_flex
        .flex_center_between
        .single_info {
        padding: 0;
    }
    .main_data
        .single_collection
        .column_flex
        .flex_center_between
        .single_info,
    .main_data .flex_center_between:nth-child(n) .single_info {
        padding-right: 30px;
    }
    .main_data
        .single_collection
        .column_flex
        .flex_center_between
        .single_info:last-child {
        margin-left: 20px;
    }
    .single_info .last_para {
        padding-right: 40px;
        width: 100%;
    }
    .single_collection .characteristic,
    .single_collection .collection_price {
        text-align: center;
        padding: 20px 20px;
    }
    .single_collection .div_outline {
        width: 100%;
    }
    /* .single_collection .flex_center {
    flex-direction: row;
  } */
    /* .slider-select {
        height: auto;
    } */

    .main_data .flex_center_between .single_info {
        margin: 0 20px;
        width: 100%;
        padding-right: 40px;
    }

    .main_data .build_watch2 {
        position: relative;
        width: 100%;
        background: transparent;
    }
    .build_watch {
        position: relative;
    }
    .build_watch2 .container,
    .build_watch .container {
        padding: 0;
    }
    .build_watch2 .dark_bg {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .overlay-content .column_flex .flex_center_between {
        flex-direction: row;
    }
    .overlay .close_btn_div {
        top: 20px;
        right: 25px;
    }
    .overlay-content .flex_center_between .column_flex {
        gap: 20px;
    }
    .overlay-content .flex_center_between .column_flex a {
        padding: 5px 10px 15px;
    }
    /* .overlay-content .flex_center_between .column_flex a:last-child {
        padding-top: 10px;
    } */
    .overlay-content .column_flex_center {
        padding-top: 20px;
    }
    .build_watch2 .dark_bg .flex_center {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    .build_watch2 .flex_center_between,
    .build_watch .flex_center_between {
        padding: 10px 20px;
    }
    .dark_bg .flex_center_between {
        gap: 10px;
        flex-direction: row;
        padding: 0;
    }

    .slider-for .slick-track {
        min-height: auto;
        margin-left: auto;
    }
    .slider img {
        width: auto;
    }

    /* .slider-for img {
    width: 60%;
  } */
    /* .strap img {
    width: 70%;
  } */
    .slick-next {
        right: 0px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next,
    .slick-prev {
        width: 30px;
        height: 30px;
    }
    .slider-choose {
        /* width: 100% !important; */
        position: relative;
        /* top: 475px; */
        margin-top: 20px;
        max-width: 84vw;
        /* z-index: 100; */
    }
    .slider-select .slick-track .slick-slide {
        margin: 0;
    }
    .select_dial {
        padding: 67px 0 0;
        margin-bottom: 0;
        height: 369px;
    }
    .case_slide .select_dial {
        margin-bottom: 0;
        padding: 0;
    }
    .slider-for .slick-list {
        height: 100%;
    }
    .slider-for .slick-track {
        margin-top: 0;
    }
    .strap img {
        margin-top: 0;
    }
    .strap_slide .select_dial {
        padding: 0 30px;
    }
    .cele_strap .strap img {
        width: 100%;
    }
    /* .case_slide .slider-for .slick-track {
    margin-left: -30px;
  } */
    .case_slide .strap img,
    .dial_slide img {
        padding-top: 20px;
        width: 50%;
    }
    .dial_select .slider-nav .thumbnail_img_div {
        width: 90px;
        min-height: 90px;
        border: 1px solid #707070;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .slider-nav .slick-track {
        flex-wrap: nowrap;
        overflow: auto;
    }
    .slider-nav .slick-slide {
        padding: 10px;
        gap: 10px;
        /* height: auto; */
        width: 40% !important;
        justify-content: space-around;
    }
    .slider-nav .slick-slide.no_stock {
        justify-content: flex-end;
    }
    .wireframe {
        /* min-height: auto; */
        height: auto;
    }
    #watch_slider .wireframe {
        width: 100%;
    }
    #watch_slider .wireframe img {
        margin-left: 0;
    }
    .wireframe img {
        width: 300px;
        margin-left: 0;
        height: auto;
        padding-top: 0;
        /* padding-top: 30px; */
    }
    .build .flex_center_between:first-child {
        flex-direction: row;
        align-items: flex-start;
    }
    .dial_select {
        /* min-height: 300px; */
        min-height: 100%;
        margin-left: 0;
        margin-bottom: 35px;
        border-top: 1px solid var(--grey-text-color);
        /* margin-top: 10%; */
        max-width: 100%;
        min-height: auto !important;
        padding-left: 20px;
        padding-right: 5px;
    }
    .slider-nav .slick-slide:last-child,
    .slider-nav .slick-slide:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
    .selected_watch .selected_data {
        padding-left: 0;
        width: 100%;
        padding: 0 0 40px;
    }
    .selected_char {
        padding-left: 0;
    }
    .selected_char .column_flex {
        margin-top: auto;
        width: 100%;
    }
    .reset.account .flex_center .column_flex .small_heading,
    .reset.account .form_area .button {
        margin-left: 0;
    }
    .reset.account .form_area .flex_center_between {
        gap: 5px;
    }
    .reset.account .form_area .button {
        max-width: 100%;
        border-radius: 0;
        height: 44px;
    }
    .selected_data .column_flex:first-child {
        gap: 30px;
    }
    .selected_char img {
        transform: rotate(90deg);
        width: 55%;
        position: relative;
    }

    .item .flex_center_between,
    .item .flex_center_between .flex_start_between,
    .total_price .flex_center_between {
        flex-direction: row;
    }

    .item_info .flex_center_between .column_flex p {
        font-size: 0.8rem;
    }
    .item .column_flex {
        gap: 0;
    }
    .item img,
    .main_data .single_collection .start .single_img img {
        width: auto;
    }
    .start .single_img {
        padding-right: 0;
    }
    .main_data .single_collection .start .single_img.text-center img {
        width: 100%;
    }
    .item .price_edit .column_flex {
        align-items: flex-start;
    }
    .watch_cart .dark_bg .column_flex_between,
    .login .flex_start {
        gap: 30px;
    }
    /* .watch_cart .dark_bg .flex_center_between {
    gap: 160px;
  } */

    .reset {
        height: 75vh !important;
    }
    .reset .flex_center {
        align-items: center;
        height: 100%;
    }
    .reset .container {
        height: 100%;
    }
    .reset .form_area {
        max-width: 100%;
    }
    .form_area {
        padding-bottom: 20px;
    }
    .form_area .column_flex {
        gap: 10px;
    }
    .footer .button {
        max-width: 100%;
        padding: 18px 0 10px;
    }
    .cart .item {
        padding-left: 20px;
    }

    .success .container {
        margin-left: 0;
    }
    .success .column_flex {
        padding-left: 0;
        padding: 0 10px;
    }
    .success .heading_large {
        line-height: 60px;
    }
    .start .cele_i {
        padding-right: 0;
    }
    .main_data .single_collection .start .column_flex {
        flex-direction: column;
        gap: 50px;
    }
    .main_data .single_info.cele {
        width: 100% !important;
    }
    .slider-for {
        height: 100%;
    }
    /* .build_watch2 .button,
    .build_watch .button {
        max-width: 100%;
    } */
    .watch img {
        width: 70% !important;
    }
    .overlay-content .sidebarSlider {
        width: 100%;
    }
    .cart .line {
        display: none;
    }
    .cart .flex_start {
        flex-direction: column;
    }
    .item_info
        .column_flex
        .item_char.acc
        .flex_center_between
        .column_flex.left {
        padding-left: 0;
    }
    .reset.account {
        width: 100%;
    }
}
.mobile_choose {
    display: none;
    text-align: center;
}
.characteristic.desktop {
    display: block;
}
.characteristic.mobile {
    display: none;
}
.flex_center#sales_price {
    justify-content: flex-start;
}
.heading_space.text-decoration-line-through {
    color: var(--dark-grey);
}
.selected_watch .flex_center.mobile {
    display: none;
}
.selected_watch .checkout_method {
    width: 100%;
    text-align: center;
}
.selected_watch .checkout_method a img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(0%) saturate(394%)
        hue-rotate(162deg) brightness(88%) contrast(88%);
}
.selected_watch .checkout_method a:last-child img {
    filter: none;
}
.reviews_media a {
    width: 16%;
}

.navbar {
    transition: all 0.3s ease-in-out;
}

#navbar_shop {
    display: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px 1px 20px;
    width: 25vw;
    min-height: 9.3vw;
    max-width: 25vw;
    min-width: 25vw;
}

/* .overlay #currencyDropdown,
.overlay .cart_icon_nav {
    display: none !important;
} */

@media screen and (max-width: 450px) {
    .page_data {
        padding-top: 55px;
    }

    /* .overlay #currencyDropdown,
    .overlay .cart_icon_nav {
        display: block !important;
    } */

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 10px;
        z-index: 999;
        background-color: #ffffff;
    }

    /* .navbar #currencyDropdown, */
    /* .navbar .cart_icon_nav,
    .home .button#home_shop {
        display: none ;
    } */

    /* #currencyDropdown {
        font-size: .9rem;
        padding: 10px 5px 4px 5px;
    } */

    #navbar_shop {
        display: flex !important;
    }

    .navbar-brand {
        margin-right: 0;
        padding: 0;
        display: flex;
    }

    .main_data .single_collection.home {
        padding-top: 20px;
    }
    .reviews_media .d-flex {
        justify-content: center;
        padding-bottom: 30px;
    }
    .reviews_media a {
        width: 40%;
    }
    .main_data .single_collection.home div:nth-child(odd) .single_img,
    .main_data .single_collection.home div:nth-child(even) .single_img {
        text-align: center;
    }

    .main_data .single_collection.home .single_info h5 {
        line-height: 35px;
    }
    .main_data .bottom_banner {
        height: auto;
    }
    .selected_cover {
        width: 100%;
    }
    .selected_watch .flex_center.mobile {
        display: flex;
    }
    .selected_watch .column_flex.desktop {
        display: none;
    }
    .heading_space#price,
    .heading_space.text-decoration-line-through {
        font-size: 0.75rem;
    }
    #watch_build .wireframe {
        display: none;
    }
    #watch_build .wireframe.mob_wireframe {
        display: block;
    }
    .main_data .info_single {
        padding: 0 0 20px;
    }
    .main_data .single_info.cele {
        padding: 0 30px 20px 0 !important;
    }
    .characteristic.desktop {
        display: none;
    }
    .characteristic.mobile {
        display: block;
    }
    .about_page .left_gap .flex_center_between {
        gap: 15px;
    }
    .main_data .single_col_main .heading_large {
        line-height: 50px;
        font-size: 1.9rem;
    }
    .main_data.single h3,
    .about_page .half_div h3,
    .out_of_stock_selected h3,
    .selected_data h3 {
        line-height: 35px;
        font-size: 1.3rem;
    }
    .selected_char li {
        padding-bottom: 15px;
        line-height: 25px;
    }
    .single_info p {
        font-size: 1rem;
        line-height: 25px;
    }
    .home_banner.out_of_stock_selected .email_stock .button {
        min-height: 44px;
    }
    .about_page .text_section {
        margin-top: 15px;
    }
    .page.single {
        padding-top: 40px;
    }
    .about .button {
        min-width: 311px;
        max-width: 60%;
    }
    .left_gap .flex_center_between {
        padding: 20px 0;
    }
    .about_page .text_section h3 {
        font-size: 1.5rem;
        line-height: 38px;
    }
    .collection .collection_img {
        padding-bottom: 0;
    }
    .main_data .about {
        padding-top: 0;
    }
    .main_data .collections {
        padding-top: 0;
    }
    .home_banner.out_of_stock_selected .email_stock .button,
    .home_banner.out_of_stock_selected .email_stock input {
        height: 44px;
    }
    .slider-nav .slick-slide:last-child {
        margin-bottom: 0 !important;
    }
    .build .row:first-child {
        padding: 0 30px;
    }
    .overlay-content a.button {
        min-width: 100%;
        padding: 18px 0 10px;
        max-width: fit-content;
    }
    .error_box {
        bottom: auto;
        top: 10%;
        left: 30px;
    }
    .build .container:first-child,
    .build .slider .row,
    .build .build_watch1 .row,
    .build .slick-current .col-lg-4 {
        padding: 0;
    }
    .build_watch,
    .build_watch1 {
        display: none;
        position: relative;
        max-width: 100%;
    }
    .build_watch.mobile,
    .build_watch1.mobile {
        display: block;
    }
    .dialSelectionBox .thumbnail_img_div img {
        margin-left: 3px;
        width: 90%;
    }
    .thumbnail_img_div img {
        padding-top: 0;
        width: 85%;
        margin-top: 0;
    }
    .dial_select,
    .slider-nav .slick-slide {
        border: none;
    }
    .watch_cart .dark_bg .flex_center_between {
        gap: 0;
    }
    .watch_cart .dark_bg .bonus_div .flex_center_between {
        gap: 10px;
    }
    .item .edit img {
        margin-bottom: 0;
    }
    .watch_cart .col-lg-3 {
        padding-left: 11px;
    }
    .cart .flex_center_between {
        flex-wrap: wrap;
        gap: 20px !important;
    }
    .cart .flex_center_between:first-child {
        justify-content: center;
    }
    .collection_img img {
        width: 100%;
        height: 100%;
    }
    .watch_cart .col-lg-9 {
        padding-right: 11px;
    }
    .cart .item {
        padding-left: 10px;
        padding-right: 20px;
    }
    .footer .flex_start .flex_center_between {
        align-items: flex-start !important;
        margin-top: 0 !important;
    }
    .footer .column_flex .column_flex {
        flex-direction: column;
    }
    .flex_start.social_data {
        flex-direction: row;
        gap: 10px !important;
    }
    .footer .flex_start .flex_center_between .flex_start {
        gap: 10px;
    }
    .footer .column_flex .flex_center_between .column_flex {
        gap: 10px !important;
    }
    .watch_cart .dark_bg {
        max-width: 100%;
        height: auto;
        padding: 30px;
    }
    .bonus_input {
        padding-top: 10px;
    }
    .bonus_input::placeholder {
        font-size: 0.7rem !important;
    }
    .item .flex_center_between:nth-child(2) {
        gap: 20px;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
    }
    .item .flex_center_between,
    .item .flex_start_between {
        gap: 10px;
    }
    .watch_cart .dark_bg .column_flex_between .column_flex {
        flex-direction: column-reverse;
    }
    .item .price_edit .column_flex {
        flex-direction: row;
        gap: 20px;
    }
    .watch_cart .dark_bg .column_flex_between .column_flex .column_flex {
        flex-direction: column;
    }
    .item_info .column_flex .item_char .flex_center_between {
        gap: 25px !important;
    }
    /* .footer_logo, */
    /* .navbar-brand.footer_logo {
    width: 70%;
  } */
    .footer_logo,
    .overlay_landing .navbar-brand img {
        width: 25vw;
    }
    .overlay-content .slider {
        display: none;
    }
    .cart .line {
        display: none;
    }
    .cart .flex_start {
        flex-direction: column;
    }
    .item_info .column_flex .item_char.acc .flex_center_between {
        flex-wrap: wrap;
        gap: 10px !important;
    }
    .item_info
        .column_flex
        .item_char.acc
        .flex_center_between
        .column_flex.left {
        padding-left: 0;
    }
    .collection .collection_btn {
        align-items: center;
    }
    .slider-for .slick-slide img {
        width: 300px !important;
        height: 300px;
        padding-top: 0;
    }
    .slick-slide {
        height: auto;
    }
    /* .case_slide .strap img {
        width: 50% !important;
    } */
    .select_dial {
        padding-top: 0;
        padding: 0 30px;
    }
    .main_data.page .home_banner {
        flex-direction: column;
    }
    .page.main_data .home_banner .banner_data {
        margin-bottom: 20px;
    }
    .page.main_data .home_banner .banner_img {
        margin-top: 0px;
        position: relative;
        max-width: 100%;
        /* height: 55vh; */
        right: 0;
        overflow: visible;
        margin: 0 0 20px;
    }
    .banner_img .final_watch {
        position: relative;
        /* top: -40vh; */
        right: 0;
    }

    .final_watch img {
        width: 100%;
        height: 100%;
    }
    .pouch_image {
        position: relative;
        height: 50%;
        width: 50%;
        left: 25%;
    }
    .watch_cart .dark_bg .column_flex .checkout_method {
        margin-top: 0;
        margin-bottom: 0;
    }
    .magnify > .magnify-lens {
        width: 100px;
        height: 100px;
    }
    .glass {
        width: 120px;
        height: 120px;
    }
    .gallery_img {
        width: 130px;
        height: 130px;
    }
    .black_bar {
        display: none;
    }
    .build_watch1 .container {
        padding: 0;
    }
    .dark_bg .flex_center {
        flex-direction: revert;
        justify-content: center;
        width: 100%;
        gap: 40px;
    }
    #watch_build .dark_bg {
        height: auto;
        padding: 15px;
    }
    #watch_build .dark_bg .flex_center {
        /* flex-wrap: wrap; */
        justify-content: flex-start;
        overflow: hidden;
    }
    .build_watch {
        position: inherit;
    }
    .build_watch .flex_center_between {
        padding: 0;
    }
    .build_watch .button {
        position: absolute;
        bottom: -67px;
        width: 100%;
        /* border: none; */
    }
    /* .build_watch1 {
        bottom: 55px;
    } */
    .page.build {
        height: auto;
        /* padding-bottom: 110px; */
        /* min-height: 74vh; */
        overflow-y: auto;
        /* padding-bottom: 30px; */
    }
    .build_watch #next_confirm {
        bottom: 0;
        border-bottom: 1px solid var(--primary-text-color);
        left: 0;
        /* position: fixed;
        left: 0%;
        width: 100%;
        bottom: 0;
        background: var(--primary-text-color);
        color: var(--primary-bg-color);
        z-index: 1; */
    }
    .build_head .flex_end_between {
        flex-direction: row;
        gap: 10px;
        align-items: flex-start;
    }
    /* #exit_btn {
        top: 90px; */
    /* right: 80px;
        display: block;
        max-width: 70px;
        border-radius: 30px;
        min-height: 30px;
        height: 30px;
        font-size: 0.875rem;
        padding: 8px 15px 3px;
    } */
    .mobile_choose {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 30px 0 20px;
    }
    .mobile_choose p {
        padding-top: 5px;
        line-height: normal;
    }
    .mobile_choose #next_confirm {
        display: block;
        min-width: 70px;
        border-radius: 30px;
        min-height: 30px;
        font-size: 0.875rem;
        text-align: center;
        max-width: fit-content;
        padding: 10px 15px 0px;
        /* position: absolute;
        bottom: 240px;
        right: 20px;
        left: auto; */
    }
    .slider-choose {
        display: none;
    }
    .select_dial {
        height: auto;
    }
    .slider-select {
        /* min-height: 74vh; */
        height: auto;
    }
    .slider-nav .slick-track {
        padding-top: 10px;
        height: auto;
        padding-bottom: 10px;
    }
    .page.build#watch_build {
        min-height: 85vh;
    }
    .page #watch_slider {
        padding: 10px 0 30px 0;
        height: 63vh;
    }
    .page #watch_slider.select_watch {
        height: 70vh;
    }
    #watch_slider .flex_center {
        flex-direction: row;
        gap: 10px;
        height: 100%;
        align-items: center;
    }
    #watch_slider .wireframe img {
        width: 45vw;
        height: auto;
    }

    #watch_slider.select_watch .wireframe img {
        width: 45vw;
        height: auto;
    }

    #watch_slider .wireframe {
        width: auto;
    }
    .modal {
        padding-right: 0;
    }
    .modal-content .modal-body {
        padding: 0% 8% 5%;
    }
    .modal-body .modal_img {
        padding: 0 15%;
    }
    .modal-body .modal_img.main {
        width: 70%;
        margin: auto;
        padding-top: 0;
    }
    .modal-body .flex_start {
        flex-wrap: wrap;
        gap: 10px;
    }
    .modal-body .flex_start p {
        margin-bottom: -15px;
    }
    .modal-body .form-control,
    .modal-body button {
        max-width: 100%;
    }
}
@media screen and (min-width: 450px) and (max-width: 1000px) {
    .black_bar {
        display: none;
    }
    .selected_watch .flex_center.mobile {
        display: flex;
    }
    .selected_watch .column_flex.desktop {
        display: none;
    }
    #watch_slider .wireframe img {
        width: 45vw;
        height: auto;
    }
    #watch_slider .wireframe {
        width: auto;
    }
    #watch_build .wireframe {
        display: none;
    }
    #watch_build .wireframe.mob_wireframe {
        display: block;
    }
    .main_data .info_single {
        padding: 0 0 20px;
    }
    .main_data .single_info.cele {
        padding: 0 30px 20px 0 !important;
    }
    .characteristic.desktop {
        display: none;
    }
    .characteristic.mobile {
        display: block;
    }
    .about_page .left_gap .flex_center_between {
        gap: 10px;
    }
    .main_data .single_col_main .heading_large {
        line-height: 50px;
        font-size: 2rem;
    }
    .main_data.single h3,
    .about_page .half_div h3,
    .out_of_stock_selected h3,
    .selected_data h3 {
        line-height: 35px;
        font-size: 1.3rem;
    }
    .selected_char li {
        padding-bottom: 15px;
        line-height: 25px;
    }
    .home_banner.out_of_stock_selected .email_stock .button {
        min-height: 44px;
    }
    .single_info p {
        font-size: 1rem;
        line-height: 25px;
    }
    .about .button {
        min-width: 311px;
        max-width: 60%;
    }
    .main_data .collections {
        padding-top: 0;
    }
    .collection .collection_img {
        padding-bottom: 0;
    }
    .page.single {
        padding-top: 40px;
    }
    .about_page .text_section {
        margin-top: 15px;
    }
    .about_page .text_section h3 {
        font-size: 1.5rem;
        line-height: 38px;
    }
    .left_gap .flex_center_between {
        padding: 20px 0;
    }
    .main_data .about {
        padding-top: 0;
    }
    .home_banner.out_of_stock_selected .email_stock .button,
    .home_banner.out_of_stock_selected .email_stock input {
        height: 44px;
    }
    .slider-nav .slick-slide:last-child {
        margin-bottom: 0 !important;
    }
    .build .row:first-child {
        padding: 0 30px;
    }
    .error_box {
        bottom: auto;
        top: 10%;
        left: 30px;
    }
    .build .container:first-child,
    .build .slider .row,
    .build .build_watch1 .row,
    .build .slick-current .col-lg-4 {
        padding: 0;
    }
    .slider-nav .slick-track {
        height: auto;
    }
    .mobile_choose {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 30px 0 20px;
    }
    .mobile_choose p {
        padding-top: 5px;
        line-height: normal;
    }
    .mobile_choose #next_confirm {
        display: block;
        min-width: 70px;
        border-radius: 30px;
        min-height: 30px;
        font-size: 0.875rem;
        text-align: center;
        max-width: fit-content;
        padding: 10px 15px 0px;
        /* position: absolute;
        bottom: 300px;
        right: 20px;
        left: auto; */
    }
    .dialSelectionBox .thumbnail_img_div img {
        margin-left: 3px;
        width: 90%;
    }
    .thumbnail_img_div img {
        padding-top: 0;
        width: 85%;
        margin-top: 0;
    }
    .build_watch,
    .build_watch1 {
        display: none;
        position: relative;
        max-width: 100%;
    }
    .build_watch.mobile,
    .build_watch1.mobile {
        display: block;
    }
    .build_watch1 .container {
        padding: 0;
    }
    .dark_bg .flex_center {
        flex-direction: revert;
        justify-content: center;
        width: 100%;
    }
    .build_watch {
        position: inherit;
    }
    .build_watch .flex_center_between {
        padding: 0;
    }
    .build_watch .button {
        position: absolute;
        bottom: -67px;
        width: 100%;
        /* border: none; */
    }
    /* .build_watch1 {
        bottom: 55px;
    } */
    .page.build {
        /* padding-bottom: 110px; */
        min-height: 76vh;
        overflow-y: auto;
    }
    .build_watch #next_confirm {
        bottom: 0;
        border-bottom: 1px solid var(--primary-text-color);
        left: 0;
        /* position: fixed;
        left: 0%;
        width: 100%;
        bottom: 0;
        background: var(--primary-text-color);
        color: var(--primary-bg-color);
        z-index: 1; */
    }
    .build_head .flex_end_between {
        flex-direction: row;
        gap: 10px;
        align-items: flex-start;
    }
    /* #exit_btn {
        top: 26px;
        right: 80px;
        max-width: 70px;
        border-radius: 30px;
        min-height: 30px;
        height: 30px;
        font-size: 0.875rem;
        padding: 8px 15px 3px;
        display: block;
    } */
    .slider-choose {
        display: none;
    }
    /* .slider-select {
        height: 520px;
    } */
    .slider-choose {
        display: none;
    }
    /* .slider-select {
        height: auto;
    } */
    .dial_select,
    .slider-nav .slick-slide {
        border: none;
    }
    .slider-nav .slick-slide {
        gap: 20px;
    }
    .slider-for .slick-slide img,
    .wireframe img {
        width: 280px !important;
        height: 280px;
        padding-top: 0;
    }
    .wireframe img {
        margin-top: 0;
    }
    /* .build_watch1 .container {
        padding: 0;
    }
    .dark_bg .flex_center {
        flex-direction: revert;
        justify-content: center;
        width: 100%;
    }
    .build_watch {
        position: inherit;
        max-width: 100%;
    }
    .build_watch .button {
        position: absolute;
        bottom: 67px;
        width: 90%;
    }
    .build_watch1 {
        bottom: 135px;
    }
    .page.build {
        padding-bottom: 220px;
    }
    .build_watch #next_confirm {
        position: fixed;
        border-bottom: 1px solid var(--primary-text-color);
        left: 0%;
        width: 100%;
        bottom: 0;
        background: var(--primary-text-color);
        color: var(--primary-bg-color);
        z-index: 1;
    } */
    .desktop_card {
        display: none;
    }
    /* .page.build {
        height: auto;
    } */
    .item .edit img {
        margin-bottom: 0;
    }
    .cart .flex_center_between {
        flex-wrap: wrap;
        gap: 20px !important;
    }
    .cart .flex_center_between:first-child {
        justify-content: center;
    }
    .collection_img img {
        width: 100%;
        height: 100%;
    }
    .watch_cart .dark_bg .flex_center_between {
        gap: 0;
    }
    .watch_cart .dark_bg .bonus_div .flex_center_between {
        gap: 10px;
    }
    .watch_cart .col-lg-3 {
        padding-left: 11px;
    }
    .page_banner {
        background-position-y: bottom;
    }
    .watch_cart .col-lg-9 {
        padding-right: 11px;
    }
    .cart .item {
        padding-left: 10px;
        padding-right: 20px;
    }
    .footer_logo,
    .overlay_landing .navbar-brand img {
        width: 20vw;
    }
    .bonus_input {
        padding-top: 10px;
    }
    .bonus_input::placeholder {
        font-size: 1rem !important;
    }
    .watch_cart .dark_bg {
        max-width: 100%;
        height: auto;
        padding: 30px;
        min-height: auto;
    }
    .footer .flex_start .flex_center_between {
        flex-direction: column;
    }
    .item .flex_center_between:nth-child(2) {
        gap: 20px;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }
    .item .flex_center_between,
    .item .flex_start_between {
        gap: 10px;
    }
    .watch_cart .dark_bg .column_flex_between .column_flex {
        flex-direction: column-reverse;
    }
    .item .price_edit .column_flex {
        flex-direction: row;
    }
    .watch_cart .dark_bg .column_flex_between .column_flex .column_flex {
        flex-direction: column;
    }
    .item_info .column_flex .item_char .flex_center_between {
        gap: 25px !important;
    }
    .main_data .bottom_banner {
        height: auto;
    }
    .mobile_card {
        display: block;
    }
    .main_data.page .home_banner {
        flex-direction: column;
    }
    .page.main_data .home_banner .banner_data {
        margin-bottom: 0;
    }
    .page.main_data .home_banner .banner_img {
        margin-top: 20px;
        position: relative;
        max-width: 100%;
        /* height: 65vh; */
        right: 0;
        overflow: visible;
        margin-bottom: 10%;
    }
    .banner_img .final_watch {
        position: relative;
    }

    .slider-for img {
        width: auto;
    }
    .slider-choose {
        width: 100% !important;
        /* position: absolute; */
        /* top: 675px; */
        max-width: 100% !important;
        z-index: 100;
    }
    .slider-select .slick-track .slick-slide {
        margin: 0;
    }
    .select_dial {
        padding: 0 30px;
        margin-bottom: 0;
        /* height: 569px; */
        height: auto;
    }
    .footer .button {
        max-width: 100%;
    }
    /* .footer_logo {
    width: 50%;
  } */
    /* .navbar-brand.footer_logo {
    width: 40%;
  } */
    .overlay-content .slider {
        display: none;
    }
    .collection .collection_btn {
        align-items: center;
    }
    .pouch_image {
        position: relative;
        height: 50%;
        width: 50%;
        left: 25%;
    }
    .final_watch img {
        width: 500px;
        height: 500px;
    }
    .banner_img .final_watch {
        /* top: -68vh; */
        right: 0;
        justify-content: center;
    }
    .final_watch .selected_dial img {
        width: 500px;
    }
    .watch_cart .dark_bg .column_flex .checkout_method {
        margin: 0;
        margin-left: -10px;
    }
    .page.build#watch_build {
        min-height: 85vh;
    }
    .page #watch_slider {
        padding: 30px 0;
        height: 63vh;
    }
    #watch_slider .flex_center {
        flex-direction: row;
        gap: 10px;
        height: 100%;
        align-items: center;
    }
    #watch_slider.select_watch .wireframe img {
        width: 25vw !important;
        height: auto;
    }
    
    .modal {
        padding-right: 0;
    }
    .modal-content .modal-body {
        padding: 0% 8% 5%;
    }
    .modal-body .modal_img {
        padding: 0 15%;
    }
    .modal-body .modal_img.main {
        width: 70%;
        margin: auto;
        padding-top: 0;
    }
    .modal-body .flex_start {
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px 0 !important;
    }
    .modal-body .flex_start p {
        margin-bottom: -15px;
    }
    .modal-body .form-control,
    .modal-body button {
        max-width: 100%;
    }
}
@media screen and (min-width: 560px) and (max-width: 1000px) {
    .card .heading_small {
        font-size: 1.5rem;
    }
    .main_data .collections .flex_center {
        align-items: center;
    }
    .pouch_image {
        position: absolute;
        top: 46%;
        height: 50%;
        width: auto;
        right: 10%;
        left: auto;
    }
    .item .edit img {
        margin-bottom: -20px;
    }
    .slider-nav .slick-track {
        padding-top: 20px;
    }
    .footer .flex_end_between {
        flex-direction: row;
        align-items: flex-end;
    }
    /* .case_dial img,
    .dial_slide img {
        width: auto !important;
        padding-top: 0 !important;
    } */
    /* .wireframe img {
        width: 650px !important;
    } */
    .slider-for .slick-slide img,
    .wireframe img {
        width: 520px !important;
        height: 520px;
        padding-top: 0;
    }
    .wireframe img {
        margin-top: 0;
    }
    .cart_icon_nav img {
        margin-top: 0;
    }
    .cele_strap .strap img,
    .case_slide .strap img {
        width: auto;
    }
    .watch img {
        width: 45%;
    }
    /* .slider-nav .slick-slide {
        gap: 0;
    } */
    .build_watch2 .button,
    .build_watch .button {
        max-width: 100%;
    }
    .build_watch2 .dark_bg .flex_center {
        gap: 60px;
    }
    .page_data .main_data {
        /* height: 100%; */
        padding-top: 40px;
    }
    .page.build {
        /* padding-bottom: 110px; */
        min-height: 85vh;
        overflow-y: auto;
        padding-top: 25px;
    }
    /* .slider-for .slick-slide img {
        width: auto !important;
        margin-top: 0;
    } */
    /* margin-top: 0 !important; */
    /* .slider-for .slick-slide .dial_in_strap_box img {
        width: auto !important;
    } */
    /* .slider-nav .slick-slide img {
        padding-top: 20px !important;
    } */
}
@media screen and (min-width: 630px) and (max-width: 1000px) {
    .item .flex_start_between {
        flex-direction: row;
    }
    .item .flex_center_between:first-child {
        gap: 20px;
    }
    /* .overlay_landing .navbar-brand img {
        width: 130px;
    } */
    /* .overlay_landing .landing_data {
        max-width: 400px;
    } */
    .item .column_flex {
        gap: 30px;
    }
    .item_info .column_flex .item_char .flex_center_between {
        gap: 40px !important;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .cart .flex_center_between {
        flex-wrap: nowrap;
    }
    .cart .item {
        padding-left: 0;
    }
    .cover_cart {
        margin-right: 30px;
    }
    .item .price_edit .column_flex {
        flex-direction: column;
        align-items: flex-end;
    }
    .item .flex_center_between:nth-child(2) {
        align-items: baseline;
        width: auto;
    }
    .main_data.home .home_banner .banner_img {
        height: 75vh;
    }
    .main_data.home .banner_data {
        margin-top: 77vh;
    }
    .main_data .single_collection.home {
        padding-top: 20px;
    }
    .main_data.home .bottom_banner .banner_data {
        margin-top: 0;
    }
    .page_data .main_data.home {
        padding-top: 20px;
    }
    .footer_logo,
    .overlay_landing .navbar-brand img {
        width: 15vw;
    }
    .footer .flex_start .flex_center_between {
        flex-direction: row;
        align-items: flex-start !important;
        margin-top: 0 !important;
    }
    .flex_start.social_data {
        flex-direction: row;
    }
    /* .select_dial {
        height: 600px;
    } */
    .selected_watch .selected_data {
        padding-top: 40px;
    }
    .page.main_data .home_banner .banner_img {
        height: 700px;
    }
    .final_watch img {
        width: 700px;
        height: 700px;
    }
    .banner_img .final_watch {
        /* top: -68vh; */
        right: 0;
        justify-content: center;
    }
    .final_watch .selected_dial img {
        width: 700px;
    }
    .page.main_data .home_banner .banner_data {
        margin-bottom: 70px;
    }
    /* .select_dial {
        padding-top: 0;
    } */
    /* .wireframe img {
        width: 650px !important;
    } */
    .pouch_image {
        top: 30%;
        height: 60%;
    }
    /* .slider-select .slick-track .slick-slide {
    padding: 0 40px;
  }
  .slider-select .slick-track .slick-slide.slick-active {
    padding: 0;
  }
  .slider-select .slick-track .slider-for .slick-slide {
    padding: 0;
  } */
}

@media screen and (min-width: 1000px) and (max-width: 1279px) {
    html {
        font-size: 15px;
    }
    .selected_watch .flex_center.mobile {
        display: none;
    }
    .selected_watch .column_flex.desktop {
        display: block;
    }
    /* .build_head #exit_btn {
        display: none;
    }
    #exit_btn {
        display: block;
        display: flex;
    } */
    .thumbnail_img_div img {
        width: 70px !important;
    }
    .page.build {
        height: 82vh;
    }
    .container {
        margin: auto;
    }
    .landing_data h2 {
        padding-bottom: 5px;
        line-height: 60px;
    }
    .landing_data h6 {
        padding-bottom: 20px;
    }
    /* .overlay_landing .landing_data {
        padding-top: 50px;
    } */
    .reset.account .flex_center .column_flex {
        width: 444px;
    }
    .item .price_edit .column_flex {
        align-items: flex-end;
    }
    .reset.account .form_area .flex_center_between {
        gap: 50px;
    }
    .cart .item {
        padding-left: 0;
    }
    .reset.account .flex_center .column_flex .small_heading {
        margin-left: 30%;
    }
    .reset.account .form_area .button {
        max-width: 290px;
        margin-left: 30%;
    }
    .footer .flex_start .flex_center_between {
        flex-direction: row;
    }
    .flex_center_between,
    .flex_start_between,
    .flex_end_between,
    .flex_center,
    .selected_watch .selected_char .flex_center_between {
        flex-direction: row;
    }

    .collection .collection_btn {
        align-items: flex-start;
    }
    .desktop_card {
        display: block;
    }
    .mobile_card {
        display: none;
    }
    /* .selected_watch .flex_center_between {
    flex-direction: column;
  } */
    .main_data .banner_data {
        height: 100%;
        width: 50%;
        padding-top: 12%;
        margin-top: 0;
    }
    .main_data .home_banner .banner_img {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -100;
        height: 100vh;
        /* height: 75vh; */
    }
    .page.main_data .home_banner .banner_img {
        width: 85%;
    }
    .main_data .home_banner .banner_img .main_data .home_banner {
        height: 88vh;
        position: static;
    }
    .main_data .home_banner {
        height: 88vh;
    }
    .main_data .home_banner .banner_img {
        max-width: 53%;
        right: -30px;
        top: -80px;
    }
    /* .main_data .bottom_banner {
    height: 643px;
  } */
    .main_data .bottom_banner .banner_img {
        position: absolute;
        right: -30px;
        top: 0;
    }
    .collection .collection_info {
        min-height: 500px;
    }
    .collection .collection_info li {
        padding-bottom: 20px;
    }
    .home .button {
        min-width: 311px;
    }
    .page.main_data .home_banner .banner_data {
        margin-bottom: 0;
        padding-top: 12%;
    }
    .selected_watch {
        padding-top: 100px;
    }
    .selected_char img {
        transform: none;
        width: auto;
    }
    .selected_char .column_flex {
        margin-top: -65px;
    }
    /* min-height: 74vh; */
    /* margin-top: 0;
min-height: auto;
max-width: 100%; */
    /* margin-left: 0; */
    .dial_select {
        max-width: 300px;
        min-height: 77vh !important;
        margin-bottom: 0;
        /* border-top: none; */
        overflow: auto;
        padding: 0;
    }
    /* .black_bar, .build_watch1 {
        bottom: 4px;
    } */
    /* .build_watch {
        position: absolute;
    } */
    .selected_data h3 {
        width: 77%;
    }
    .selected_data .button {
        max-width: 350px;
    }
    .main_data .build_watch2 {
        /* background: var(--primary-text-color); */
        position: absolute;
        /* bottom: 0; */
        /* max-width: 86%; */
    }
    /* .build_watch2 .container { */
    /* padding-left: 30px; */
    /* margin: 0 139px; */
    /* } */
    .build_watch2 .flex_center_between,
    .build_watch .flex_center_between {
        padding: 0;
    }
    .slider-choose {
        /* max-width: 84.5vw; */
        /* width: 100% !important; */
        /* position: relative;
        margin-left: 0; */
        max-width: 300px !important;
    }
    .build_watch {
        position: absolute;
    }
    .build_watch .button {
        max-width: 300px;
    }
    .footer .column_flex .column_flex {
        flex-direction: column;
    }
    .footer .column_flex:first-child {
        width: 30%;
    }
    /* .footer .button {
        min-width: 311px;
    } */
    .footer .flex_start {
        flex-direction: row;
    }
    .footer_logo,
    .overlay_landing .navbar-brand img {
        width: 12vw;
    }
    .select_dial {
        height: auto;
        margin-bottom: auto;
        padding: 0;
    }
    .main_data .build_watch2 {
        background: var(--primary-text-color);
        width: 97vw;
    }
    .build_watch2 .button {
        margin-left: 11px;
    }
    .slider-nav .slick-slide {
        width: 50% !important;
        justify-content: flex-start;
    }
    .slider-nav .slick-slide:last-child,
    .slider-nav .slick-slide:nth-last-child(2):nth-child(2n + 1) {
        border-bottom: 1px solid var(--grey-text-color);
    }
    .dial_slide img {
        padding-top: 0;
        width: auto;
    }
    .main_data.page .home_banner .banner_img {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -100;
        width: 100%;
        height: 100vh;
    }
    .final_watch {
        right: 10%;
    }
    .final_watch img {
        width: 500px;
        height: 500px;
    }
    .cart_icon {
        display: none;
    }
    #cart_summary {
        display: block;
        position: relative;
        border: none;
        padding: 0;
        border-radius: 0;
        height: 78vh;
    }
    .summary_cart {
        border-radius: 0;
    }
    /* .main_data .card .card-img-overlay {
        top: 55%;
    } */
    /* .main_data .card .card-title {
        width: 70%;
    } */
    .slider-for .slick-slide img,
    .wireframe img {
        width: 350px !important;
        height: 350px;
        /* margin-top: -9%; */
    }
    .pouch_image {
        right: 5%;
    }
    .slider-nav .slick-track {
        flex-wrap: wrap;
        max-height: 55vh;
        /* height: 46vh; */
    }
    .dial_select .slider-nav .thumbnail_img_div {
        border: none;
        height: 96px;
        width: 96px;
    }
    /* .thumbnail_img_div img {
        width: 100px;
    } */
    .main_data .home_banner.out_of_stock_selected .banner_data {
        padding-top: 1%;
        width: 60%;
    }
    .main_data .home_banner.out_of_stock_selected .final_watch {
        right: 0;
    }
}
@media screen and (min-width: 1280px) {
    .dial_select {
        min-height: 93vh;
    }
    .selected_watch .flex_center.mobile {
        display: none;
    }
    .selected_watch .column_flex.desktop {
        display: block;
    }
    .black_bar.mobile {
        display: none;
    }
    /* .build_head #exit_btn {
        display: none;
    }
    #exit_btn {
        display: block;
        display: flex;
    } */
    .slider-for .slick-slide img,
    .wireframe img {
        width: 450px;
        height: 450px;
    }
    .pouch_image {
        right: 5%;
    }
    .page.build {
        height: 80vh;
    }
    /* .slider-nav .slick-track {
        max-height: 54vh;
    } */
    .home .anim .container {
        margin: 0 110px;
    }
}
@media screen and (min-width: 1400px) {
    .main_data.page .home_banner .banner_img {
        max-width: 65vw;
    }
    .home .anim .container {
        margin: auto;
    }
    .pouch_image {
        right: 10%;
    }
    .main_data .home_banner.out_of_stock_selected .banner_data {
        width: 53%;
        padding-top: 5%;
    }
    .overlay_landing .landing_data {
        padding-top: 35%;
    }
    /* .wireframe img,
    .slider-for .slick-track {
        margin-top: -6%;
    } */
    .banner_img .final_watch {
        /* top: -80%; */
    }
    .dial_select {
        min-height: 73vh;
    }
    /* .slider-for .slick-slide img,
    .wireframe img {
        width: 600px;
        height: 600px;
    } */
    /* .slider-nav .slick-track {
        max-height: 57vh;
    } */
}
@media screen and (min-width: 1500px) {
    html {
        font-size: 18px;
    }
    .collection .collection_data {
        min-height: 300px;
    }
    .main_data .order_summary {
        max-width: 380px;
    }
    /* .overlay_landing .landing_data {
        max-width: 405px;
    } */
    /* .overlay_landing .navbar-brand img {
        width: 135px;
    } */
    .curtain_img img {
        width: 90%;
    }
    .landing_data h2 {
        line-height: 75px;
    }
    .landing_data h6 {
        max-width: 345px;
    }
    .main_data .card {
        height: auto;
        max-width: 100%;
    }
    /* .slider-nav .slick-track {
        max-height: 57vh;
    } */
    /* .main_data .card-img img {
    width: 100%;
    height: 100%;
  } */
    .main_data .card .button {
        padding-top: 18px;
        max-width: 240px;
    }
    .home .button,
    .home_banner .flex_center_between .button,
    .selected_data .button {
        min-width: 350px;
    }
    .home_banner.out_of_stock_selected .flex_center_between .button {
        min-width: 438px;
    }
    .collection .collection_btn .button {
        min-width: 350px;
    }
    .container {
        margin: auto;
    }
    .main_data .single_img img,
    .main_data .start .single_img.cele_i img {
        width: 100%;
    }
    .main_data .single_img .first_img {
        width: 50%;
    }
    .main_data .start .single_img img {
        width: auto;
    }
    .main_data .single_img.text-center img {
        width: 100%;
    }
    .main_data .start {
        align-items: center;
    }
    .left_gap {
        position: relative;
    }
    .main_data .text_section {
        margin-top: 140px;
    }
    .about_page .text_section {
        margin-top: 50px;
    }
    .main_data .single_col_main {
        max-width: 950px;
    }
    .main_data .single_col_main .heading_large {
        line-height: 75px;
        font-size: 3.2rem;
    }
    /* .main_data.single h3, */
    .selected_data h3,
    .about_page h3 {
        line-height: 60px;
    }
    .main_data .selected_data {
        width: 45%;
    }
    /* .button {
    max-width: 331px !important;
  } */
    .single_collection .button {
        max-width: 545px !important;
    }
    .build_watch2 .button {
        max-width: 358px !important;
        margin-left: 6px;
    }
    .form_area .button,
    .success .button {
        max-width: 444px !important;
    }
    /* .left_gap .container {
    margin: auto;
    margin-right: 0;
  } */
    /* .bottom_banner .banner_data {
    margin-left: -130px;
  } */

  .main_data.page.build .row > div {
    position: unset;
  }

    .left img {
        width: 100%;
    }
    .main_data .build_watch2 {
        width: 82vw;
    }
    /* .build_watch2 .container {
    margin: 0 139px;
    padding-left: 35px;
  } */
    .dial_select {
        min-height: 79vh;
    }
    .single_collection .button {
        padding-top: 18px;
        padding-bottom: 11px;
    }
    /* .footer_logo, */
    /* .navbar-brand.footer_logo {
    width: 20%;
  } */
    .main_data .card-img img {
        width: 100%;
        height: 100%;
    }
    .main_data.home .home_banner .banner_img {
        max-width: 53%;
    }
    .main_data.page .home_banner .banner_img {
        max-width: 65vw;
    }
    .banner_img .final_watch {
        /* top: -80%; */
    }
    /* .main_data .card .card-title {
        width: 70%;
    } */
    .card .heading_small {
        line-height: 50px;
    }
    .reset .column_flex {
        width: 550px;
    }
    .form-control,
    .form_area .button,
    .form_area {
        max-width: 550px !important;
    }
    .newsletter_form .form-control {
        max-width: 300px !important;
    }
    .reset.account .form_area .button {
        max-width: 350px !important;
    }
    .main_data .privacy {
        min-height: 47.5vh;
    }
    /* .footer .button {
        min-width: 350px;
    } */
    .footer .inter {
        min-width: 225px;
    }
    .build_watch2 .container {
        margin: 0 8.9vw;
    }
    .item_info .column_flex .item_char.acc .flex_center_between {
        gap: 70px !important;
    }
    .overlay-content a.button {
        min-width: 380px;
    }
    .div_outline {
        padding-top: 25px;
    }
    .final_watch {
        right: -5%;
    }
    /* .final_watch img {
        width: 800px;
        height: 800px;
    } */
    .main_data .home_banner.out_of_stock_selected .banner_data {
        padding-top: 0%;
    }
    .pouch_image {
        height: 70%;
    }
    /* .slider-for .slick-track {
        margin-top: 0;
    }
    .wireframe img {
        margin-top: 0;
    } */
}
@media screen and (min-width: 1536px) and (max-width: 1600px) {
    .build_watch2 .button {
        margin-left: 12px;
    }
}
@media screen and (min-width: 1537px) {
    .main_data .home_banner.out_of_stock_selected .banner_data {
        padding-top: 5%;
    }
}
@media screen and (min-width: 1800px) {
    html {
        font-size: 19px;
    }
    .overlay_landing .landing_data {
        padding-top: 40%;
    }
    .main_data .home_banner.out_of_stock_selected .banner_data {
        padding-top: 10%;
        width: 60%;
    }
    /* .overlay_landing .landing_data {
        max-width: 430px;
    } */
    /* .overlay_landing .navbar-brand img {
        width: 155px;
    } */
    /* .navbar-brand img {
    width: 350px;
  } */
    .main_data .single_col_main {
        max-width: 90%;
    }
    .single .container:first-child {
        margin: 0 250px;
    }
    /* .div_outline {
    height: 64px;
  } */
    .main_data .flex_center_between:nth-child(2n-2) .single_info,
    .main_data
        .single_collection
        .column_flex
        .flex_center_between
        .single_info {
        padding-left: 200px;
    }

    .main_data .selected_data {
        width: 48%;
    }
    .main_data .build_watch2 {
        width: 69vw;
    }
    /* .build_watch2 .container {
    margin: 0 287px;
  } */
    /* .bottom_banner .banner_data {
    margin-left: -285px;
  } */
    .main_data.home .home_banner .banner_img {
        width: 55%;
    }
    .main_data.page .home_banner .banner_img {
        max-width: 62vw;
    }
    .banner_img .final_watch {
        /* top: -60%; */
    }
    .main_data .privacy {
        min-height: 58.3vh;
    }
    .footer .inter {
        min-width: 235px;
    }
    .build_watch2 .container {
        margin: 0 15.4vw;
    }
    .collection .collection_data {
        min-height: 320px;
    }
    .main_data .single_img.text-center img {
        width: 90%;
    }
    .final_watch {
        right: 0%;
    }
    .final_watch img {
        width: 900px;
        height: 900px;
    }
    .pouch_image {
        height: 85%;
        top: 0;
    }
    .build_watch2 .button {
        margin-left: 3px;
    }
    .black_bar {
        width: 70%;
    }
    /* .wireframe img, 
    .slider-for .slick-track {
        margin-top: 2%;
    } */
    .slider-for .slick-slide img,
    .wireframe img {
        width: 700px;
        height: 700px;
    }
}

@media screen and (min-width: 2200px) {
    html {
        font-size: 20px;
    }
    .collection .collection_data {
        min-height: 355px;
    }
    /* .overlay_landing .landing_data {
        max-width: 450px;
    } */
    /* .overlay_landing .navbar-brand img {
        width: 190px;
    } */
    .main_data .single_col_main .heading_large {
        line-height: 90px;
    }
    .main_data.home .banner_data {
        padding-top: 20%;
    }
    .main_data.home .bottom_banner .banner_data {
        padding-top: 12%;
    }
    .main_data.home .home_banner .banner_img {
        width: 50%;
    }
    .main_data.page .home_banner .banner_img {
        max-width: 70vw;
    }
    .banner_img .final_watch {
        /* top: -88%; */
    }
    /* .final_watch .selected_dial {
        top: 0%;
        right: 0%;
        width: 64vw;
    } */
    .main_data .home_banner.out_of_stock_selected .banner_data {
        padding-top: 10%;
    }
    .main_data .selected_data {
        width: 53%;
    }
    .main_data .build_watch2 {
        width: 73vw;
    }
    .build_watch2 .container {
        margin: 0 24.3vw;
    }
    /* .navbar-brand {
        width: 20%;
    } */
    /* .build_watch2 .container {
    margin: 0 617px;
  } */

    /* .bottom_banner .banner_data {
    margin-left: -615px;
  } */
    .overlay-content .flex_center_between .column_flex {
        width: 500px;
    }
    .form_area .button {
        padding-top: 22px;
    }
    .button,
    .home .button {
        min-width: 360px;
    }
    .home_banner.out_of_stock_selected .email_stock .button {
        min-width: 150px;
    }
    .build_watch .button {
        min-width: 358px;
    }
    .watch_cart .dark_bg .button {
        max-width: 100%;
    }
    .main_data .privacy {
        min-height: 65.3vh;
    }
    .footer_logo,
    .overlay_landing .navbar-brand img {
        width: 7vw;
    }
    .footer .inter {
        min-width: 250px;
    }
    .main_data .single_img.text-center img {
        width: 70%;
    }
    .final_watch {
        right: 0;
    }
    .final_watch img {
        width: 1100px;
        height: 1100px;
    }
    .pouch_image {
        height: 95%;
    }
    .build_watch2 .button {
        margin-left: -4px;
    }
    .watch_cart .dark_bg .column_flex {
        gap: 20px;
    }
    .watch_cart .dark_bg {
        max-width: 100%;
    }
    .watch_cart .dark_bg .button {
        min-width: 300px;
        max-width: 300px;
    }
    .black_bar {
        width: 65%;
    }
    .slider-for .slick-track {
        margin-top: 2%;
    }
    .wireframe img {
        margin-top: 12%;
    }
}
