:root {
    --rush-accent: #FFBD02;
    --rush-dark-1: #111111;
    --rush-dark-2: #666666;
    --rush-dark-3: #F6F6F6;
    --rush-accent-1: #E202FF;
    --rush-accent-2: #FF00AC;
    --rush-accent-3: #FE0000;
    --rush-accent-4: #FF4E02;
    --rush-accent-5: #FFBD02;
    --rush-accent-6: #FEED00;
    --rush-accent-7: #000000;
}



body {
    font-family: Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 0px;
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

a.filled-button {
    background-color: #FF4E02;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
}


a.border-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
}

    a.border-button:hover {
        background-color: #fff;
        color: #FF4E02;
    }

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

    .section-heading h2 {
        font-size: 36px;
        font-weight: 600;
        color: #1e1e1e;
    }

    .section-heading em {
        font-style: normal;
        color: #FF4E02;
    }

    .section-heading span {
        display: block;
        margin-top: 15px;
        text-transform: uppercase;
        font-size: 15px;
        color: #666;
        letter-spacing: 1px;
    }


#preloader {
    overflow: hidden;
    background: #FF4E02;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999999;
    color: #fff;
}

    #preloader .jumper {
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        position: absolute;
        margin: auto;
        width: 50px;
        height: 50px;
    }

        #preloader .jumper > div {
            background-color: #fff;
            width: 10px;
            height: 10px;
            border-radius: 100%;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            position: absolute;
            opacity: 0;
            width: 50px;
            height: 50px;
            -webkit-animation: jumper 1s 0s linear infinite;
            animation: jumper 1s 0s linear infinite;
        }

            #preloader .jumper > div:nth-child(2) {
                -webkit-animation-delay: 0.33333s;
                animation-delay: 0.33333s;
            }

            #preloader .jumper > div:nth-child(3) {
                -webkit-animation-delay: 0.66666s;
                animation-delay: 0.66666s;
            }

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    5% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Sub Header Style */

.sub-header {
    background-color: #FF4E02;
    height: 46px;
    line-height: 46px;
}

    .sub-header ul li {
        display: inline-block;
    }

    .sub-header ul.left-info li {
        border-left: 1px solid rgba(250,250,250,0.3);
        padding: 0px 20px;
    }

        .sub-header ul.left-info li:last-child {
            border-right: 1px solid rgba(250,250,250,0.3);
        }

        .sub-header ul.left-info li i {
            margin-right: 10px;
            font-size: 18px;
        }

        .sub-header ul.left-info li a {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

    .sub-header ul.right-icons {
        float: right;
    }

        .sub-header ul.right-icons li {
            margin-right: -4px;
            width: 46px;
            display: inline-block;
            text-align: center;
            border-right: 1px solid rgba(250,250,250,0.3);
        }

            .sub-header ul.right-icons li:first-child {
                border-left: 1px solid rgba(250,250,250,0.3);
            }

            .sub-header ul.right-icons li a {
                color: #fff;
                transition: all 0.3s;
            }

                .sub-header ul.right-icons li a:hover {
                    opacity: 0.75;
                }



/* Header Style */
header {
    position: absolute;
    z-index: 99999;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2) !important;
    height: 95px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    top: 0;
    position: fixed;
    /*box-shadow: 0px 1px 10px rgba(0,0,0,0.1);*/
}


.background-header {
    top: 0;
    position: fixed;
    background-color: #f7f7f7 !important;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}

    .background-header .navbar-brand h2 {
        color: #FE0000 !important;
    }

    .background-header .navbar-nav a {
        color: #000000 !important;
    }

        .background-header .navbar-nav a.hover,
        .background-header .navbar-nav a.active {
            color: #FE0000 !important;
        }

.navbar .navbar-brand {
    float: left;
    margin-top: 12px;
    outline: none;
}

    .navbar .navbar-brand h2 {
        color: #fff;
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 700;
        -webkit-transition: all .3s ease 0s;
        -moz-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }

        .navbar .navbar-brand h2 em {
            font-style: normal;
            font-size: 16px;
        }

#navbarResponsive {
    z-index: 999;
}

.navbar-collapse {
    text-align: center;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 15px;
    color: #D9D9D9;
}

.navbar .navbar-nav a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    transition: all 0.5s;
    margin-top: 5px;
}

    .navbar .navbar-nav a:hover {
        color: #FF4E02;
        padding-bottom: 10px;
    }
    .navbar .navbar-nav a.active {
        color: #FF4E02;
        padding-bottom: 10px;
        border-bottom: 3px solid #FF4E02;

    }


