.search, .search:active, .search:hover {
    background-color: #FE462F;
    color: #fff;
    /* box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / .25); */
}

.search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .10rem;
    width: 35px;
    height: 35px;
    border: 1px solid #FE462F;
    align-items: center;
    /* border-radius: 4px; */
    font-size: 1.125rem;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}

.search-box {
    position: relative;
    /* display: inline-block; */
}

.search-input {
    width: 0;
    padding: 8px 12px;
    outline: none;
    transition: width 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    position: relative;
    margin-left: auto;
    z-index: 99;
}

/* Desktop only */
@media (min-width: 768px) {
    .search-input {
        width: 75%;
        opacity: 1;
        padding: 8px 12px;
        z-index: 99;
    }
}

.search-input::placeholder {
    color: white;
    opacity: 1;
}

.search-input.show {
    width: 75%; /* expand width */
    padding: 8px 12px;
    opacity: 1;
}

.search-input-regular {
    width: 100%;
    padding: 8px 12px;
    outline: none;
}

.search-button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

.search-input, .search-input:focus, .search-input-regular, .search-input-regular:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.bg-dark-custom {
    background-color: #252525 !important;
}

.bg-dark-2-custom {
    background-color: #333333 !important;
}

.bg-red-custom {
    background-color: #FE462F !important;
}

.bg-red-fade {
    background-color: rgba(254, 70, 47, 0.50);
}

.bg-red-gradient {
    background: linear-gradient(to left, rgba(254, 70, 47, 0.50), rgba(254, 70, 47, 0));
}

.rounded-responsive-pill {
    border-radius: 0 !important;
}

.logo {
    width: 130px;
}

.btn-responsive {
    padding: .25rem .5rem; /* same as btn-sm */
    font-size: .875rem;
}

/* apply on md and above */
@media (min-width: 768px) {
    .rounded-responsive-pill {
        border-radius: 50rem !important;
    }

    .logo {
        width: 200px;
    }

    .btn-responsive {
        padding: .375rem .75rem; /* same as btn */
        font-size: 1rem;
    }
}

.neon-border {
    box-shadow:
        0 0 6px rgba(255, 0, 0, 0.4),
        0 0 14px rgba(255, 0, 0, 0.25);
    transition: 0.3s ease;
}

.neon-border:hover {
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.35);
}

.nav-pills .nav-link {
    color: #FFFFFF !important;
    background-color: #252525 !important;
}

.nav-pills .nav-link.active {
    color: #FFFFFF !important;
    background-color: #FE462F !important;
}

a {
    text-decoration: none;
    color: white;
}

.search-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #1f1f1f;
    border-radius: 12px;
    padding: 15px 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 99;
}

#dimOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* dim color */
    backdrop-filter: blur(2px);
    z-index: 10; /* below input & dropdown */
    display: none;
}

.text-red {
    color: #FE462F !important;
}
