html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #14151b;
}

header {
    background-color: #0e0f14;
}
    header .nav-link {
        color: #969faf;
        font-weight: 600;
        font-size: 1rem;
        line-height: calc(1.25 / .875);
    }
        header .nav-link:hover {
            color: #969faf;
            opacity: 0.85;
        }
    header .container {
        min-height: 44px;
    }
.nav-link img{
    height: 28px;
    margin-right:7px;
    vertical-align:top;
}
.nav-link span {
    vertical-align: middle;
}
.navbar-nav .nav-link {
    padding: .5rem 1rem;
}
.bp-color {
    color: #e33e3f !important;
}
footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
footer a {
    color: #969faf !important;
    text-decoration: none;
}
    footer a:hover {
        color: #969faf;
        opacity: 0.85;
    }

input[type="file"]::file-selector-button {
    background-color: #0e0f14;
    color: #969faf;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-control:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem #173e69 !important;
}

body {
        background-color: #14151b;
        color: #e8e9ee;
    }

    .form-wrapper {
        /* max-width: 70%; */
        margin: 40px auto;
        padding: 0;
    }

	/*@@media (min-width: 992px) {
        .form-wrapper {
            max-width: 50%;
        }
    }

    @@media (min-width: 1200px) {
        .form-wrapper {
            max-width: 40%;
        }
    }

    @@media (min-width: 1400px) {
        .form-wrapper {
            max-width: 500px;
        }
    } */

    .form-card {
        background-color: #1d1f27;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
        border: 1px solid #2a2d37;
    }

    .form-control, .form-range {
        background-color: #2a2d37;
        border: 1px solid #3a3d48;
        color: #f1f1f1;
        font-size: 16px;
    }

        .form-control:focus {
            background-color: #2a2d37;
            color: #fff;
            border-color: #6c63ff;
            box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.3);
        }

    .form-check-label {
        color: #d4d4d8;
    }

    label {
        font-weight: 500;
    }

    /* Remove number input spinner buttons */
    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

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

    .form-range {
        background-color: transparent !important;
        border: none !important;
    }

    /* .form-value {
        background-color: #2a2d37;
        border: 1px solid #3a3d48;
        color: #f1f1f1;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        font-size: 1rem;
        text-align: right;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    } */
    .form-value {
        /* background-color: #2a2d37;
        border: 1px solid #3a3d48; */
        color: #f1f1f1;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        font-size: 1rem;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center; /* center align */
    }

        /* Special style for Your Total */
        .form-value.your-total {
            color: #4caf50; /* nice green */
            font-size: 1.5rem;
            font-weight: 700;
        }


    .icon-button {
        width: 40px;
        height: 40px;
        border: none;
        background-color: #2c2d32;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        position: relative; /* needed for the line */
        transition: background-color 0.2s;
    }

        .icon-button:hover {
            background-color: #3a3b40;
        }

        /* Cross line when hidden */
        .icon-button.crossed::after {
            content: "";
            position: absolute;
            width: 24px; /* adjust size of the slash */
            height: 2px; /* thickness of the line */
            background-color: white; /* or icon color */
            transform: rotate(45deg);
        }