.navbar .navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler {
   /* border-color: #fff;
    background-color: #fff;*/
    height: 36px;
    outline: none;
    border-radius: 0px;
    position: absolute;
    right: 30px;
    top: 20px;
}

.navbar .navbar-toggler-icon:after {
    content: '\f0c9';
    color: #FF4E02;
    font-size: 18px;
    line-height: 26px;
    font-family: 'FontAwesome';
}



/* Banner Style */

.img-fill {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center
}

    .img-fill img {
        min-height: 100%;
        min-width: 100%;
        position: relative;
        display: inline-block;
        max-width: none;
    }

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}





.home-page-heading {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 105vh;
    background-image: url(../images/slide_01.jpg);
}

    .home-page-heading .text-content {
        text-align: left;
        width: 75%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .home-page-heading .text-content h6 {
            margin-bottom: 15px;
            font-size: 22px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            color: #000;
            animation: fadeOutRight 1s both;
        }

        .home-page-heading .text-content h4 {
            /* Define the gradient as the background */
            background-image: linear-gradient(to bottom right, #FEED00, #FFBD02, #FF4E02, #FF4E02, #FF00AC, #E202FF);
            /* Make the text itself transparent */
            color: transparent;
            /* Clip the background to the text */
            -webkit-background-clip: text;
            background-clip: text;
            /* Optional: ensure the gradient covers the entire element, not just the text */
            margin-bottom: 30px;
            /*  text-transform: uppercase;*/
            font-size: 44px;
            font-weight: 700;
            letter-spacing: 2.5px;
            overflow: hidden;
            animation: fadeOutLeft 1s both;
        }



        .home-page-heading .text-content p {
            max-width: 570px;
            color: #fff;
            font-size: 15px;
            font-weight: 400;
            line-height: 30px;
            margin-bottom: 40px;
        }

        .home-page-heading .text-content a {
            margin: 0 0px 10px 5px;
        }

.request-form {
    padding: 40px 0px;
    color: #fff;
}

    .request-form h4 {
        font-size: 22px;
        font-weight: 600;
    }

    .request-form span {
        font-size: 15px;
        font-weight: 400;
        display: inline-block;
        margin-top: 10px;
    }

    .request-form a.border-button {
        margin-top: 12px;
        float: right;
    }

.connect {
    margin-top: 0px;
}

.connect-item img {
    width: 100%;
    overflow: hidden;
}

.connect-item .down-content {
    background-color: #f7f7f7;
    padding: 30px;
}

    .connect-item .down-content h4 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.25px;
        margin-bottom: 15px;
    }

    .connect-item .down-content p {
        margin-bottom: 20px;
    }



.page-heading {
    text-align: center;
    background-image: url(../images/page-heading-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px 75px 0px;
    color: #fff;
}

    .page-heading h1 {
        text-transform: capitalize;
        font-size: 36px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .page-heading span {
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        display: block;
    }


.login-information {
    margin: 75px 0px;
}

.login-information p {
    line-height :80px;
}


.plan-information {
    margin: 75px 0px;
}

     p {
        line-height: 80px;
    }


     .plan {
        border: 2px solid var(--rush-accent, red);
        border-radius: 30px;
        width: 100%;
        padding: 20px;
        margin-top: 20px;
        background-color: white;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6); /* Example shadow */
        height: 410px;
    }
         .plan .header {
            font-size: 20px;
            background-color: var(--rush-accent, red);
            color: white;
            text-align: center;
            border-radius: 28px 28px 0 0; /* Top left and top right radius */
            padding: 10px;
            margin: -20px; /* To offset the parent box's padding */
            margin-bottom: 20px; /* Spacing between the header and the content below */
        }

        .plan .speed {
            font-size: 20px;
            text-align: center;
            padding: 0px 0px 10px 0px;
            margin: 0px 5px;
            font-weight: bold;
        }

        .plan .data {
            font-size: 14px;
            text-align: center;
            padding: 0px 0px 20px 0px;
            margin: 0px 5px;
            border-bottom: 1px solid #000;
            font-weight: bold;
        }


         .plan .price {
            font-size: 30px;
            text-align: center;
            padding: 10px 0px 0px 0px;
            margin: 0px 50px;
            color: var(--rush-accent, red);
            font-weight: bold;
        }
        .plan .month {
            font-size: 14px;
            text-align: center;
            padding: 0px 0px 5px 0px;
            color: #666666;
        }
        .plan .free {
            font-size: 14px;
            text-align: center;
            padding: 0px 0px 5px 0px;
            color: forestgreen;
            font-weight: bold;
        }
        .plan .cis {
            font-size: 12px;
            text-align: center;
            padding: 25px 0px 0px 0px;
            color: #666666;
        }
        .plan .notice {
            font-size: 9px;
            margin-top: 10px;
            color: #666666;
        }

/* Contact Information */

.support-information {
    margin: 60px 0px;
}

    .support-information .contact-item {
        padding: 60px 30px;
        background-color: #f7f7f7;
        text-align: center;
    }

        .support-information .contact-item i {
            color: #FF4E02;
            font-size: 48px;
            margin-bottom: 40px;
        }

        .support-information .contact-item h4 {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.25px;
            margin-bottom: 15px;
        }

        .support-information .contact-item p {
            margin-bottom: 20px;
        }

        .support-information .contact-item a {
            font-weight: 600;
            color: #FF4E02;
            font-size: 15px;
        }



        .support-information .contact-item p {
            line-height: 20px;
        }
.support-form {
    margin: 60px;
}

    .support-form .contact-form {
        background-color: #F6F6F6;
        padding: 60px;
        border-radius: 5px;
        text-align: center;
    }

    
        .support-form .contact-form input {
            border-radius: 20px;
            height: 40px;
            line-height: 40px;
            display: inline-block;
            padding: 0px 15px;
            color: #111111;
            font-size: 13px;
            text-transform: none;
            box-shadow: none;
            border: none;
            margin-bottom: 35px;
        }

            .support-form .contact-form input:focus {
                outline: none;
                box-shadow: none;
                border: none;
            }

        .support-form .contact-form textarea {
            border-radius: 20px;
            height: 120px;
            max-height: 200px;
            min-height: 120px;
            display: inline-block;
            padding: 15px;
            color: #6a6a6a;
            font-size: 13px;
            text-transform: none;
            box-shadow: none;
            border: none;
            margin-bottom: 35px;
        }

            .support-form .contact-form textarea:focus {
                outline: none;
                box-shadow: none;
                border: none;
            }

        .support-form .contact-form ::-webkit-input-placeholder { /* Edge */
            color: #aaa;
        }

        .support-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
            color: #aaa;
        }

        .support-form .contact-form ::placeholder {
            color: #aaa;
        }

        .support-form .contact-form button.filled-button {
            background-color: #FF4E02;
            color: #fff;
            border: none;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            display: inline-block;
            transition: all 0.3s;
            outline: none;
            box-shadow: none;
            text-shadow: none;
            cursor: pointer;
        }

            
.outages-information {
    margin: 30px 0px 30px 0px;
}

.wholesale-information {
    margin: 60px 0px 0px 0px;
}



.wholesale-form {
    margin: 0px 0px 30px 0px;
}

    .wholesale-form .contact-form {
        background-color: #f7f7f7;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
    }
    .wholesale-form .circle-number {
        background-color: #FF4E02;
        border-radius: 50%;
        color: white;
        display: inline-block;
        height: 25px;
        width: 25px;
        text-align: center;
        line-height: 25px;
        margin-right: 10px;
    }

        .wholesale-form .contact-form input {
            border-radius: 20px;
            height: 40px;
            line-height: 40px;
            display: inline-block;
            padding: 0px 15px;
            color: #6a6a6a;
            font-size: 13px;
            text-transform: none;
            box-shadow: none;
            border: none;
            margin-bottom: 35px;
        }

            .wholesale-form .contact-form input:focus {
                outline: none;
                box-shadow: none;
                border: none;
            }

        .wholesale-form .contact-form textarea {
            border-radius: 20px;
            height: 120px;
            max-height: 200px;
            min-height: 120px;
            display: inline-block;
            padding: 15px;
            color: #6a6a6a;
            font-size: 13px;
            text-transform: none;
            box-shadow: none;
            border: none;
            margin-bottom: 35px;
        }

            .wholesale-form .contact-form textarea:focus {
                outline: none;
                box-shadow: none;
                border: none;
            }

        .wholesale-form .contact-form ::-webkit-input-placeholder { /* Edge */
            color: #aaa;
        }

        .wholesale-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
            color: #aaa;
        }

        .wholesale-form .contact-form ::placeholder {
            color: #aaa;
        }

        .wholesale-form .contact-form button.filled-button {
            background-color: #FF4E02;
            color: #fff;
            border: none;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 30px;
            display: inline-block;
            transition: all 0.3s;
            outline: none;
            box-shadow: none;
            text-shadow: none;
            cursor: pointer;
        }


