/*
#######################   GENERAL FOR ALL ###############################
*/

:root {
  --wj-color-blue: #04adef;
  --wj-color-grey: #e4e4e4;
  --wj-color-light-grey: #f1f1f1;
  --wj-color-red: #c40000;
  --wj-color-dark-red: #930000;
  --wj-color-maroon: #610000;
  --wj-color-green: #00791a;
  --wj-color-yellow: #ffc300; /* A bright yellow for contrast */
}

.wj-blue {
  background-color: var(--wj-color-blue);
  color: #fff;
}

.wj-grey {
  background-color: var(--wj-color-grey);
  color: #000;
}

.wj-light-grey {
  background-color: var(--wj-color-light-grey);
  color: #000;
}

html,
body {
  height: 100%;
}

.displayBlock {
  display: block;
}

.displayNone {
  display: none;
}

.displayInline {
  display: inline;
}

.displayInlineBlock {
  display: inline-block;
}
.displayFlex {
  display: flex;
}
.noUnderLineLink {
  text-decoration: none;
}

#addNewAddressSpan {
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.centerElement {
  margin: 0 auto;
}

#dimScreen {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0);
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; /* Just to keep it at the very top */
}
#loaderDiv {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

#itemAddedToCart {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  background-color: none;
}

#itemAddedToCart > div {
  width: 50%;
  min-width: 350px;
  max-width: 370px;
  height: auto;
  max-height: 350px;
  background-color: white;
  z-index: 201;
  text-align: center;
}

.loader {
  border: 16px solid white;
  border-radius: 50%;
  border-top: 13px solid var(--wj-color-blue);
  border-right: 13px solid white;
  border-bottom: 13px solid var(--wj-color-blue);
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 201; /* Just to keep it at the very top */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wj-word-wrap {
  word-wrap: break-word;
}

/*
#######################   HEADRER SECTION ###############################
*/

#headerMainDiv {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
}

#headerRightDiv {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 4px;
  justify-items: end;
  justify-content: end;
  align-items: center;
}

#headerLogoDiv_icon {
  width: 70px;
}

#headerLogoDiv_text {
  width: 200px;
}

#headerLogoDiv_1999 {
  width: 90px;
  margin-left: 200px;
  margin-top: -5px;
  font-family: "Cabin", cursive;
  font-weight: normal;
  font-size: 17px;
}

#menuSmallScreen {
  display: none;
}

#menuBigScreen {
  display: block;
}

#myshoppingCartDiv {
  margin-right: 21px;
}

.nav {
  position: relative;
  width: 100%;
  box-shadow: 0 0 10px var(--wj-color-grey);
}

.nav a {
  text-decoration: none;
}

.nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 2rem;
}

.nav_listItem {
  list-style: none;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
}

.nav_listItem::after {
  content: "";
  width: 0;
  height: 0.3rem;
  border-radius: 2px;
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  background-color: var(--wj-color-blue);
  transition: width 200ms ease-in;
}

.nav_listItem:hover::after,
.nav_listItem:focus::after {
  width: 80%;
}

.nav_listItem:hover ul,
.nav_listItem:focus ul {
  opacity: 1;
  visibility: visible;
}

.nav_list_drop_menu {
  position: absolute;
  z-index: 3;
  top: 4rem;
  left: -1rem;
  box-shadow: 0 0 10px var(--wj-color-grey);
  background-color: white;
  border-radius: 2px;
  width: 31rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in-out;
  text-transform: capitalize;
}

.nav_list_drop_menu li {
  list-style: none;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: background-color 200ms ease-in-out;
}

.nav_list_drop_menu .cat_main {
  margin-left: 0px;
}

.nav_list_drop_menu .cat_sub {
  margin-left: 11px;
}

.nav_list_drop_menu li:hover,
.nav_list_drop_menu li:focus {
  background-color: var(--wj-color-blue);
  color: #fff;
}

/*
#######################   LOGIN SECTION ###############################
*/

.accountDiv {
  z-index: 101; /* Just to keep it at the very top */
  position: fixed;
  width: auto;
  height: auto;
  /* max-width: 98vw;
  max-height: 98vh; */
  left: 50%;
  top: 10px;
  transform: translatex(-50%);
  padding: 15px;
  text-align: center;
}

.accountDiv label {
  display: inline-block;
  width: 200px;
  text-align: right;
  padding-right: 10px;
}

.headerRightDivPopUp {
  background-color: white;
  width: 200px;
  border: 1px solid black;
  position: absolute;
  padding: 13px;
  top: 27px;
  right: 0px;
  margin-top: 5px;
  border-radius: 7px;
  z-index: 3;
}

/*
#######################   PHOTO GALLERY SECTION ###############################
*/

#photos {
  /* Prevent vertical gaps */
  line-height: 0;

  -webkit-column-count: 4;
  -webkit-column-gap: 0px;
  -moz-column-count: 4;
  -moz-column-gap: 0px;
  column-count: 4;
  column-gap: 30px;
}

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  margin-bottom: 30px;
}

