.root {
  text-align: center;
  background-color: rgb(var(--venia-global-color-error));
  color: rgb(var(--venia-global-color-gray));
  padding: 1rem 2rem;
}
.page_not_find {
  padding: 50px 0px;
}
.not_found_left {
  background-color: var(--secondary-404-bg-color);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  float: right;
}
.not_found_left img {
  position: absolute;
  max-width: 200px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.not_found_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: -90px;
  text-align: left;
}
.not_found_text h1 {
  font-size: 4rem;
}
.not_found_text p {
  color: var(--primary-text-color);
  font-size: 14px;
  max-width: 50%;
}
.not_found_text a,
.not_found_text a:hover {
  color: var(--primary-base-color);
  font-size: 14px;
}

body[class='rtl_view'] .not_found_left {
  float: left;
}
body[class='rtl_view'] .not_found_text {
  text-align: right;
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .not_found_left {
    width: 300px;
    height: 300px;
    float: none;
    margin: 0 auto;
  }
  .not_found_left img {
    max-width: 150px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .not_found_text {
    margin-top: -30px;
    margin-left: 0;
    text-align: center;
  }
  .not_found_text p {
    max-width: 100%;
  }
  .not_found_text h3 {
    font-size: 1.3rem;
  }
  body[class='rtl_view'] .not_found_left {
    float: none;
  }
  body[class='rtl_view'] .not_found_text {
    text-align: center;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .not_found_text {
    margin-top: 0;
    margin-left: 20px;
    text-align: left;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .not_found_left {
    float: none;
  }
  .not_found_text {
    margin-left: -30px;
  }
}