/* Footer Style */

footer {
    background-color: #232323;
    padding: 80px 0px;
    color: #fff;
}

    footer h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.25px;
        margin-bottom: 35px;
    }

    footer p {
        color: #fff;
    }

    footer ul.social-icons {
        margin-top: 25px;
    }

        footer ul.social-icons li {
            display: inline-block;
            margin-right: 5px;
        }

            footer ul.social-icons li:last-child {
                margin-right: 0px;
            }

            footer ul.social-icons li a {
                width: 34px;
                height: 34px;
                display: inline-block;
                line-height: 34px;
                text-align: center;
                background-color: #fff;
                color: #232323;
                border-radius: 50%;
                transition: all 0.3s;
            }

                footer ul.social-icons li a:hover {
                    background-color: #FF4E02;
                }

    footer ul.menu-list li {
        margin-bottom: 13px;
    }

        footer ul.menu-list li:last-child {
            margin-bottom: 0px;
        }

        footer ul.menu-list li a {
            font-size: 14px;
            color: #fff;
            transition: all 0.3s;
        }

            footer ul.menu-list li a:hover {
                color: #FF4E02;
            }

    footer .contact-form input {
        border-radius: 20px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
        padding: 0px 15px;
        color: #aaa !important;
        background-color: #343434;
        font-size: 13px;
        text-transform: none;
        box-shadow: none;
        border: none;
        margin-bottom: 15px;
    }

        footer .contact-form input:focus {
            outline: none;
            box-shadow: none;
            border: none;
            background-color: #343434;
        }

    footer .contact-form textarea {
        border-radius: 20px;
        height: 120px;
        max-height: 200px;
        min-height: 120px;
        display: inline-block;
        padding: 15px;
        color: #aaa !important;
        background-color: #343434;
        font-size: 13px;
        text-transform: none;
        box-shadow: none;
        border: none;
        margin-bottom: 15px;
    }

        footer .contact-form textarea:focus {
            outline: none;
            box-shadow: none;
            border: none;
            background-color: #343434;
        }

    footer .contact-form ::-webkit-input-placeholder { /* Edge */
        color: #aaa;
    }

    footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #aaa;
    }

    footer .contact-form ::placeholder {
        color: #aaa;
    }

    footer .contact-form button.filled-button {
        background-color: transparent;
        color: #fff;
        background-color: #FF4E02;
        border: none;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 700;
        padding: 12px 30px;
        border-radius: 30px;
        display: inline-block;
        transition: all 0.3s;
        outline: none;
        box-shadow: none;
        text-shadow: none;
        cursor: pointer;
    }



