* {
  padding: 0;
}

*,
body {
  margin: 0;
  font-family: Inter, sans-serif;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}

a {
  color:var(--color-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: #dddbdd;
}

.skeleton-box:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.2) 20%,
    hsla(0, 0%, 100%, 0.5) 60%,
    hsla(0, 0%, 100%, 0)
  );
  animation: shimmer 2s infinite;
  content: "";
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@-moz-document url-prefix() {
  b:not(.ffBold),
  button:not(.ffBold),
  div:not(.ffBold),
  h1:not(.ffBold),
  h2:not(.ffBold),
  h3:not(.ffBold),
  h4:not(.ffBold),
  h5:not(.ffBold),
  h6:not(.ffBold),
  li:not(.ffBold),
  p:not(.ffBold),
  s:not(.ffBold),
  span:not(.ffBold) {
    font-weight: 400 !important;
  }
}

.with-ellipsis {
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
}

.with-ellipsis,
.with-ellipsis--single-line {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  word-wrap: break-word;
  word-break: break-word;
}

.with-ellipsis--single-line {
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
}

.tooltip-contianer {
  margin-left: 5px;
  position: relative;
  cursor: pointer;
}

.tooltip-contianer:hover div {
  visibility: visible;
  z-index: 9;
}

.tooltip-contianer svg {
  margin-bottom: -1px;
  height: 16px;
  width: 26px;
  width: auto;
}

.tooltip-contianer svg path {
  fill: #4285f4;
}

.uppercase {
  text-transform: uppercase;
}

.pagination__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: hsla(0, 0%, 100%, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }

  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
  }
}

