@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html,
body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  height: auto;
  max-width: 720px;
  padding: 0px 10px;
  margin: 0px auto;
}

.container-xl {
  width: 100%;
  height: auto;
  max-width: 1080px;
  padding: 0px 10px;
  margin: 0px auto;
}

.app {
  width: 100%;
  height: auto;
  padding: 20px 0px;
}
.app .form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.app .form h3 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
.app .form img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.app .form .error__box {
  width: 100%;
  height: auto;
  padding: 10px 25px;
  border-radius: 8px;
  border: 1px solid #ed1c24;
  background-color: #aa161b;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.app .form .success__box {
  width: 100%;
  height: auto;
  padding: 10px 25px;
  border-radius: 8px;
  border: 1px solid #1ced65;
  background-color: #0f923d;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.app .form .form__group {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0px;
  position: relative;
}
.app .form .form__group span {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
  color: #aa161b;
  cursor: pointer;
  z-index: 9;
}
.app .form .form__group span:hover {
  color: #ed1c24;
}
.app .form .form__group span:hover img {
  display: block;
}
.app .form .form__group span img {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 250px;
  height: 250px;
  border: 1px solid #000;
  display: none;
  z-index: 9;
}
.app .form .form__group.error input,
.app .form .form__group.error select {
  border: 1px solid #ed1c24;
}
.app .form .form__group.error span {
  font-size: 16px;
  font-weight: 500;
  color: #aa161b;
}
.app .form .form__group label {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin-right: 20px;
  width: 200px;
  height: auto;
  text-align: right;
  display: inline-block;
}
.app .form .form__group input,
.app .form .form__group select {
  width: 300px;
  height: 40px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  outline: none;
  padding-left: 10px;
}
.app .form .form__group input:focus,
.app .form .form__group select:focus {
  border: 1px solid #ed1c24;
}
.app .form .form__button {
  width: 100%;
  height: auto;
  margin: 20px 0px;
  margin-bottom: 0px;
}
.app .form .form__button button {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background-color: #ed1c24;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: 0px;
  cursor: pointer;
}
.app .form .form__button button:hover {
  background-color: #aa161b;
}
.app .lblock {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app .lblock .login__box {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
  padding: 20px;
}
.app .lblock .login__box .error__box {
  width: 100%;
  height: auto;
  padding: 10px 25px;
  border-radius: 8px;
  border: 1px solid #ed1c24;
  background-color: #aa161b;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.app .lblock .login__box form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.app .lblock .login__box form .form__group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.app .lblock .login__box form .form__group label {
  font-size: 16px;
  font-weight: 600;
  height: 30px;
}
.app .lblock .login__box form .form__group input {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
}
.app .lblock .login__box form .form__group button {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background-color: #ed1c24;
  color: #fff;
  border: 0px;
  cursor: pointer;
}
.app .lblock .login__box form .form__group button:hover {
  background-color: #aa161b;
}

.admin {
  width: 100%;
  height: auto;
  padding: 100px 0px;
}
.admin .tabs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin .tabs ul {
  display: flex;
  align-items: center;
}
.admin .tabs ul li {
  margin: 0px 10px;
  padding: 7px 15px;
  list-style: none;
}
.admin .tabs ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.admin .tabs ul li.active {
  border-bottom: 2px solid #ed1c24;
}
.admin .tabs ul li.active a {
  color: #ed1c24;
  font-weight: 500;
}
.admin .content {
  width: 100%;
  height: auto;
  padding: 20px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
}
.admin .content table {
  border-collapse: collapse;
  width: 100%;
}
.admin .content .filters {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.admin .content .filters .filters__title {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.admin .content .filters .filters__title h4 {
  font-size: 20px;
  font-weight: 500;
}
.admin .content .filters .filter__block {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.admin .content .filters .filter__block h4 {
  width: 100%;
  height: auto;
  font-size: 20px;
  margin-bottom: 10px;
}
.admin .content .filters .filters__box {
  width: 300px;
  height: auto;
  margin-right: 20px;
}
.admin .content .filters .filters__box.fb__button {
  width: 150px;
}
.admin .content .filters .filters__box label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  height: 15px;
  display: block;
}
.admin .content .filters .filters__box input,
.admin .content .filters .filters__box select {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  padding-left: 20px;
  border: 1px solid #d7d7d7;
}
.admin .content .filters .filters__box button {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background-color: #aa161b;
  color: #fff;
  font-size: 16px;
  border: 0px;
  cursor: pointer;
}
.admin .content .filters .filters__box button:hover {
  background-color: #ed1c24;
}
.admin .content td,
.admin .content th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
.admin .content td a,
.admin .content th a {
  padding: 5px 10px;
  border-radius: 4px;
  background-color: rgb(0, 149, 255);
  color: #fff;
  font-size: 14px;
}
.admin .content td a:hover,
.admin .content th a:hover {
  background-color: rgb(18, 119, 191);
}
.admin .content td span,
.admin .content th span {
  padding: 5px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}
.admin .content td span.s-10,
.admin .content th span.s-10 {
  background-color: rgb(193, 193, 49);
}
.admin .content td span.s-20,
.admin .content th span.s-20 {
  background-color: #0f923d;
}
.admin .content td span.s-30,
.admin .content th span.s-30 {
  background-color: #aa161b;
}
.admin .content tr:nth-child(even) {
  background-color: #dddddd;
}
.admin .content .admin__list {
  width: 100%;
  height: auto;
}
.admin .content .admin__list .list__add {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background-color: #d7d7d7;
}
.admin .content .admin__list .list__add form {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.admin .content .admin__list .list__add form .fg__title {
  width: 100%;
  height: auto;
  padding-left: 10px;
}
.admin .content .admin__list .list__add form .fg__title h4 {
  font-size: 20px;
  font-weight: 500;
}
.admin .content .admin__list .list__add form .fg {
  width: calc(25% - 20px);
  height: auto;
  margin: 10px;
}
.admin .content .admin__list .list__add form .fg label {
  width: 100%;
  height: 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}
.admin .content .admin__list .list__add form .fg input,
.admin .content .admin__list .list__add form .fg select {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  padding-left: 10px;
  border: 1px solid #d7d7d7;
}
.admin .content .admin__list .list__add form .fg button {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #0f923d;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #1ced65;
  cursor: pointer;
}
.admin .content .admin__list .list__add form .fg button:hover {
  background-color: #1ced65;
}
.admin .content .admin__list ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.admin .content .admin__list ul li {
  width: calc(20% - 10px);
  height: 40px;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  margin: 5px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.admin .content .admin__list ul li.big {
  width: calc(33.33% - 10px);
}
.admin .content .admin__list ul li svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.admin .warranty {
  width: 100%;
  height: auto;
}
.admin .warranty .w__actions {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin .warranty .w__actions a {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #0f923d;
  margin: 0px 10px;
}
.admin .warranty .w__actions a.red {
  background-color: #aa161b;
}
.admin .warranty .message__box {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  padding: 0px 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7d7d7;
}
.admin .warranty .message__box p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.admin .warranty .message__box.mb-20 p b {
  color: #0f923d;
}
.admin .warranty .message__box.mb-30 p b {
  color: #aa161b;
}
.admin .warranty .w__back {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}
.admin .warranty .w__back a {
  color: rgb(63, 111, 224);
  font-size: 16px;
  font-weight: 600;
}
.admin .warranty .w__back a:hover {
  color: blue;
}
.admin .warranty .w__photo {
  width: 100%;
  height: auto;
  padding: 20px 0px;
}
.admin .warranty ul {
  width: 100%;
  height: auto;
  padding-top: 20px;
}
.admin .warranty ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #d7d7d7;
  padding: 7px 10px;
  margin: 5px 0px;
}
.admin .warranty ul li b {
  width: 250px;
  height: 100%;
}
.admin .warranty ul li input {
  width: 200px;
  height: 30px;
  border: 0px;
}
.admin .warranty ul li button {
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #aa161b;
  color: #fff;
  border: 0px;
  cursor: pointer;
}

@media screen and (max-width: 880px) {
  .app .form .form__group {
    flex-wrap: wrap;
  }
  .app .form .form__group label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
  }
  .app .form .form__group input,
.app .form .form__group select {
    width: 100%;
  }
  .app .form .form__group span {
    position: relative;
    left: 0px;
    top: 20px;
  }
  .app .form .form__group span img {
    bottom: 20px;
    top: auto;
    left: -100px;
    right: 0px;
  }
}

/*# sourceMappingURL=style.css.map */