/* Sub-footer Style */

.sub-footer {
    background-color: #343434;
    text-align: center;
    padding: 25px 0px;
}

    .sub-footer p {
        color: #fff;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    .sub-footer a {
        color: #fff;
    }










/* Responsive Style */
@media (max-width: 768px) {
    .sub-header {
        display: none;
    }

  
    .request-form {
        text-align: center;
    }

        .request-form a.border-button {
            float: none;
            margin-top: 30px;
        }

    .services .service-item {
        margin-bottom: 30px;
    }

    .fun-facts .left-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .more-info .right-content {
        padding: 30px;
    }

    footer {
        padding: 80px 0px 20px 0px;
    }

        footer .footer-item {
            border-bottom: 1px solid #343434;
            margin-bottom: 30px;
            padding-bottom: 30px;
        }

        footer .last-item {
            border-bottom: none;
        }

    .about-info .right-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .team .team-item {
        margin-bottom: 30px;
    }

    .tabs-content {
        margin-left: 0px;
        margin-top: 30px;
    }

    .contact-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .navbar .navbar-brand {
        position: absolute;
        left: 30px;
        top: 10px;
    }

    .navbar .navbar-brand {
        width: auto;
    }

    .navbar:after {
        display: none;
    }

    #navbarResponsive {
        z-index: 99999;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        text-align: center;
        background-color: #fff;
        box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    }

    .navbar .navbar-nav .nav-item a {
        border-bottom: 1px solid #eee;
    }

        .navbar .navbar-nav .nav-item  a:last-child {
            border-bottom: none;
        }

    .navbar .navbar-nav .nav-item a {
        line-height: 40px;
        color: #1e1e1e !important;
    }

    .navbar .navbar-nav a:hover,
    .navbar .navbar-nav a.active {
        color: #FF4E02 !important;
        border-bottom: none !important;
    }

}










