html {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
}
body {
    margin:0;
    padding:0;
    direction: rtl;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    color: #515151;
}
body.no_scroll {
    height: 100vh;
    overflow: hidden;
}
input {
    font-family: Heebo-Regular;
    border-width: 0 0 1px 0;
}
button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
button:focus {
    outline: none;
}
button:hover {
    outline: none;
}
button:focus {
     outline: none;
 }
a, a:focus, a:active {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
    padding:0;
    margin:0;
}
img {
    display: block;
    width: 100%;
}

h1,h2,h3,h4 {
    font-weight: normal;
    margin:0;
}
p {
    margin:0;
    padding:0;
}

/* turn off number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.error_text {
    color:red;
    font-size: 12px;
    position: absolute;
    right:0;
}
.error input {
    border-color: red;
}

/* Device State indicator classes - for determining mobile/tablet/desktop */
.state-indicator {
    position: relative;
    z-index: 4;
}
.show_on_desktop {
    display: none;
}
@media (min-width: 768px) {
    .state-indicator {
        z-index: 3;
    }
}
@media (min-width: 1200px) {
    .show_on_desktop {
        display: block;
    }
    .state-indicator {
        z-index: 2;
    }
}
@media (min-width: 1500) {
    .state-indicator {
        z-index: 1;
    }
}