body {
    height: 100%;
    width: 100%;

    background: url(https://assets-global.website-files.com/641020f6523ba60d642cb5e5/64a5f3a7cbc6412be24ed066_08-noise.png);
    animation: 0.9s infinite noise;

    margin: 0 0 0 0;

    cursor: none;
}

.custom-cursor {
    position: absolute;
    width: 64px;
    /* Skala kursora */
    height: 64px;
    /* Skala kursora */
    background: url('icons/custom-cursor.svg') no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 0.65;
    /* Ustawienie początkowej przezroczystości */
    transition: opacity 0.5s ease;
    /* Definiowanie animacji przejścia */
    pointer-events: none;
    /* Zapobiega interakcjom z elementem */
}

.hide-cursor {
    opacity: 0;
}

* {
    box-sizing: border-box;
}

header {
    height: 80px;
    width: 90%;
    margin: auto;
    border-bottom: 1px solid black;
}

.navbar-toggler-custom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #1675F2;
    width: 50px;
    height: 50px;
}

div.navbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

div.mobile-navbar-panel {
    display: none;
}

.close-mobile-navbar-panel-hidden {
    display: none;
}

button.navbar-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    margin: 0 0 0 0;
}

button.navbar-button>svg {
    width: 35px;
    height: 35px;
}

.navbar-hidden {
    display: none !important;
}

.custom-bg-color {
    background-color: rgba(255, 255, 255, 0) !important;
}

.custom-position {
    display: flex !important;
    flex-direction: column !important;
    justify-content: end !important;
    width: 100% !important;
    padding: 0 0 0 0 !important;
}

ul.navbar-nav-mobile.custom-width-mobile {
    display: none;
}

.custom-font {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: black;
}

a.main-userpage-header-button {

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 30px;
    border: 1px solid black;
    border-radius: 0;
}

a.main-userpage-header-button:hover {
    cursor: pointer;
}

div.registered-page-position {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.registered-page-position>p {
    text-align: center;
}

.custom-font:hover {
    color: #F2A616 !important;
}

.custom-font:focus {
    color: #F2A616 !important;
}

.custom-font-logo {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 255, 255);
    margin: 0 0 0 0;
    line-height: 2rem;
    font-size: 2rem;
    text-shadow: 2px 4px 0px #FF5E00;
    -webkit-text-stroke: 2px #FF5E00;
    text-decoration: none;
}

.custom-layout-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.custom-layout-logo>img {
    height: 70px;
    margin: 0 10px 0 0;
}

.dropdown-menu-custom-bg-color {
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0, 0);
}

.dropdown-menu-custom-position {
    padding: 0 0 0 0;
    margin: 120px 0 0 0;
}

.nav-item-custom-postion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 50px;
}

.nav-icon {
    padding: 8px 8px 8px 8px;
}