.complaints {
    margin-top: 70px;
}

    .complaints .left-image img {
        width: 100%;
        overflow: hidden;
    }

    .complaints .complaints-content {
        background-color: #f7f7f7;
    }

    .complaints h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .complaints p {
        line-height: 25px;
    }

    .complaints ul {
        list-style: square;
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 20px;
    }

        .complaints ul li {
            margin-bottom: 0px;
            font-size: 14px;
            color: #666666;
            line-height: 25px;
        }

.privacy {
    margin-top: 70px;
}

    .privacy .left-image img {
        width: 100%;
        overflow: hidden;
    }

    .privacy .privacy-content {
        background-color: #f7f7f7;
    }

    .privacy h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .privacy p {
        line-height: 25px;
    }

    .privacy ul {
        list-style: square;
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 20px;
    }

        .privacy ul li {
            margin-bottom: 0px;
            font-size: 14px;
            color: #666666;
            line-height: 25px;
        }

wholesale-form {
    margin-top: 0px;
}

.signup-form{
    margin-top: 0px;
}


.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 1.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}
.outages-information p !important {
    line-height: 18px;
}



.outage-start-date {
    line-height: 14px;
    font-size: 15px;
}
.outage-end-date {
    line-height: 14px;
    font-size: 15px;
}
.outage-period {
    line-height: 14px;
    font-size: 15px;
}
.outage-header {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0px 10px 0px;
    line-height: 18px;
}
.outage-location {
    line-height: 15px;
    font-size: 13px;
}

.outage-resolution {
    line-height: 18px;
    font-size: 10px;
    color: green;
    margin-top: 10px;
}

.outage-comment {
    line-height: 16px;
    font-size: 15px;
}

.outage-major {
    line-height: 16px;
    font-size: 12px;
    color: #a94442;
    font-weight: bold;
    margin: 10px 0px 20px 0px;
}

.outage-updated {
    font-size: 13px;
    margin: 0px 0px 20px 0px;
    line-height: 15px;
}



.gradient-background {
    background: linear-gradient(to bottom right, #FEED00, #FFBD02, #FF4E02, #FF4E02, #FF00AC, #E202FF);
    width: 100%; /* Example width */
}
.gradient-color {
    background: linear-gradient(to bottom right, #FEED00, #FFBD02, #FF4E02, #FF4E02, #FF00AC, #E202FF);
}




.price-crossed-out {
    position: relative;
    display: inline-block;
    font-size: 24px; /* Adjust the font size as needed */
    color: black;
}

    .price-crossed-out::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px; /* Adjust the thickness of the line */
        background-color: black; /* Adjust the color of the line */
        /*transform: rotate(135deg);
        transform-origin: 0% 0%;*/
    }






.suggestions {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 22px);
    background-color: white;
    z-index: 1000;
    visibility: hidden;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

    .suggestion-item:hover {
        background-color: #f0f0f0;
    }


.btn-select {
    border-radius: 10px;
    background-color: #4f91d7;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 15px;
}

    .btn-select.active {
        color: white;
    }


@media (min-width: 768px) {

    .wholesale-form .contact-form {
        padding: 60px;
    }
}




.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff; /* Solid background */
    color: white;
    border: none;
    border-radius: .3rem;
    outline: 0;
    width: 350px; /* Fixed width */
    height: 325px; /* Fixed height */
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1100;
}

.modal-content h1 {
    font-size: 15px;
    text-align:center;
    color: #000;
    
}
    .modal-content p {
        font-size: 13px;
        text-align: center;
        line-height: 15px;
        margin: 15px 0px;
    }

    .modal-content button.filled-button {
        background-color: #FF4E02;
        color: #fff;
        border: none;
        font-size: 13px;
        text-transform: uppercase;
        font-weight: 700;
        padding: 12px 30px;
        border-radius: 30px;
        display: inline-block;
        transition: all 0.3s;
        outline: none;
        box-shadow: none;
        text-shadow: none;
        cursor: pointer;
    }
    .modal-content input {
        font-size: 14px;
    }

.close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #aaa;
        text-decoration: none;
        cursor: pointer;
    }


.iti {
    width:100%
}