html {
  direction: rtl;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* for removing the highlight */
}

body {
  margin: 0;
}

:root {
  --full-height: 100vh;
}

@​supports (height: 100dvh) {
  :root {
    --full-height: 100dvh;
  }
}

:root {
  --primary: #25b8c5;
  --secondary: #004e7c;
  --tertiary: #ffd000;
  --green: #79a743;
  --green-node: #edfcf1;
  --blue-node: #edf6fc;
  --orange: #e77c3c;
  --orange-node: #fdf7f3;
  --red: #ea4335;
  --light-yellow: rgba(255, 236, 153, 1);
  --blue: #1a73e8;
  --dark-blue: #0b57d0;
  --white: #fff;
  --black: #000;
  --color-neutral-100: #f9f9f9;
  --color-neutral-200: #e0e0e2;
  --color-neutral-300: #c0c2c5;
  --color-neutral-400: #a1a3a8;
  --color-neutral-500: #81858b;
  --color-neutral-600: #62666d;
  --color-neutral-700: #424750;
  --color-neutral-800: #232933;
  --color-neutral-900: #0c0c0c;
}

button {
  background: var(--blue);
  color: var(--white);
  font-family: "iransansxv", tahoma;
  font-variation-settings: "wght" 400, "dots" 3;
  font-size: 1.125em;
  border: 0;
  border-radius: 12px;
  height: 52px;
  width: max-content;
  padding: 0 20px;
  transition: all 0.3s ease;
}

button:disabled {
  background: var(--color-neutral-200);
  color: var(--color-neutral-500);
}

@media (hover: hover) {
  button:hover {
    background: #1a71e8;
    color: #fff;
    cursor: pointer;
  }

  button:disabled:hover {
    background: var(--color-neutral-200);
    color: var(--color-neutral-500);
    cursor: default;
  }
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.section {
  padding: 80px 0;
}

.content-container {
  display: flex;
  max-width: 1200px;
  width: 95%;
  margin: 80px auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input[type="search"] {
  background-image: url("../img/search-ico.svg") !important;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
  background-color: transparent !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none !important;
}
