/*
* This project uses the Inter typeface
* Copyright (c) 2016-2020 The Inter Project Authors.
* "Inter" is trademark of Rasmus Andersson.
* License can be found at http://scripts.sil.org/OFL
*/

:root {
    --primary-theme: #0f5fa6;
}
html {
    font-family: "Inter", sans-serif;
}

/* Overriding flexisaf default icon size */
i[class^="iconsax-"] {
    font-size: 16px !important;
}

/* Hiding spin buttons on number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

body {
    overflow-x: hidden;
}

a {
    color: var(--primary-theme);
}

/* Overriding flexisaf .login-brand on mobile */
@media screen and (max-width: 600px) {
    .flexi-login-brand {
        position: relative !important;
    }
}
