body {
    font-family: Poppins,sans-serif;
    background-color: white;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.default-button {
    padding: 16px 30px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.default-button:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.9);
}

.footer-link {
    color: #323335;
    text-decoration: underline;
    font-family: Roboto,sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
}

.footer-link:hover {
    color: #535353;
    text-decoration: underline;
}

.footer-links-wrapper {
    margin-top: 180px;
}

#logo {
    width: 146px;
    margin-bottom: 50px;
}

.form-input {
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    border: 1px solid #c6c6c6;
    border-radius: 5px !important;
    color: #323335;
    font-size: 16px;
    font-family: inherit;
    line-height: 1.25;
    background-color: #fff;
    box-shadow: none;
    height: 50px;
}

#login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.margin-bottom-row {
    margin-bottom: 30px;
}

a {
    text-decoration: underline;
    color: black;
}

.disabled {
    background-color: #E8E8E8;
}

.home-main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error-dynamic-weight {
    margin-bottom: 37px !important;
}

/* Media phone responsive */
@media only screen and (max-width: 600px) {
    .footer-links-wrapper {
        margin-top: 120px;
    }

    .responsive-column {
        margin-bottom: 10px;
    }

    .home-page-button {
        width: 180px;
        display: block;
        margin: auto;
    }

    .home-main-container {
        margin-top: 30px;
    }
}

@media (min-width: 600px) and (max-width: 1025px) {
    .padding-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .p-left-0 {
        padding-left: 0;
    }

    #login-container {
        width: 500px !important;
    }

    .error-dynamic-calculation-wrapper {
        margin-bottom: 37px !important;
    }

    .responsive-column {
        margin-bottom: 10px;
    }

    .home-page-button {
        width: 180px;
        display: block;
        margin: auto;
    }
}

@media screen and (min-width: 1200px) {
    .main-container {
        width: 1100px;
    }

    .padding-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .p-left-0 {
        padding-left: 0;
    }

    #login-container {
        width: 500px !important;
    }
}

@media (min-width: 753px) and (max-width: 1200px) {
    .fixed-mobile-responsive {
        margin-bottom: 73px !important;
    }
}