@media (max-width: 1200px) {
  #photos {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 1000px) {
  #photos {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 800px) {
  #photos {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
@media (max-width: 400px) {
  #photos {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

/*
  #######################   main CAT page ###############################
*/

.main_cat_div {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: space-between;
  align-items: center;
  background-color: var(--wj-color-light-grey);
  padding-right: 10px;
}

.main_cat_span_1 {
  justify-self: start;
  font-size: 1.5em;
  text-decoration: none;
}

.main_cat_span_2 {
  justify-self: end;
  background-color: white;
  padding: 0 10px;
  border: 2px solid white;
  border-radius: 25px;
}

.main_cat_span_1 a:hover,
.main_cat_span_1 a:visited,
.main_cat_span_1 a:link,
.main_cat_span_1 a:active {
  text-decoration: none;
}

.main_cat_span_1::first-letter {
  font-size: 1.7em;
  font-weight: bolder;
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 20%;
}

/*
  #######################   Products of ONE CAT SECTION ###############################
*/

.productsGrid {
  display: flex;
  gap: 20px;
  flex-flow: row wrap;
  justify-content: space-between;
}

.productItem_coloring_type_1 {
  flex-basis: 250px;
  flex-shrink: 0;
  text-align: center;
  flex-direction: column;
  align-content: space-between;
}

.productItem {
  width: 160px;
  display: flex;
  flex-shrink: 0;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
}

.regularPrice {
  font-size: 0.7em;
  opacity: 0.5;
}

.striked {
  text-decoration: line-through;
}

.discount_promo_span {
  font-size: 0.8em;
  opacity: 1;
}

.paidPrice {
}

.productCategory_BuildYourJacketBtn {
  font-size: 21px;
  font-weight: 400;
}

.product_modal_main {
  padding: 5px 13px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 11px;
  justify-items: start;
}

.product_modal_main .modal_image {
}

.product_modal_main .modal_data {
}

.productCatPage_CatName {
  font-size: 27px;
}

.preDesigned {
  text-align: center;
  margin: 0 auto;
  border: 1px solid #e2e2e2;
  width: 90%;
}

/*
  ######################################################################################################## 

                                          product-page 

  #########################################################################################################
*/

.numbertext,
.prev,
.next,
.scrollerDiv {
  display: none;
}
.imgSpan {
  display: none;
}

.mySlides {
  display: inline-block;
}

#productPage_mainContainer {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 11px;
  justify-items: start;
}

#imagesSection_BIGScreen {
  display: block;
  width: 100%;
  max-width: 1050px;
}

#productDetailsSection {
}

#imagesDiv_BIGScreen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 7px;
}

#imagesSection_BIGScreen img {
  width: 100%;
}

#imagesSectionSmallScreen {
  display: none;
}

.productPage_productName {
  font-size: 23px;
}

.productPage_buildYourJacketBtn {
  font-size: 23px;
  font-weight: 800;
}

.asIsProductDiv {
  margin: 10px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 17px;
}

/*
  #######################   Shopping Cart Page and after & UDesignIT ###############################
*/

.shoppingCartRow {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  margin-top: 10px;
}

.shoppingCartRowItem {
}

div.SCItemChangesLink:hover {
  background: var(--wj-color-light-grey);
}

.productImagesContainer {
  display: grid;
  grid-template-columns: 180px 180px;
  align-content: start;
  align-items: start;
}
.itemDetailsDiv {
  grid-column: 1/3;
}

.edit_delete_div,
.enlargeImagesDiv {
  grid-column: 1/3;
  justify-self: center;
}

.deleteItemBtn {
  cursor: pointer;
}

.cursorPointer {
  cursor: pointer;
}

.editItemBtn {
  cursor: pointer;
  grid-column: 1/3;
  /* justify-self: center; */
}

.decorationDetailsShowDiv div {
  font-size: 0.8em;
  margin-left: 23px;
}

.deleteSize {
  cursor: pointer;
  margin-left: 30px;
}

.sizeIntroDiv {
  margin-bottom: 10px;
}

.uplaodedImagesOuterContainerDiv {
  padding: 10px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.uploadedImageDiv {
  margin-bottom: 10px;
}

.uploadedImagesInnerContainerDiv {
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-items: start;
  align-items: center;
}

.cartItem {
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-items: start;
  align-items: center;
  margin-bottom: 13px;
}

.cartItemAlignStart {
}

.cartItemAlignCenter {
}

.sideNameSC {
  text-decoration: underline;
}

.identItem11 {
  margin-left: 11px;
}

.keySpan_valueSpan_class {
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 10px;
  justify-items: start;
  align-items: center;
}

.keySpan_valueSpan_class .keySpan {
  justify-self: end;
  text-align: right;
}

.keySpan_valueSpan_class .valueSpan {
  width: 100%;
}

.clientType {
  cursor: pointer;
}

.individualAddress {
  margin: 20px 50px;
}

#savedAddressesDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*####################################  FOOTER SECTION  #####################################*/

.footerMainContainer {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  justify-items: center;
  align-items: start;
  justify-content: space-between;
  text-align: left;
  margin: 10px 0;
}

.footerMainContainer h3 {
  font-weight: bold;
}

/*
  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################

                @media (max-width: 1200px)
  
  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################
  */

@media (max-width: 1200px) {
  .footerMainContainer {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-items: stretch;
    justify-content: space-around;
    row-gap: 15px;
  }

  #imagesSection_BIGScreen {
    display: block;
    width: 100%;
  }

  .productPage_productName {
    font-size: 20px;
  }
} /*CLOSE of @media (max-width: 1200px)*/

