/*import all css here in one file*/
@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i");
@import url("sb-admin-2.min.css");
@import url("../vendor/fa5/css/all.min.css");
@import url("../vendor/toastr/toastr.min.css");
@import url("../vendor/sweetalert/sweetalert.css");

.iframe_error {width:100%;height:100%;border: #efefef 1px solid;}

/* LuckCreators Branding - Red Orange Color Scheme */
:root {
    --primary: #FF4500;
    --primary-dark: #cc3700;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --danger: #dc3545;
    --secondary: #858796;
    --dark: #5a5c69;
}

.bg-gradient-primary {
    background-color: var(--primary) !important;
    background-image: linear-gradient(180deg, var(--primary) 10%, var(--primary-dark) 100%) !important;
    background-size: cover !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-left-primary {
    border-left: .25rem solid var(--primary) !important;
}

.border-bottom-primary {
    border-bottom: .25rem solid var(--primary) !important;
}

.sidebar-dark .nav-item.active .nav-link {
    color: #fff !important;
}

.sidebar-dark .nav-item.active .nav-link i {
    color: #fff !important;
}

/* Success overrides */
.btn-success, .bg-success {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
}

.text-success {
    color: var(--success) !important;
}

/* Warning overrides */
.btn-warning, .bg-warning {
    background-color: var(--warning) !important;
    border-color: var(--warning) !important;
}

.text-warning {
    color: var(--warning) !important;
}

/* Logo and Header tweaks */
.sidebar-brand-text {
    font-weight: 800;
    text-transform: uppercase;
}