.e-con {
  --container-max-width: 100% !important;
}

.borderStyles {
  @apply rounded-[20px] border-2 border-gray-100;
}

.responsive-margin {
  margin-left: 0;

  @media (min-width: 1024px) {
    margin-left: calc((100vw - 1024px) / 2);
  }

  @media (min-width: 1280px) {
    margin-left: calc((100vw - 1280px) / 2);
  }
}

.h2 {
  @apply text-[32px] font-bold text-primary;
}

.black-image {
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  height: var(--height);
  width: 100%;
}

.white-image {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%)
    hue-rotate(248deg) brightness(106%) contrast(106%);
  object-fit: contain;
  height: var(--height);
  width: 100%;
}

.b2b-tab {
  background-color: #ffffff;
  color: #281405;
}
.b2b-tab__tag {
  background-color: #281405;
  color: #ffffff;
}
.active-tab-b2b {
  background-color: #281405;
  color: #ffffff;
}

.active-tag-b2b {
  background-color: #ffffff;
  color: #281405;
}

.visa,
.mcard {
  width: 100%;
}

body.admin-bar > header {
  margin-top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-top: 0px;
  }

  body.admin-bar > header {
    margin-top: 46px;
  }
}

/* 404 page */
.main404 {
  width: 100%;
  height: 100%;
  background-image: url('../img/404/18001.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fec8a4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.main404 .main404-description {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  padding: 40px 64px;
  position: relative;
  bottom: 5px;
  left: 150px;
  background-color: #faf0eb;
}

.main404 .main404-description h1 {
  font-family: 'MursGothic';
  font-size: 56px;
  font-weight: 800;
  line-height: 53.76px;
  text-transform: uppercase;
}

.main404 .main404-description p {
  font-family: 'grotesk';
  font-size: 16px;
  margin-top: 17px;
  line-height: 20.16px;
}

.main404 .main404-description button {
  font-family: 'grotesk';
  background-color: #e67d2d;
  color: white;
  border-radius: 48px;
  width: 148px;
  height: 43px;
  margin-top: 30px;
  font-size: 18px;
}

.main404 .main404-description .down-elem {
  background-color: #faf0eb;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .main404 {
    width: 100%;
    height: 100%;
    background-image: url('../img/404/35001.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fec8a4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    min-height: 100vh;
  }
  .main404 .main404-description {
    display: flex;
    width: 452px;
    align-items: center;
    padding: 40px 24px;
    margin: 0px 40px;
    position: static;
  }

  .main404 .main404-description h1 {
    text-align: center;
    text-transform: uppercase;
    line-height: 46.76px;
    font-size: 43px;
  }

  .main404 .main404-description p {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 6px;
    line-height: 20.16px;
  }

  .main404 .main404-description button {
    background-color: #e67d2d;
    color: white;
    border-radius: 48px;
    margin-top: 30px;
    width: 82%;
    padding: 6px;
    font-size: 18px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .main404 {
    width: 100%;
    height: 100%;
    background-image: url('../img/404/24002.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fec8a4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
  }

  .main404 .main404-description {
    display: flex;
    margin-left: 0px;
    position: static;
    padding: 48px 64px;
  }

  .main404 .main404-description button {
    background-color: #e67d2d;
    color: white;
    border-radius: 48px;
    width: 129px;
    font-size: 18px;
  }

  .main404 .main404-description .down-elem {
    background-color: #faf0eb;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0px;
    margin-top: 20px;
  }
}

/* eUkraine font */
.e-ukraine {
  font-family: 'eUkraine';
}

/* Landing fixed topbar */
.landingbar {
  position: relative;
}
.landingbar.fixednav {
  position: fixed !important;
  width: 100% !important;
  z-index: 9999 !important;
  top: 0;
  left: 0;
  margin-top: 70px;
}
@media (max-width: 1023px) {
  .landingbar.fixednav {
    margin-top: 55px;
  }
}
@media (max-width: 767) {
  .landingbar.fixednav {
    margin-top: 50px;
  }
}

/* Make font bigger */
.bigger-font {
  font-size: 1.25rem;
}

/* Disabled anchor */
a.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

.category-blog {
  margin-bottom: 50px;
}