nav {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

header>nav>h1 {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 0 0;
    line-height: 2rem;
    font-size: 2rem;
    text-shadow: 2px 4px 0px #FF5E00;
    -webkit-text-stroke: 2px #FF5E00;
}

header ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.logo {
    animation: rotate-slice 20s infinite linear;
    transform-style: preserve-3d;
    will-change: transform;
}

.animate-move-right {
    animation: moveRight 1s linear forwards, fadeIn 1s ease-in-out forwards;
    overflow: clip;
}

.animate-move-left {
    animation: moveLeft 1s linear forwards;
}

@keyframes moveRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes moveLeft {
    from {
        transform: translateX(90%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;

    }
}

.pie-chart-logo {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #F2A616;
    border-radius: 50%;
    transform: rotate(-90deg);
    margin: 0 0 10px 0;
}


main {
    height: 80vh;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
}

main.check-balance-page {
    height: auto;
}

.check-balance-main-container {
    height: 70%;
    width: 100%;
}

.log-in-sign-up-main-container {
    height: 100%;
    display: flex;
    flex-direction: row;
}



.left-side {
    height: inherit;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.logo-and-header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 80%;
}

.logo-and-header>img {
    height: 120px;
}


.logo-and-header>h1 {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    line-height: 4rem;
    font-size: 4rem;
    color: rgb(255, 255, 255);
    text-shadow: 2px 4px 0px #FF5E00;
    -webkit-text-stroke: 2px #FF5E00;
    margin: 3rem 2rem 3rem 2rem;
}

.logo-and-header>h1::before {
    content: "    spy\A";
    white-space: pre;
}

.left-side>p {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-top: 50px;
    width: 80%;
}

.right-side {
    height: inherit;
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;

}

.right-side h2 {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 3rem;
    margin: 0 0 0 0;
}

.right-side h2.log-in-title {
    -webkit-text-stroke: 2px rgb(0, 0, 0, 0.5);
}

.right-side h2.log-in-title:hover {
    -webkit-text-stroke: 2px #F2A616;
}

.right-side h2.sign-up-title {
    -webkit-text-stroke: 2px rgb(0, 0, 0, 0.5);
}

.right-side h2.sign-up-title:hover {
    -webkit-text-stroke: 2px #1675F2;
}

.box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    height: 100%;
    padding-top: 10px;
}

.home-page-description {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
    margin-bottom: 30px;
}

.home-page-description>p {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin: 0 0 0 10px;
}


.home-page-description-decoration-hovered {
    text-decoration: underline;
    /* color: #F2A616; */
}

.main-page-icon-hovered {
    fill: #F2A616 !important;
}

.application-form-value-empty {
    border: 2px solid hsl(0, 100%, 74%) !important;
    color: #FF5E00;
    background-image: url(icons/icon-error.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px 15px;
}

.pointer-graphics {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.log-in {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 500px;
    padding: 0 20px 0 20px;
    margin: 20px 0 0 0;
}

.line-outline {
    border-top: 2px solid black;
    width: 95%;
    /* transform: rotate(45deg);
    overflow: hidden; poźniej trzeba bedzie to ogrnąć, prawdopodobnie trzeba bedzie przemodelowac trochę strukturę żeby to działało*/
    /* margin:  0 0 50px 0; */
}

.sign-up {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 500px;
    padding: 0 20px 0 20px;
    margin: 20px 0 0 0;
}

.input-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    margin: 10px 0 0 0
}

.input-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 5px 0 5px 0;

}

.input-field>input {
    width: 100%;
    max-width: 270px;
    height: 35px;
    margin: 5px 0 5px 0;
    padding: 0 15px 0 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* This is class witch is added when input field is not filled with data */
.input-field>input.not-filled {
    border: 2px solid hsl(0, 100%, 74%) !important;
}

span.input-name {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    width: 100%;
    max-width: 270px;
    font-size: 0.8rem;

}

button {
    width: 100%;
    max-width: 270px;
    height: 35px;
    margin: 20px 0 20px 0;
}

button.log-in-button {
    background-color: rgb(22, 117, 242, 0.8);
    border: 2px solid rgb(22, 117, 242);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1rem;
}

button.log-in-button:hover {
    background-color: rgb(22, 117, 242);
    cursor: pointer;
}

.button-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

button.sign-up-button {
    background-color: #FF5E00;
    order: 2px solid #FF5E00;
    border-radius: 10px;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1rem;
}


button.sign-up-button:hover {
    cursor: pointer;
}

.transaction-form {
    height: 95%;
    width: 100%;

    border: 1px solid black;
    margin: 10px 10px 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0 20px 0;

    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 1.3rem;
}

.transaction-form>h2 {
    font-weight: 400;
    font-size: 1.3rem;
    color: black;
    margin: 0 0 0 0;
}

.input-form {
    height: 90%;
    width: 95%;
    background-color: rgb(255, 255, 255, 0.2);
    border: 1px solid black;
    /* border-radius: 15px; */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 20px 30px 10px 30px;
}

.form-amount-date {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-input {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.amount-input-currency {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: end;
}

.form-input>input {
    height: 35px;
    width: 90%;
    margin: 5px 0 5px 0;
    padding: 0 15px 0 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0);
}

.amount-input {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    appearance: none;
    border: none !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 0) !important;
    outline: none;
    border-bottom: .15em solid black !important;
    height: 100%;
    width: 60%;
    margin-bottom: 5px;
}

.amount-input-error {

    border-bottom: .15em solid #FF5E00 !important;
    color: #FF5E00;
    background-image: url(icons/icon-error.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px 15px;

}

.date-input {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;

}

.date-input-error {
    border: 2px solid #FF5E00 !important;
    color: #FF5E00;
    background-image: url(icons/icon-error.svg);
    background-repeat: no-repeat;
    background-position: right 50px center;
    background-size: 15px 15px;
}

span.currency {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3rem;
    margin: 0 15px 0 15px;
}

span.currency-error {
    color: #FF5E00;
}

div.form-input-category-container {
    width: 100%;
}

fieldset.category {
    width: 100%;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1.3rem;

    border: none;

    margin: 10px 0 0 0;
    padding: 0 0 0 0;
}

fieldset.category-error {
    border: 2px solid #FF5E00
}

fieldset.category legend {
    font-size: 1.3rem;
}

fieldset.category-error legend {
    color: #FF5E00
}

.form-input-note {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;


}

.form-input-note>textarea {
    height: 100px;
    width: 100%;
    margin: 5px 0 0 0;
    padding: 15px 15px 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.form-check {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    padding: 0 0 0 0 !important;
    margin: 0 50px 5px 0 !important;
}

.form-check-input {
    margin: 0 0 0 0 !important;
}

.form-check>label {

    margin-left: 10px;
}


.radio-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.form-button-action {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: end;
    width: 100%;
}

.button-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-button-action button {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    margin: 0 0 0 0;
}

.button-action:hover {
    text-decoration: underline;
}

.done-button>img {
    height: 25px;
}

.check-balance-main-container {
    width: 100%;
    height: 100%;
    margin: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.period-for-data {
    height: 50px;
    width: 100%;

    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 18px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px 5px 0px 5px;

    background-color: none;
    border: #FF5E00 solid 2px;
    border-bottom: 0;
}

.user-greeting {
    /* text-decoration: underline; */
    font-size: 18px;
    padding-right: 5px;
}

.user-name {
    font-weight: 500;
    /* font-size: 24px; */
    color: #F2A616;
    padding-right: 0;
}


.check-balance-description-button {
    /* background-color: none;
    border: #FF5E00 solid 2px;
    border-bottom: 0; */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 40px;
    width: 100%;
    padding-left: 5px;

}

.check-balance-description-button:hover {
    background: linear-gradient(to right, rgb(242, 166, 22, 0.2), rgba(242, 166, 22, 0));
}

.check-balance-description-button.clicked {
    background: linear-gradient(to right, rgb(242, 166, 22, 0.2), rgba(242, 166, 22, 0));
}

.check-balance-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;

    background-color: none;
    border: #FF5E00 solid 2px;
    border-top: 0;
    width: 100%;

    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;

    padding: 0 5px 0 5px;

}

.check-balance-description span {
    font-weight: 300;
}


.check-balance-description.enable {
    max-height: 600px;
}

#time-frame-form {
    height: 100%;

    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;

    padding-right: 5px;
}

#time-frame-form>label {
    margin: 0 30px 0 0;
}

#time-frame-form>select {
    width: 270px;
    height: 80%;
    border-radius: 8px;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    color: black;
}

/* .time-frame-submit-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 60px;
    background: none;
    border: none;
    fill: rgb(0, 0, 0, 0.);

    margin: 0 0 0 0;
    padding: 0 0 0 0;
    
}

.time-frame-submit-button > svg{
    height: 70%;
}

.time-frame-submit-button > svg:hover{
    fill: #1675F2;
    cursor: pointer;
    to był styl dla guzika ale potem to wykorzystam do add income expense żeby podświetlać guziczek
} */

.incomes-expenses-charts {
    width: 100%;
    height: 450px;
    display: flex;
    /* flex-direction: row; */
    justify-content: space-between;
    margin: 5px 5px 5px 5px;
}

.incomes-charts {
    width: 50%;
    height: 100%;
    border: 1px solid black;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    margin-right: 5px;

}

.incomes-doughnut-chart {
    height: 300px !important;
    width: 300px !important;
}

.chart-name {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px black;

    margin: 0 0 0 0;
    padding: 10px 10px 10px 10px;
    font-size: 35px;
}

.chart-sum-value {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px black;

    margin: 0 0 0 0;
    padding: 10px 10px 10px 10px;
    font-size: 35px;
}

.expenses-charts {
    width: 50%;
    height: 100%;
    border: 1px solid black;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    margin-left: 5px;
}

.bilans-score {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    height: 80px;
    width: 100%;
    border: 1px solid black;
    margin: 5px 5px 5px 5px;
}

.bilans-score span {
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px black;

    margin: 0 0 0 0;
    padding: 10px 10px 10px 10px;
    font-size: 35px;
}

.bilans-plus {
    border: 2px solid #0DF205;
}

.bilans-plus span {
    -webkit-text-stroke: 1px #0DF205;
}

.bilans-plus span.bilans-score-value {
    color: rgb(13, 242, 5, 0.2);
    -webkit-text-stroke: 2px #0DF205;
}

.bilans-minus {
    border: 2px solid #FF5E00;
}

.bilans-minus span {
    -webkit-text-stroke: 1px #FF5E00;
}

.bilans-minus span.bilans-score-value {
    color: rgb(255, 94, 0, 0.2);
    -webkit-text-stroke: 2px #FF5E00;
}



.savings-chart {
    height: 400px;
    width: 100%;
    border: 1px solid black;
    margin: 5px 5px 5px 5px;
}

.savings-line-chart {
    width: 100% !important;
    height: auto !important;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}


.footer {
    border-top: 1px solid black;
    height: 80px;
    width: 90%;
    margin: auto;
}

.footer-custom-font div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footer-custom-font span {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
}

.validation-error-message {
    color: #FF5E00;
}


/* settings - style - beginning */

.settings-main-frame {
    height: 95%;
    width: 100%;

    border: 1px solid black;
    margin: 10px 10px 10px 10px;

    display: flex;
    flex-direction: row;

}

.settings-fields {
    width: 25%;
    border-right: 1px solid black;

    padding: 10px 10px 10px 10px;

    display: flex;
    flex-direction: column;
}

.settings-fields-name {
    margin-bottom: 10px;

    font-family: "Rubik", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;

    background-image: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

.settings-fields-name:hover {
    text-decoration: underline;
    cursor: pointer;

}

.settings-options {
    height: 100%;
    width: 75%;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;

    padding: 10px 10px 10px 10px;
}

.settings-data {

    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid black;

    margin: 5px 0px 5px 0px;
    padding: 10px 10px 10px 10px;

    font-family: "Rubik", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.settings-data-limit {

    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    border: 1px solid black;

    margin: 5px 0px 5px 0px;
    padding: 10px 10px 10px 10px;

    font-family: "Rubik", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

h2.settings-data-title {
    height: 35px;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 0 0;
}

.change-username {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.settings-data-input {
    width: 270px;
    height: 30px;
    margin: 5px 0 5px 0;
    padding: 0 15px 0 15px;
    border: 1px solid rgb(0, 0, 0, 0.2);
    border-radius: 10px;
}

.category-data-input {

    font-family: "Rubik", sans-serif;
    font-weight: 300;
    font-size: 16px;

    width: 270px;
    height: 35px;
    margin: 5px 0 5px 0;
    padding: 0 15px 0 15px;
    border: 1px solid rgb(0, 0, 0, 0.2);
    border-radius: 10px;
}

.settings-data-input-error {
    border: 2px solid #FF5E00 !important;
    color: #FF5E00;
    background-image: url(icons/icon-error.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px 15px;
}

.settings-data-button {
    height: 30px;
    background-color: rgb(22, 117, 242, 0.8);
    color: white;
    border: 1px solid rgb(22, 117, 242, 0.2);
    border-radius: 10px;
    margin: 5px 0 5px 10px;
    font-weight: 600;
}

.settings-data-button-limit {
    height: 30px;
    /* background-color: rgb(22, 117, 242, 0.1); */
    color: rgb(22, 117, 242, 0.8);
    border: 1px solid rgb(22, 117, 242, 0.8);
    border-radius: 10px;

    margin: 5px 0 5px 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.settings-data-button:hover {
    cursor: pointer;
}

.change-password {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.change-password-line {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2.5px 0 2.5px 0;
}

.change-password-input-label {
    margin: 0 30px 0 0;
}

.change-password-button {
    margin-left: 0;
}

.delete-button {
    background-color: rgb(255, 94, 0, 0.8);
    border: 1px solid rgb(255, 94, 0, 0.2);
    margin: 5px 0 5px 10px;
    width: 130px;
}

.settings-category-list {
    height: 300px;
    width: 100%;
    background-color: rgb(255, 255, 255, 0.95);
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0, 0.2);
    padding: 5px 5px 5px 5px;
    margin: 5px 0 5px 0;
    overflow-y: scroll;

    display: flex;
    flex-direction: column;

}

.settings-category-list-limit {
    height: 100%;
    max-height: 450px;
    width: 100%;
    /* background-color: rgb(255, 255, 255, 0.95); */
    /* border-radius: 10px; */
    border: 1px solid rgb(0, 0, 0);
    padding: 5px 5px 5px 5px;
    margin: 5px 0 5px 0;

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

}

.settings-category-list-limit-input {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1.3rem;
    appearance: none;
    border: none !important;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 0) !important;
    outline: none;
    border-bottom: 1px solid rgb(0, 0, 0, 0.2) !important;
    height: 100%;
    width: 100px;
    margin-bottom: 5px;
    text-align: right;
}

.settings-single-category {
    margin: 10px 5px 10px 5px;
}

.settings-add-new-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.settings-category-delete-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0 0 0 5px;
    cursor: pointer;
}

.settings-category-delete-button svg {
    display: block;
    width: 12px;
    height: 12px;

    fill: #FF5E00;
}

.settings-delete-account {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.limit-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0 10px 0;
}

.limit-card {
    height: auto;
    width: 350px;
    display: flex;
    flex-direction: column;
    font-size: 0.8em;
    /* border: 1px solid black; */
}

.limit-name {
    font-weight: 400;
    margin-bottom: 10px;
}

/* settings - style - end */


/* media-queries */

@media (max-height: 800px) {

    .right-side h2 {
        font-size: 2.6rem;
    }

    .left-side>p {
        font-size: 14px;
        margin-top: 25px;
    }

    .log-in {
        height: 400px;
    }

    .sign-up {
        height: 400px;
    }
}

@media (max-width: 1450px) {

    .right-side h2 {
        font-size: 2.6rem;
    }

}

@media (max-width: 992px) {

    .custom-position {
        display: flex !important;
        flex-direction: row !important;
        justify-content: end !important;
        width: 100% !important;
        padding: 0 0 0 0 !important;
    }

    .incomes-expenses-charts {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 5px 5px 5px 5px;
    }

    .incomes-charts {
        height: 100%;
        width: 100%;
        margin-right: 0px;
        margin-bottom: 5px;

    }

    .expenses-charts {
        height: 100%;
        width: 100%;
        margin-left: 0px;
        margin-top: 5px;
    }

    .collapse:not(.show) {
        display: none !important;
    }

    .custom-layout-logo {
        display: none;
    }

    main.user-page {
        height: 75vh;
    }

    .form-amount-date {
        flex-direction: column;
    }

    .form-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 10px 0 10px 0;
    }

    .navbar-collapse-custom-background {
        background-color: white !important;
        background: url(https://assets-global.website-files.com/641020f6523ba60d642cb5e5/64a5f3a7cbc6412be24ed066_08-noise.png);
        animation: 0.8s infinite noise;
        border: 1px solid black;
    }

}

/* Mobile devices (portrait, landscape) */

@media (max-width: 1280px) {

    main {
        height: 100%;
        width: 95%;
    }

    main.user-page {
        height: 75vh;
    }

    .log-in-sign-up-main-container {
        height: 100%;
        width: 95%;
        display: flex;
        flex-direction: column;
    }

    .logo-and-header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 80%;
    }

    .logo-and-header>h1 {
        font-family: "Rubik Mono One", monospace;
        font-weight: 400;
        font-style: normal;
        line-height: 2rem;
        font-size: 2rem;
        color: rgb(255, 255, 255);
        text-shadow: 2px 4px 0px #FF5E00;
        -webkit-text-stroke: 2px #FF5E00;
        margin: 30px 0 0 0;
    }

    .logo-and-header>img {
        height: 70px;
    }

    .description {
        display: none;
    }

    .left-side {
        height: inherit;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .right-side {
        height: inherit;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }

    .log-in {
        height: 100%;
    }

    .sign-up {
        height: 100%;
    }

    .collapse:not(.show) {
        display: none !important;
    }

    .custom-layout-logo {
        display: none;
    }

    header {
        width: 95%;
    }

    nav {
        justify-content: flex-end;
        align-items: center;
    }

    .form-amount-date {
        flex-direction: column;
    }

    .form-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 10px 0 10px 0;
    }

    .navbar-collapse-custom-background {
        background-color: white !important;
        background: url(https://assets-global.website-files.com/641020f6523ba60d642cb5e5/64a5f3a7cbc6412be24ed066_08-noise.png);
        animation: 0.8s infinite noise;
        border: 1px solid black;
    }

    ul.navbar-nav.custom-width {
        display: none;
    }

    div.mobile-navbar-panel {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 255px;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;

        background-color: white !important;
        background: url(https://assets-global.website-files.com/641020f6523ba60d642cb5e5/64a5f3a7cbc6412be24ed066_08-noise.png);
        animation: 0.8s infinite noise;
        border: 1px solid black;


        z-index: 999;
        opacity: 1;
    }

    div.mobile-navbar-panel-hidden {
        display: none;
    }

    .close-mobile-navbar-panel {

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        position: fixed;
        top: 0;
        left: 0;

        border: none;
        background-color: none;

        width: 25px;
        height: 25px;

        margin: 15px 0 0 15px;
        padding: 0 0 0 0;
        z-index: 1001;
    }

    .close-mobile-navbar-panel svg {
        width: 25px;
        height: 25px;
    }

    header ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;

        position: fixed;
        top: 0;
        right: 0;


        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;

        z-index: 1000;
    }

    .nav-item-custom-postion {
        justify-content: flex-end;

        margin: 0 15px 0 0;

    }

    .nav-item-mobile-custom-position {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        padding-right: 15px;
        align-items: center;
        height: 50px;

    }

    .mobile-navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }


    .user-greeting-click-here {
        display: none;
    }

    .time-period-label {
        display: none;
    }

    #time-frame-form>select {
        width: 150px;
    }

    .chart-name {
        font-size: 25px;
    }

    .chart-sum-value {
        font-size: 25px;
    }

    .bilans-score span {
        font-size: 20px;
    }

    .settings-main-frame {
        flex-direction: column;
    }

    .settings-fields {
        width: 100%;
        border-bottom: 1px solid black;
        flex-direction: column;
    }

    .settings-fields form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .settings-options {
        width: 100%;
    }

    .home-page-description {
        display: none;
    }

}

@media (max-width: 800px) {


    .box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .input-field>input {
        max-width: none;
    }

    span.input-name {
        max-width: none;

    }

    .input-table {
        align-items: flex-start;
    }

    .right-side {
        height: inherit;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .settings-options {
        width: 100%;
        flex-direction: column !important;
    }

    .change-username {
        flex-direction: column;
        align-items: flex-start;

    }

    .change-username>span {
        margin: 0 0 10px 0;
    }

    .settings-data-input {
        width: 240px;
    }

    .settings-data-button {
        margin: 5px 0 5px 10px;
    }


    .change-password-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .settings-delete-account {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Laptops and desktops (small screens) */

@media (min-width: 1281px) and (max-width: 1366px) {}

/* Laptops and desktops (medium-screens)*/

@media (min-width: 1367px) and (min-width:1600px) {}



@keyframes rotate-slice {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes noise {
    0% {
        background-position: 0 0;
    }

    10% {
        background-position: -5% -10%;
    }

    20% {
        background-position: -10% 5%;
    }

    30% {
        background-position: 5% -5%;
    }

    40% {
        background-position: -5% 10%;
    }

    50% {
        background-position: 5% 5%;
    }

    60% {
        background-position: 10% 0;
    }

    70% {
        background-position: 5% 10%;
    }

    80% {
        background-position: -10% 5%;
    }

    90% {
        background-position: 10% 10%;
    }

    100% {
        background-position: 0 0;
    }
}