/* -----------Theme Settings--------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bg-theme {
    background-color: #e63946;
}

input:not([type="checkbox"]):not([type="radio"]) {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #555;
    border-radius: 5px !important;
    padding-left: 30px !important;
    background: transparent;
    font-size: 16px;
}

textarea {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #555 !important;
    border-radius: 5px !important;
    padding-left: 30px !important;
    background: transparent !important;
    font-size: 16px;
}
/* input:focus,
input:hover,
input:active {
    outline: none !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
} */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

input::placeholder,
textarea::placeholder {
    /* color: #eee; */
    text-transform: uppercase;
}

select option {
    background: #454545 !important;
    color: white;
}

select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

select {
    width: 100%;
    padding: 10px 20px 10px 35px !important;
    padding-left: 30px !important;
    border: 1px solid #555 !important;
    border-radius: 5px !important;
    background: transparent;
    color: white;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    box-shadow: 0px 0px 3px #e5e5e5;
    outline: 1px solid #454545;
    text-transform: uppercase !important;
}

select::placeholder,
select option:first-child {
    text-transform: uppercase !important;
}

select:focus,
select:hover,
select:active {
    outline: 1px solid #454545 !important;
    box-shadow: 0px 0px 3px #0e0e0e;
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
}
input:focus,
input:hover,
input:active {
    outline: 1px solid #454545 !important;
    box-shadow: 0px 0px 3px #0e0e0e;
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
}

/* Invalid input after interaction (not placeholder) */
input:invalid:not(:placeholder-shown) {
    outline-color: #dc3545;
    /* box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.2); */
}

/* Valid input after interaction */
input:valid:not(:placeholder-shown) {
    outline-color: #28a745;
    /* box-shadow: 0 0 0 0.15rem rgba(40, 167, 69, 0.2); */
}
.theme-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* Buttons solid versions */
.theme-btn-primary {
    color: #fff;
    background-color: #5f0000;
}

.theme-btn-primary:hover {
    color: #fff;
    background-color: #5f0000;
}

.theme-btn-secondary {
    background: #d49d1c !important;
    color: #fff;
}

.theme-btn-secondary:hover {
    background: #c59118;
    color: #fff;
}

.theme-btn-white {
    background: #fff;
    color: #5f0000;
}

.theme-btn-white:hover {
    background: #ddd;
}

.theme-btn-dark {
    background: #454545;
    color: #fff;
}

.theme-btn-dark:hover {
    background: #252525;
    color: #fff;
}
/* Outline Buttons */
.theme-btn-outline-primary {
    background: transparent;
    color: #5f0000;
    border: 2px solid #5f0000 !important;
    transition: all 0.8s ease-in-out;
}

.theme-btn-outline-primary:hover {
    background: #5f0000;
    color: #fff;
}

.theme-btn-outline-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d49d1c !important;
}

.theme-btn-outline-secondary:hover {
    background: #d49d1c;
    color: #fff;
}

.theme-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff !important;
}

.theme-btn-outline-white:hover {
    background: #fff;
    color: #5f0000;
}

.theme-btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 2px solid #454545 !important;
}

.theme-btn-outline-dark:hover {
    background: #454545;
    color: #fff;
}
nav {
    z-index: 333;
}
#toast-container {
    z-index: 9999999999 !important;
    background: transparent;
}

/* Other Settings */

