:root {

  --primary-color: #0b0000;
  --primary-hover-color: #6c94f8;
  --container-color: #f4f4f5;
  --text-color: #fff;
  --grey: #646266;
  --white-color: #fff;
  --secondary-color: #1948bf;
  --secondary-hover-color: #36bc58;
  --color-success: #0a7c76;
  --error-color: #c4113f; 
  --light-pink: #f5f5f5;
  --discontinued: #ff8e6b;
  --backOrder: #7268cd;
  --available: #3792ff;
}

.darkMode{
  --primary-color: #f7f7f7;
  --container-color: #15151a;
  --white-color: #15151a;
  --grey: #646266;
  --text-color: rgb(0, 0, 0); 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

.background-primary {
  background-color: var(--primary-color);
}
.background-secondary {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--white-color)
}
.color-primary{
  color: var(--primary-color);
}
.color-error {
  color: var(--error-color);
}
.color-white {
  color: var(--text-color);
}
.color-black {
  color: var(--primary-color);
}
.bg-transparent {
  background-color: transparent;
}
.bg-cream {
  background-color: #f4f4f5;
}
.color-light-grey {
  color: var(--grey);
}

.no-border {
  border: none;
}

.z-index-1 {
  z-index: 1;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-radius-8 {
  border-radius: 8px;
}
.border-radius-50 {
  border-radius: 50%;
}
.border-radius-50vw {
  border-radius: 50vw;
}
.border-primary{
  border: 1px solid var(--primary-color);
}
.underlined {
  text-decoration: underline;
}

.underline-hovered:hover {
  text-decoration: none;
}
.underline-on-hover:hover {
  text-decoration: underline;
}

.c-pointer {
  cursor: pointer;
}

.overflow-x-auto {
  overflow-x: auto;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.white-space-nowrap {
  white-space: nowrap;
}
.word-break-word{
  word-break: break-word;
}

.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100%;
}
.pageContainer {
  max-width: 1600px;
  margin: 0 auto;
}
 
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table {
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
}

.two-lines-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 2.4em;
  line-height: 1.2;
}

/* display */

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

/* flex */
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.flex-column {
  flex-direction: column;
}
.svg-stroke {
  stroke: currentColor;
}

/* padding */
.p-0{
  padding: 0 !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pl-3,
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

/* mareign */
.m-0 {
  margin: 0 !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.my-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* fonts */

.font-weight-500 {
  font-weight: 500;
}
.font-weight-700 {
  font-weight: 700;
}
.h5,
h5 {
  font-size: 1.25rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

.orderStatus__dot5 {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  border-radius: 2px;
}

.btn {
  box-shadow: 0 0 0 1px transparent;
 
  background-color: var(--primary-color);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  box-shadow: 0 0 0 1px var(--secondary-color);
  opacity: 0.96;
}

.page-title {
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.17045;
  padding: 10px 0;
  position: relative;
}
.object-fit-contain {
  object-fit: contain;
}

.countrySelect {
  width: 100%;
  background: #fff none repeat scroll 0 0;
  font-size: 1rem;
  line-height: 1.9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDU1IDU2Ij4KPHBhdGggZD0iTTQ0LjU1NyAxOS40OTVjLTIuMDY5IDIuMDY5LTE2LjU1NCAxNi4wMzYtMTYuNTU0IDE2LjAzNnMtMTUuMDAyLTEzLjk2Ny0xNy4wNzEtMTYuMDM2LTMuMTA0IDMuMTA0LTMuMTA0IDMuMTA0bDIwLjE3NSAxOC42MjMgMTkuNjU4LTE4LjYyM2MwIDAtMS4wMzUtNS4xNzMtMy4xMDQtMy4xMDR6IiBmaWxsPSIjNTg1ODU4Ii8+Cjwvc3ZnPg==);
  background-position: right 10px center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding: 22px 28px 5px 10px;
  outline: none;
  text-indent: 0.01px;
  border-radius: 8px;
  transition: 0.25s, border-color 0.25s;
  border: 2px solid #9d9a9f;
}
.selectcountry-hint {
  position: absolute;
  top: 1px;
  left: 10px;
  font-size: 12px;
  color: grey;
}
 

.loginBtn {
  padding: 12px;
  background-color: var(--primary-color);
  color: var(--text-color);
}

.myProductsSearchBar{
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
}
.myProductsSearchBar label { 
  color: #ddd !important; 
  background-color: var(--white-color);
}
.myProductsSearchBar input { 
  color: var(--primary-color);
}
.box-shadow-grey{
    box-shadow: 0 0 12px #ddd
}



.loader-image {
  -webkit-animation-name: spin;
  -webkit-animation-direction: alternate;
  -webkit-animation-duration: 1350ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-direction: alternate;
  -moz-animation-duration: 1350ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-direction: alternate;
  -ms-animation-duration: 1350ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-direction: alternate;
  animation-duration: 1350ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  border-radius: 50%;

  /* unComment for sun behave animation */
  /* height: 100%;
  width: 100%; */
}

/*  sun behave animation */

/* @keyframes sun {
  0% {
    transform: translate(-5%, 93%);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    transform: translate(92%, -4%);
    opacity: 0;
  }
} */

/* spin */
@-ms-keyframes spin {
  from {
    -ms-transform: rotateY(0deg);
  }
  to {
    -ms-transform: rotateY(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotateY(0deg);
  }
  to {
    -moz-transform: rotateY(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotateY(0deg);
    opacity: 0;
  }
  to {
    transform: rotateY(360deg);
    opacity: 1;
  }
}



@media (max-width: 768px) {
  .page-title {
    font-size: 1.5rem;
  }
  .flex-wrap-small{
    flex-wrap: wrap;
  }
}