.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1 1;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 100%;
  border: 2px solid;
  border-right: 2px solid var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  0% {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideOutRight {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.ModalComponent_modal-container__6YiAG {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease-in-out;
  background-color: #a6a6a6;
}

.ModalComponent_modal-container__6YiAG.ModalComponent_center__DDiaw {
  align-items: center;
}

.ModalComponent_modal-container__6YiAG.ModalComponent_top__odo21
  .ModalComponent_modal-wrapper__aGt8v {
  margin-top: 93px;
}

.ModalComponent_modal-container__6YiAG.ModalComponent_top__odo21 {
  align-items: flex-start;
}

.ModalComponent_modal-container__6YiAG.ModalComponent_show__4t6wG {
  opacity: 1;
  z-index: 1000;
}

.ModalComponent_modal-overlay__A3maL {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.ModalComponent_modal-wrapper__aGt8v {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

@media (max-width: 769px) {
  .ModalComponent_modal-wrapper__aGt8v {
    box-shadow: none;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .ModalComponent_modal-wrapper__aGt8v {
    height: -moz-fit-content !important;
    height: fit-content !important;
  }

  .ModalComponent_modal-container__6YiAG {
    overflow: auto !important;
    align-items: unset !important;
  }
}

.FeedbackModal_container__pD59k {
  width: 610px;
  background-color: #fff;
  border-radius: 10px;
  height: auto;
}

.FeedbackModal_character_counter__93JgN {
  font-size: 16px;
  font-weight: 500;
  color: #232323;
  margin-top: 20px;
}

.FeedbackModal_content__aB8jY {
  width: -webkit-fill-available;
  width: -moz-available;
  height: -webkit-fill-available;
  height: -moz-available;
  padding: 28px 28px 37px 38px;
}

.FeedbackModal_content__aB8jY .FeedbackModal_headingContainer__R4yEO {
  font-size: 27px;
  font-family: samsung;
  color: #232323;
  line-height: 50px;
  margin-top: 3px;
}

.FeedbackModal_content__aB8jY .FeedbackModal_labelContainer__mu1DB {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  margin-top: 5px;
  line-height: 21px;
  opacity: 50%;
}

.FeedbackModal_heading__P_akx .FeedbackModal_cancel__GnHOY {
  cursor: pointer;
  float: right;
}

.FeedbackModal_buttonContainer__2lAbL {
  margin-top: 34px;
}

.FeedbackModal_buttonContainer__2lAbL button {
  font-size: 19px;
  width: 100%;
  background-color: #var(--color-green);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  height: 56px;
  font-family: Samsung-bold;
  line-height: 50px;
  font-weight: 700;
}

.FeedbackModal_feedbackContainer__F2Idc {
  margin-top: 35px;
}

.FeedbackModal_feedbackContainer__F2Idc textarea {
  width: 100%;
  height: 242px;
  border-radius: 10px;
  color: #232323;
  background-color: #f4f4f4;
  padding: 28px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid #e5e5e5;
}

.FeedbackModal_ratingContainer__HCZgl {
  margin-top: 26px;
}

.FeedbackModal_error__PRZjF {
  color: #f8a517 !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.FeedbackModal_centreContainer__ipVHb {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 769px) {
  .FeedbackModal_container__pD59k {
    width: 100%;
    height: auto;
  }

  .FeedbackModal_content__aB8jY {
    padding: 20px;
  }

  .FeedbackModal_headingContainer__R4yEO,
  .FeedbackModal_labelContainer__mu1DB {
    font-size: 15px !important;
  }

  .FeedbackModal_character_counter__93JgN {
    font-size: 15px;
  }
}

.Footer_footer_container__4_hv6 {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 526px;
  position: relative;
  background-color: #edf4ed;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.Footer_footer_container__4_hv6 .Footer_background_path__pbn8N {
  right: 0;
  z-index: 1;
  bottom: 0;
  position: absolute;
}

.Footer_footer_container__4_hv6 .Footer_footer_container_inner__pYARW {
  z-index: 2;
  width: 90%;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA {
  display: flex;
  margin-top: 44px;
  justify-content: space-between;
  align-items: center;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb {
  display: flex;
  align-items: center;
  gap: 37px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb
  .Footer_contacts__FhP_t {
  display: flex;
  align-items: center;
  gap: 25px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb
  .Footer_contacts__FhP_t
  .Footer_phone__aGTNE
  p {
  gap: 8px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  color: #383838;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL {
  display: flex;
  align-items: center;
  gap: 16px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  h3 {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #383838 !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  .Footer_row_icon__gGlAg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  .Footer_row_icon__gGlAg
  .Footer_social_icons__L_2ui {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-family: samsung;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #var(--color-green);
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_line__baWBq {
  border: 1px solid #dfe5df;
  margin-top: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp {
  justify-content: space-between;
  gap: 20px !important;
  display: flex;
  margin-top: 35px !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_section_group__rtnDM {
  display: flex;
  gap: 80px !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  h1 {
  font-size: 18px;
  font-family: samsung;
  font-weight: 400;
  color: #232323;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG {
  display: flex;
  flex-direction: column;
  gap: 15px !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG
  p {
  font-size: 14px !important;
  color: #4c4c4c !important;
  font-weight: 400 !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG
  p
  a {
  color: #4c4c4c !important;
  text-decoration: none !important;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  h1 {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
  font-family: samsung;
  line-height: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_app_store___WhtK {
  width: 171px;
  height: 58px;
  background-color: #dfece0;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_app_store___WhtK
  p {
  font-size: 13px;
  font-weight: 400;
  font-family: aeonik, sans-serif;
  color: #393939;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_apple_store__ntTlf {
  background-color: #dfece0;
  width: 165px;
  height: 58px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_apple_store__ntTlf
  p {
  font-size: 13px;
  font-family: aeonik, sans-serif;
  color: #393939;
  font-weight: 400;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_buttons__AQ2jI {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 14px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I {
  display: flex;
  margin-top: 20px;
  z-index: 2;
  align-items: center;
  width: 440px;
  height: 52px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(72, 150, 74, 0.185);
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  .Footer_iconmargin__J4jaF {
  margin-left: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  input {
  background-color: transparent;
  width: 232px;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  button {
  width: 140px;
  height: 52px;
  border-radius: 10px;
  background-color: #var(--color-green);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  border: none;
}

.Footer_width__MKJbq {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
}

.Footer_para__LLzXb {
  font-size: 13px;
  color: #383838;
  font-weight: 400;
  margin-top: 34px;
}

.Footer_para_hide__389bI {
  font-size: 13px;
  font-weight: 400;
  display: none;
  margin-top: 16px;
}

.Footer_desktop1__0n_Bt hr {
  margin-top: 50px !important;
}

.Footer_category_link__1LXGT h1 {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #232323;
  font-family: samsung;
  line-height: 30px;
}

@media (max-width: 1400px) {
  .Footer_footer_container__4_hv6 {
    height: auto;
    padding-bottom: 20px;
  }

  .Footer_width__MKJbq {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
}

@media (max-width: 1025px) {
  .Footer_footer_container__4_hv6 {
    margin-top: 50px !important;
  }

  .Footer_links__ljyvp {
    flex-direction: column;
  }

  .Footer_phone__aGTNE p {
    font-size: 14px !important;
  }

  .Footer_social_links__EpJtL h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 769px) {
  .Footer_footer_container_inner__pYARW {
    display: flex;
    flex-direction: column-reverse;
    width: 80%;
  }

  .Footer_links__ljyvp {
    gap: 15px !important;
    margin-top: 26px !important;
  }

  .Footer_width__MKJbq > div:nth-child(2),
  .Footer_width__MKJbq > div:nth-child(4) {
    padding-left: 20px;
  }

  .Footer_message_section__Qnl_r {
    margin-top: 15px;
  }

  .Footer_message_section__Qnl_r h1 {
    font-size: 16px !important;
  }

  .Footer_message_section__Qnl_r
    .Footer_buttons__AQ2jI
    .Footer_app_store___WhtK
    p,
  .Footer_message_section__Qnl_r
    .Footer_buttons__AQ2jI
    .Footer_apple_store__ntTlf
    p {
    font-size: 11px !important;
  }

  .Footer_inputs__2GT6I {
    flex-direction: column;
    height: auto !important;
    background-color: transparent !important;
    border: none !important;
    width: auto !important;
    gap: 10px;
    margin-top: 24px !important;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 {
    display: flex;
    align-items: center;
    width: 100%;
    height: 59px;
    background-color: #fff;
    border-radius: 10px;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input {
    border-radius: 10px;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input::-moz-placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input:-ms-input-placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input::placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I button {
    width: 100% !important;
    height: 59px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  .Footer_buttons__AQ2jI {
    margin-top: 20px !important;
  }

  .Footer_footer_top_content__HDGvA {
    gap: 18px;
    margin-top: 22px !important;
    flex-direction: column-reverse;
  }

  .Footer_footer_top_content__HDGvA .Footer_social_links__EpJtL {
    flex-direction: column;
    gap: 14px !important;
  }

  .Footer_footer_top_content__HDGvA
    .Footer_contact_side__0GTpb
    .Footer_Logo__JY0tB {
    display: none;
  }

  .Footer_footer_top_content__HDGvA
    .Footer_contact_side__0GTpb
    .Footer_contacts__FhP_t {
    flex-direction: column;
    gap: 12px !important;
  }

  .Footer_desktop1__0n_Bt hr {
    display: none;
  }

  .Footer_para__LLzXb {
    text-align: center;
    display: none;
  }

  .Footer_para_hide__389bI {
    font-size: 12px;
    text-align: center;
    display: block;
    color: #383838;
  }

  .Footer_line__baWBq {
    margin-top: 22px !important;
  }

  .Footer_category_link__1LXGT h1 {
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .Footer_category_link__1LXGT .Footer_link__FTTwG p {
    font-size: 12px !important;
  }
}

.Button_btn__R8YYU {
  cursor: pointer;
  background-color: #var(--color-green);
  height: 72px;
  width: 553px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  border: none;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}

.Button_btn__R8YYU:hover {
  background-color: #4fa752;
}

.Button_create_btn__zdbUw {
  margin-top: 27px;
  width: 550px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid #var(--color-green);
  background-color: transparent;
  color: #var(--color-green);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.Button_create_btn__zdbUw:hover {
  color: #4fa752;
}

.Button_register_btn__xnvXV {
  width: 231px;
  height: 61px;
  background-color: var(--texthover);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.Button_buttonLabel__aU_a7,
.Button_register_btn__xnvXV {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.Button_buttonLabel__aU_a7 {
  margin-left: 28px;
}

@media (max-width: 769px) {
  .Button_btn__R8YYU {
    margin-top: 18px;
    margin-bottom: 19px;
  }

  .Button_btn__R8YYU,
  .Button_create_btn__zdbUw {
    font-weight: 500;
    font-size: 17px;
    width: 290px;
    height: 49px;
  }

  .Button_create_btn__zdbUw {
    margin-top: 25px;
  }
}

.NavbarMobile_container__4u2_A {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: -webkit-fill-available;
  width: -moz-available;
  padding: 0 2rem;
  z-index: 1;
}

.NavbarMobile_back_btn__Z8__t {
  color: #var(--color-green);
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  margin: 10px 0;
}

.NavbarMobile_content__6wG5c {
  width: 100%;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  height: 340px;
  overflow: auto;
}

.NavbarMobile_content__6wG5c button {
  height: 55px;
  font-size: 14px;
  color: #414141;
  font-weight: 500;
  fill: #fff;
  font-family: "Inter", sans-serif;
  display: flex;
  border: none;
  border-bottom: 1px solid #dadada;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  background-color: transparent;
  text-align: left;
  width: 100%;
}

.NavbarMobile_content__6wG5c button .NavbarMobile_icon__A_5Cu {
  margin-left: 27px;
  fill: #414141;
}

.NavbarMobile_active-tabs__zVNwt {
  fill: #fff !important;
  color: #fff !important;
  background-color: #var(--color-green) !important;
}

.NavbarMobile_active-tabs__zVNwt .NavbarMobile_icon__A_5Cu {
  fill: #fff !important;
}

.Navbar_message_icon__sJ9oE {
  height: 30px;
  display: flex;
  padding-left: 30px;
  border-left: 1px solid #ececec;
  gap: 30px;
  align-items: center;
}

.Navbar_auctions_menu___4QJh,
.Navbar_category_menu__pXdNI,
.Navbar_dropdoown_profile_menu__Dbs5s,
.Navbar_heading__5_Jpw,
.Navbar_message_icon__sJ9oE {
  position: relative !important;
}

.Navbar_dropdown_menu_message__a3het {
  right: 150px;
  height: 299px;
}

.Navbar_dropdown_menu_message__a3het,
.Navbar_dropdown_menu_notification__dkNGk {
  z-index: 10;
  top: 40px;
  background-color: #fff;
  position: absolute;
  display: flex;
  padding: 25px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.166);
  flex-direction: column;
  width: 391px;
}

.Navbar_dropdown_menu_notification__dkNGk {
  height: 325px;
  align-items: center;
  right: 300px;
}

.Navbar_messages_icon____28W {
  cursor: pointer;
}

.Navbar_message_heading__KL5Hi {
  width: 381.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Navbar_message_heading__KL5Hi h3 {
  color: var(--textcolor);
  font-size: 19px;
  font-weight: 700;
}

.Navbar_message_heading__KL5Hi h4 {
  color: var(--texthover);
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
}

.Navbar_messages_notification__1ienK {
  cursor: pointer;
  display: flex;
  padding: 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid #ececec;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.Navbar_messages_notification__1ienK:last-child {
  border: none;
}

.Navbar_messages_notification__1ienK img {
  border-radius: 22px;
}

.Navbar_message_info__qSrll div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.Navbar_message_info__qSrll div h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--textcolor);
}

.Navbar_message_info__qSrll div p {
  font-size: 16px;
  font-weight: 400;
  color: var(--textcolor);
}

.Navbar_messages_notification__1ienK img {
  width: 60px;
  height: 60px;
}

.Navbar_message_info__qSrll {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.Navbar_account_avater__IjWuf {
  display: flex;
  cursor: pointer;
  gap: 12.5px;
  align-items: center;
}

.Navbar_user_img__jXrZ1 {
  border-radius: 22px;
  -o-object-fit: cover;
  object-fit: cover;
}

.Navbar_user_name__bx_Tl {
  display: flex;
  gap: 0;
  flex-direction: column;
}

.Navbar_user_name__bx_Tl p {
  font-weight: 600;
  font-size: 12px;
  color: var(--texthover);
}

.Navbar_user_name__bx_Tl h3 {
  font-size: 18px;
  color: var(--textcolor);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
}

.Navbar_menu_profile__RvEx3 {
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  height: 247px;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 198px;
  position: absolute;
  top: 45px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.166);
}

.Navbar_menu_profile__RvEx3 button {
  cursor: pointer;
  height: 45px;
  font-family: "Inter", sans-serif;
  border: none;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--textcolor);
  font-weight: 500;
  background-color: transparent;
}

.Navbar_menu_profile__RvEx3 button svg {
  fill: #414141;
}

.Navbar_menu_profile__RvEx3 button:nth-child(5) {
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
}

.Navbar_add_section__VneFh {
  width: 109px;
  cursor: pointer;
  height: 47px;
  background-color: var(--texthover);
  display: flex;
  align-items: center;
  gap: 9.27px;
  border-radius: 25px;
}

.Navbar_add_section__VneFh button {
  width: 36px;
  margin-left: 10px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
}

.Navbar_add_section__VneFh h1 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.Navbar_dropdown_menu__aUjle {
  top: 30px;
  z-index: 10;
  background-color: #fff;
  position: absolute;
  display: flex;
  padding: 0 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.166);
  width: 198px;
  height: 98px;
  flex-direction: column;
}

.Navbar_dropdown_menu_btn__oTF1U {
  transition: 0.3s;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 17px;
  margin-bottom: 13px;
  justify-content: space-between;
  background-color: transparent;
}

.Navbar_dropdown_menu_btn__oTF1U svg {
  transition: 0.3s;
  transform: translateX(-5px);
}

.Navbar_dropdown_menu_btn__oTF1U:hover svg {
  transform: translateX(0);
}

.Navbar_border_line__qXo_y {
  border: 1px solid #ececec;
}

.Navbar_dropdown_menu_btn__oTF1U:hover {
  color: var(--texthover);
}

.Navbar_auction_dropdown_btn__Vt8ct {
  z-index: 10;
  background-color: #fff;
  top: 30px;
  position: absolute;
  display: flex;
  width: 106px;
  height: 98px;
  padding: 0 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.166);
  flex-direction: column;
}

.Navbar_bitmap__dr7yn {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.Navbar_dropdown_links__ySXaW {
  align-items: center;
  display: flex;
  cursor: pointer;
}

.Navbar_dropdown__cszNN {
  align-items: center;
  display: flex;
  gap: 37px;
  padding-right: 0;
}

.Navbar_no_login__J_Y5B {
  display: flex;
  gap: 30px;
  align-items: center;
}

.Navbar_nav_drawer__7zGmL {
  z-index: 10;
  top: 30px;
  position: absolute;
  display: flex;
  gap: 20px;
  width: 677px;
  height: 402px;
  justify-content: space-between;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 1px 6px 14px rgba(0, 0, 0, 0.166);
  background-color: #fff;
  padding: 20px;
}

.Navbar_category_heading__jK5HW {
  font-size: 16px;
  color: var(--textcolor);
  align-items: center;
  font-weight: 500;
  display: flex;
  gap: 10px;
}

.Navbar_nav_drawer_links__KC04j {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Navbar_drawer_links__Ubt91 {
  border-top: 1px solid #ececec;
  height: 100%;
  display: flex;
  gap: 20px;
}

.Navbar_heading__5_Jpw {
  pointer-events: fill;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  color: var(--textcolor);
  transition: 0.3s;
}

.Navbar_heading__5_Jpw:hover {
  color: var(--texthover);
}

.Navbar_link__SU2fW {
  text-decoration: none;
}

.Navbar_drawer_link__oSNok {
  width: 200px;
  justify-content: space-between;
  flex-direction: column;
  display: flex;
}

.Navbar_logo__gf6N_ {
  width: 164px;
  height: 45px;
}

.Navbar_links__7MUF9 {
  color: var(--textcolor);
  font-weight: 500;
  height: 45px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  border-bottom: 1px solid #ececec;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.Navbar_links__7MUF9 svg {
  transition: 0.2s;
  transform: translateX(-5px);
}

.Navbar_links__7MUF9:hover {
  color: var(--texthover);
}

.Navbar_links__7MUF9:hover svg {
  transform: translateX(0);
}

.Navbar_navCont__16y_R {
  z-index: 6;
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  --textcolor: #414141;
  --texthover: #var(--color-green);
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6rem;
}

#Navbar_border_remove___W_y2 {
  border-bottom: none;
}

.Navbar_menu_click__poAFK {
  display: none;
}

.Navbar_register_btn__2QqTi {
  width: 231px;
  height: 61px;
  background-color: var(--texthover);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.Navbar_register_btn__2QqTi:hover {
  background-color: #448546;
}

.Navbar_registration_btn__9xu5C {
  display: none;
  width: 155px;
  height: 49px;
  background-color: #1e1e1e;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: none;
  font-family: Inter;
  transition: 0.3s;
}

.Navbar_btn__9EqMH svg path {
  fill: #fff;
}

.Navbar_registration_btn__9xu5C:hover {
  background-color: #474747;
}

.Navbar_sign_in_btn__vhGXV {
  display: none;
  font-family: "Inter", sans-serif;
  width: 155px;
  height: 49px;
  background-color: var(--texthover);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.Navbar_sign_in_btn__vhGXV:hover {
  background-color: #448546;
}

.Navbar_nav_mobile__kGIqZ,
.Navbar_nav_mobile_btn__dz6eJ {
  display: none;
}

.Navbar_nav_xl__SW2Mf {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
}

.Navbar_nav_xl__SW2Mf :first-child {
  cursor: pointer;
}

.Navbar_scroll_message__pwrSA {
  overflow-y: scroll;
  height: 300px;
  padding-right: 10px;
  width: 100%;
}

.Navbar_scroll_message__pwrSA::-webkit-scrollbar {
  width: 4px;
}

.Navbar_scroll_message__pwrSA::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: hsla(0, 0%, 85%, 0.22);
}

.Navbar_scroll_message__pwrSA::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #d8d8d8;
}

@media (max-width: 1360px) {
  .Navbar_navCont__16y_R {
    padding: 0 2rem;
  }

  .Navbar_dropdown__cszNN {
    gap: 1rem;
  }

  .Navbar_heading__5_Jpw {
    gap: 0.625rem;
  }

  .Navbar_dropdown_links__ySXaW {
    gap: 8px;
  }

  .Navbar_message_icon__sJ9oE {
    gap: 1.25rem;
    padding-left: 10px;
  }

  .Navbar_no_login__J_Y5B {
    gap: 2rem;
  }
}

@media (max-width: 1400px) {
  .Navbar_heading__5_Jpw {
    gap: 6px !important;
  }
}

@media (max-width: 1300px) {
  .Navbar_heading__5_Jpw {
    gap: 2px !important;
  }
}

@media (max-width: 1160px) {
  .Navbar_nav_xl__SW2Mf {
    display: none;
  }

  .Navbar_nav_mobile__kGIqZ {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .Navbar_left_logo__w6Pkm {
    cursor: pointer;
  }

  .Navbar_menu_click__poAFK {
    cursor: pointer;
    display: block;
  }

  .Navbar_dropdown_links__ySXaW {
    z-index: 99999;
    background-color: #fff;
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    justify-content: center;
    align-items: start;
    right: 0;
    top: 0;
    position: absolute;
  }

  .Navbar_dropdown__cszNN,
  .Navbar_dropdown_links__ySXaW {
    max-height: -moz-fit-content;
    max-height: fit-content;
    width: 100%;
  }

  .Navbar_dropdown__cszNN {
    min-height: calc(100vh - 150px);
    padding: 25px 10%;
    align-items: baseline;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.1);
  }

  .Navbar_dropdowns__sEYkI {
    width: 100%;
    display: grid;
    grid-gap: 15px;
    gap: 15px;
  }

  .Navbar_category_menu__pXdNI {
    width: 100%;
  }

  .Navbar_heading__5_Jpw {
    color: #232323;
    border-bottom: 1px solid #ececec;
    height: 45px;
    font-size: 16px;
    justify-content: space-between;
    padding-bottom: 1rem;
  }

  .Navbar_auctions_menu___4QJh {
    width: 100%;
  }

  .Navbar_nav_drawer__7zGmL {
    width: 100%;
    box-shadow: none;
    padding: 0;
    top: 0;
    gap: 0;
    position: relative;
  }

  .Navbar_nav_drawer_links__KC04j {
    overflow: hidden;
    width: 100%;
  }

  .Navbar_drawer_link__oSNok {
    width: 100%;
  }

  .Navbar_links__7MUF9 {
    font-size: 13px;
    gap: 20px;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }

  .Navbar_links__7MUF9 svg {
    transform: translateX(0);
  }

  .Navbar_links__7MUF9:hover svg {
    transform: translateX(3px);
  }

  .Navbar_drawer_links__Ubt91 {
    border-top: none;
  }

  .Navbar_drawer_img__XYOnl {
    display: none !important;
  }

  .Navbar_nav_drawer_links_heading__KRpIx {
    display: none;
  }

  .Navbar_dropdown_menu__aUjle {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .Navbar_dropdown_menu_btn__oTF1U {
    padding: 0;
    border-bottom: none;
  }

  .Navbar_auction_dropdown_btn__Vt8ct {
    position: relative;
    top: 0;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }

  .Navbar_registration_btn__9xu5C {
    font-size: 16px;
    display: flex;
  }

  .Navbar_register_btn__2QqTi {
    display: none;
  }

  .Navbar_sign_in_btn__vhGXV {
    font-size: 16px;
    display: flex;
  }

  .Navbar_nav_mobile_btn__dz6eJ {
    width: 100%;
    gap: 16px;
    flex-direction: row-reverse;
  }

  .Navbar_my_account_setting___hL0A,
  .Navbar_nav_mobile_btn__dz6eJ {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .Navbar_button_side__HJbtO {
    display: flex;
    align-items: center;
    width: 106px;
    height: 47px;
    background-color: #var(--color-green);
    border-radius: 25px;
  }

  .Navbar_button_side__HJbtO button {
    width: 35px;
    margin-left: 7px;
    border: none;
    border-radius: 50%;
    height: 35px;
    cursor: pointer;
  }

  .Navbar_button_side__HJbtO p {
    margin-left: 9px;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
  }

  .Navbar_icons_container__8F_U_ {
    display: flex;
    align-items: center;
  }

  .Navbar_icons_container__8F_U_ div:first-child {
    border-right: 1px solid #979797;
  }

  .Navbar_icons_container__8F_U_ .Navbar_message_user_container__DrGu_ {
    margin-right: 20px;
    cursor: pointer;
  }

  .Navbar_icons_container__8F_U_ .Navbar_notification_user_container__eNLZ9 {
    margin-left: 20px;
    cursor: pointer;
  }

  .Navbar_user_conatiner_img__86nT4 {
    cursor: pointer;
    border-bottom: 1px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 33px;
    padding-bottom: 1rem;
  }

  .Navbar_click_ableDropdown__iXz04 {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .Navbar_click_ableDropdown__iXz04 img {
    height: 57px;
    width: 57px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .Navbar_click_ableDropdown__iXz04 div h6 {
    font-size: 12px;
    font-weight: 600;
    color: #var(--color-green);
  }

  .Navbar_click_ableDropdown__iXz04 div p {
    font-size: 18px;
    font-weight: 400;
    color: #414141;
  }

  .Navbar_account_loged_in__i2Tkj {
    position: relative;
  }
}

@media (max-width: 600px) {
  .Navbar_dropdown_links__ySXaW {
    cursor: unset;
  }

  .Navbar_nav_drawer__7zGmL {
    height: 310px;
  }

  .Navbar_drawer_links__Ubt91 {
    flex-direction: column;
    gap: 0;
    height: 300px;
    overflow-y: scroll;
  }

  .Navbar_drawer_links__Ubt91::-webkit-scrollbar {
    width: 4px;
  }

  .Navbar_drawer_links__Ubt91::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: hsla(0, 0%, 85%, 0.22);
  }

  .Navbar_drawer_links__Ubt91::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d8d8d8;
  }

  .Navbar_links__7MUF9 {
    gap: 9px;
    border: none;
  }

  .Navbar_sign_in_btn__vhGXV {
    width: 100%;
  }

  .Navbar_sign_in_btn__vhGXV svg {
    display: none;
  }

  .Navbar_registration_btn__9xu5C {
    width: 100%;
  }
}

.WebsiteBanner_full_layout__ROFO_ {
  top: 0;
  display: flex;
  padding: 0 5%;
  align-items: center;
  width: 90%;
  justify-content: space-between;
  background: red;
}

.WebsiteBanner_full_layout__ROFO_ p {
  color: #fff;
  font-size: 14px;
}

.WebsiteBanner_full_layout__ROFO_ button {
  margin: 6.6px 0;
  height: 30.8px;
  width: 162.47px;
  border-radius: 4px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.WebsiteBanner_full_layout__ROFO_ button:disabled {
  color: hsla(0, 0%, 100%, 0.502);
  border: 1px solid hsla(0, 0%, 100%, 0.502);
  cursor: default;
}

@media (max-width: 769px) {
  .WebsiteBanner_full_layout__ROFO_ button {
    margin: 13px 0 0;
  }

  .WebsiteBanner_full_layout__ROFO_ {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 13px 5%;
  }
}

.WebsiteBanner_feedback_layout__M5Jmn {
  background: #var(--color-green) !important;
}

.WebsiteBanner_feedback_layout__M5Jmn .WebsiteBanner_buttonsContainer__uA1_N {
  display: flex;
  align-items: center;
  gap: 20px;
}

.WebsiteBanner_feedback_layout__M5Jmn
  .WebsiteBanner_buttonsContainer__uA1_N
  .WebsiteBanner_cancelBtnContainer__w_qF9 {
  cursor: pointer;
}

.WebsiteBanner_feedback_layout__M5Jmn
  .WebsiteBanner_buttonsContainer__uA1_N
  .WebsiteBanner_cancelBtnContainer__w_qF9
  svg
  path {
  fill: #fff;
}

.WebsiteBanner_onboarding_layout__Z6nqD {
  background: #var(--color-green) !important;
  border-bottom: 2px solid #000;
}

.App_top_margin__NhgOW {
  position: relative;
}

@media (max-width: 769px) {
  .App_top_margin__NhgOW {
    margin-top: 86px;
  }
}

@media (max-width: 553px) {
  .App_top_margin__NhgOW {
    margin-top: 102px;
  }
}

.Footer_footer_container__4_hv6 {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 526px;
  position: relative;
  background-color: #edf4ed;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.Footer_footer_container__4_hv6 .Footer_background_path__pbn8N {
  right: 0;
  z-index: 1;
  bottom: 0;
  position: absolute;
}

.Footer_footer_container__4_hv6 .Footer_footer_container_inner__pYARW {
  z-index: 2;
  width: 90%;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA {
  display: flex;
  margin-top: 44px;
  justify-content: space-between;
  align-items: center;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb {
  display: flex;
  align-items: center;
  gap: 37px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb
  .Footer_contacts__FhP_t {
  display: flex;
  align-items: center;
  gap: 25px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_footer_top_content__HDGvA
  .Footer_contact_side__0GTpb
  .Footer_contacts__FhP_t
  .Footer_phone__aGTNE
  p {
  gap: 8px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  color: #383838;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL {
  display: flex;
  align-items: center;
  gap: 16px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  h3 {
  font-size: 18px;
  font-weight: 500;
  color: #383838;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  .Footer_row_icon__gGlAg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_social_links__EpJtL
  .Footer_row_icon__gGlAg
  .Footer_social_icons__L_2ui {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #var(--color-green);
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_line__baWBq {
  border: 1px solid #dfe5df;
  margin-top: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp {
  justify-content: space-between;
  gap: 20px;
  display: flex;
  margin-top: 35px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_section_group__rtnDM {
  display: flex;
  gap: 80px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  h1 {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG
  p {
  font-size: 14px;
  color: #4c4c4c;
  font-weight: 400;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_category_link__1LXGT
  .Footer_link__FTTwG
  p
  a {
  color: #4c4c4c;
  text-decoration: none;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  h1 {
  font-size: 18px;
  font-weight: 400;
  color: #232323;
  font-family: samsung;
  line-height: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_app_store___WhtK {
  width: 171px;
  height: 58px;
  background-color: #dfece0;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_app_store___WhtK
  p {
  font-size: 13px;
  font-weight: 400;
  font-family: aeonik, sans-serif;
  color: #393939;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_apple_store__ntTlf {
  background-color: #dfece0;
  width: 165px;
  height: 58px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_apple_store__ntTlf
  p {
  font-size: 13px;
  font-family: aeonik, sans-serif;
  color: #393939;
  font-weight: 400;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_buttons__AQ2jI {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 14px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I {
  display: flex;
  margin-top: 20px;
  z-index: 2;
  align-items: center;
  width: 440px;
  height: 52px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(72, 150, 74, 0.185);
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  .Footer_iconmargin__J4jaF {
  margin-left: 30px;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  input {
  background-color: transparent;
  width: 232px;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

.Footer_footer_container__4_hv6
  .Footer_footer_container_inner__pYARW
  .Footer_links__ljyvp
  .Footer_message_section__Qnl_r
  .Footer_inputs__2GT6I
  button {
  width: 140px;
  height: 52px;
  border-radius: 10px;
  background-color: #var(--color-green);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  border: none;
}

.Footer_width__MKJbq {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
}

.Footer_para__LLzXb {
  font-size: 13px;
  color: #383838;
  font-weight: 400;
  margin-top: 34px;
}

.Footer_para_hide__389bI {
  font-size: 13px;
  font-weight: 400;
  display: none;
  margin-top: 16px;
}

.Footer_desktop1__0n_Bt hr {
  margin-top: 50px !important;
}

.Footer_category_link__1LXGT h1 {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #232323;
  font-family: samsung;
  line-height: 30px;
}

@media (max-width: 1400px) {
  .Footer_footer_container__4_hv6 {
    height: auto;
    padding-bottom: 20px;
  }

  .Footer_width__MKJbq {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
}

@media (max-width: 1025px) {
  .Footer_footer_container__4_hv6 {
    margin-top: 50px !important;
  }

  .Footer_links__ljyvp {
    flex-direction: column;
  }

  .Footer_phone__aGTNE p {
    font-size: 14px !important;
  }

  .Footer_social_links__EpJtL h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 769px) {
  .Footer_footer_container_inner__pYARW {
    display: flex;
    flex-direction: column-reverse;
    width: 80%;
  }

  .Footer_links__ljyvp {
    gap: 15px !important;
    margin-top: 26px !important;
  }

  .Footer_width__MKJbq > div:nth-child(2),
  .Footer_width__MKJbq > div:nth-child(4) {
    padding-left: 20px;
  }

  .Footer_message_section__Qnl_r {
    margin-top: 15px;
  }

  .Footer_message_section__Qnl_r h1 {
    font-size: 16px !important;
  }

  .Footer_message_section__Qnl_r
    .Footer_buttons__AQ2jI
    .Footer_app_store___WhtK
    p,
  .Footer_message_section__Qnl_r
    .Footer_buttons__AQ2jI
    .Footer_apple_store__ntTlf
    p {
    font-size: 11px !important;
  }

  .Footer_inputs__2GT6I {
    flex-direction: column;
    height: auto !important;
    background-color: transparent !important;
    border: none !important;
    width: auto !important;
    gap: 10px;
    margin-top: 24px !important;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 {
    display: flex;
    align-items: center;
    width: 100%;
    height: 59px;
    background-color: #fff;
    border-radius: 10px;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input {
    border-radius: 10px;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input::-moz-placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input:-ms-input-placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I .Footer_input_icon__IEE77 input::placeholder {
    color: #232323;
    opacity: 0.36;
  }

  .Footer_inputs__2GT6I button {
    width: 100% !important;
    height: 59px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
  }

  .Footer_buttons__AQ2jI {
    margin-top: 20px !important;
  }

  .Footer_footer_top_content__HDGvA {
    gap: 18px;
    margin-top: 22px !important;
    flex-direction: column-reverse;
  }

  .Footer_footer_top_content__HDGvA .Footer_social_links__EpJtL {
    flex-direction: column;
    gap: 14px !important;
  }

  .Footer_footer_top_content__HDGvA
    .Footer_contact_side__0GTpb
    .Footer_Logo__JY0tB {
    display: none;
  }

  .Footer_footer_top_content__HDGvA
    .Footer_contact_side__0GTpb
    .Footer_contacts__FhP_t {
    flex-direction: column;
    gap: 12px !important;
  }

  .Footer_desktop1__0n_Bt hr {
    display: none;
  }

  .Footer_para__LLzXb {
    text-align: center;
    display: none;
  }

  .Footer_para_hide__389bI {
    font-size: 12px;
    text-align: center;
    display: block;
    color: #383838;
  }

  .Footer_line__baWBq {
    margin-top: 22px !important;
  }

  .Footer_category_link__1LXGT h1 {
    font-size: 16px !important;
    font-weight: 400 !important;
  }

  .Footer_category_link__1LXGT .Footer_link__FTTwG p {
    font-size: 12px !important;
  }
}

.Button_btn__R8YYU {
  cursor: pointer;
  background-color: #var(--color-green);
  height: 72px;
  width: 553px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  border: none;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}

.Button_btn__R8YYU:hover {
  background-color: #4fa752;
}

.Button_create_btn__zdbUw {
  margin-top: 27px;
  width: 550px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid #var(--color-green);
  background-color: transparent;
  color: #var(--color-green);
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
}

.Button_create_btn__zdbUw:hover {
  color: #4fa752;
}

.Button_register_btn__xnvXV {
  width: 231px;
  height: 61px;
  background-color: var(--texthover);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.Button_buttonLabel__aU_a7,
.Button_register_btn__xnvXV {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.Button_buttonLabel__aU_a7 {
  margin-left: 28px;
}

@media (max-width: 769px) {
  .Button_btn__R8YYU {
    margin-top: 18px;
    margin-bottom: 19px;
  }

  .Button_btn__R8YYU,
  .Button_create_btn__zdbUw {
    font-weight: 500;
    font-size: 17px;
    width: 290px;
    height: 49px;
  }

  .Button_create_btn__zdbUw {
    margin-top: 25px;
  }
}

/*======== MY CSS =========*/
.main_container {
  width: 90%;
  margin: auto;
}