/*
  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################

                @media (max-width: 800px)

  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################
  */

@media (max-width: 800px) {
  /*
  #######################   HEADRER SECTION ###############################
  */

  #headerLogoDiv_icon {
    width: 50px;
  }

  #headerLogoDiv_text {
    width: 170px;
    margin-left: -10px;
  }

  #headerLogoDiv_1999 {
    width: 90px;
    position: relative;
    margin-left: 150px;
    margin-top: 0px;
    font-family: "Cabin", cursive;
    font-weight: normal;
    font-size: 15px;
  }

  #headerRightDiv {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 4px;
    justify-items: end;
    justify-content: end;
    align-items: center;
  }

  #menuSmallScreen {
    display: block;
  }
  #menuBigScreen {
    display: none;
  }

  /*
  #######################   main CAT page ###############################
*/

  .main_cat_span_1 {
    font-size: 1.2em;
  }

  /*
  #######################   Shopping Cart Page ###############################
*/

  .shoppingCartRow {
    display: grid;
    grid-template-columns: 100%;
    justify-content: center;
  }

  .productImagesContainer {
    justify-self: center;
  }

  .itemDetailsDiv {
    grid-column: 1/2;
  }

  .keySpan_valueSpan_class {
    width: 95%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 0px;
    justify-items: center;
    align-items: center;
  }
  .keySpan_valueSpan_class .keySpan {
    justify-self: center;
  }

  /*######################### FOOTER #################*/

  .footerMainContainer {
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    text-align: center;
    row-gap: 15px;
  }

  /*
######################### product-page  #################
*/

  .numbertext,
  .prev,
  .next,
  .scrollerDiv {
    display: block;
  }

  .imgSpan {
    width: 29px;
    display: inline-block;
    cursor: pointer;
  }

  .imgSpanBorder {
    border-bottom: 2px red solid;
  }

  #imagesSectionSmallScreen {
    display: inline-block;
    width: 100%;
    max-width: 650px;
    position: relative;
  }

  #imagesSection_BIGScreen {
    display: none;
  }

  #imagesDivSmallScreen > div {
    width: 100%;
  }

  #imagesDivSmallScreen > div > img {
    width: 100%;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active,
  .dot:hover {
    background-color: #717171;
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  .productPage_productName {
    font-size: 17px;
  }

  .product_modal_main {
    padding: 5px 13px;
    display: grid;
    grid-template-columns: auto;
    justify-items: start;
  }

  .product_modal_main .modal_image {
    width: 100%;
    max-width: 100%;
  }

  .productCatPage_CatName {
    font-size: 21px;
  }

  /*
######################### product category page  #################
*/

  .productsGrid {
    gap: 10px;
    /*justify-content: space-between;*/
    /*justify-content: center;*/
  }

  .productItem_coloring_type_1 {
    flex-basis: calc(40% - 5px);
    text-align: center;
  }
} /* close of @media (max-width: 800px)  */

/*
  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################

                @media (max-width: 500px)

  ##############################################################
  ##############################################################
  ##############################################################
  ##############################################################
  */

@media (max-width: 500px) {
  /*
  #######################   HEADRER SECTION ###############################
  */
  #imagesSectionSmallScreen {
    width: 100%;
  }

  #headerLogoDiv_icon {
    width: 30px;
  }

  #headerLogoDiv_text {
    width: 140px;
    margin-left: -10px;
  }

  #headerLogoDiv_1999 {
    width: 70px;
    position: relative;
    margin-left: 120px;
    margin-top: 0px;
    font-family: "Cabin", cursive;
    font-weight: normal;
    font-size: 12px;
  }

  /*
######################### product-page  #################
*/

  #productPage_mainContainer {
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    row-gap: 11px;
    justify-items: center;
  }

  .productPage_buildYourJacketBtn {
    font-size: 19px;
    font-weight: 800;
    width: 300px;
  }

  #productPage_mainDescription {
    margin: 0px 19px;
  }

  /*
######################### product category page  #################
*/

  .productsGrid {
    gap: 6px;
    /*justify-content: space-between;*/
    justify-content: center;
  }

  .productItem_coloring_type_1 {
    flex-basis: 250px;
    text-align: center;
  }

  .productItem {
    width: calc(50% - 3px);
  }

  /*CLOSE of @media (max-width: 500px)*/
}
