/* Frontend global custom CSS */

.headline10 {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 10px 0;
}

.headline10 p {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollText 12s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.header-style-1 .header-nav .navbar-default .navbar-collapse .navbar-nav > li > a {
    padding: 12px 8px !important;
}

.header-style-1 .header-nav .navbar-default .navbar-collapse .navbar-nav > li > a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    padding: 21px 15px;
    -webkit-transitio: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    letter-spacing: 0.5px;
    border-right: 1px solid rgb(254 9 227 / 10%);
    font-size: 11px;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
}

.header-style-1 .header-nav .navbar-default {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    /* background: rgb(223 12 12); */
    background: #5325f0;
    margin: 0;
    min-height: auto;
}

.main-header {
    padding: 15px 0px 10px 0px;
    border-bottom: 1px solid #fff;
}


img {
    vertical-align: middle;
    width: 160px;
}

.main-header .top-search-holder .search-area .search-field {
    border: medium none;
    color: #2619e6;
    border: solid 1px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    border-radius: 50px;
    padding: 8px 5px 8px 15px;
    width: 58%;
}
.main-header .top-search-holder .search-area .search-button {
    display: inline-block;
    border-radius: 4px;
    float: none;
    margin: 0px;
    padding: 8px 8px 8px 8px;
    text-align: center;
    /* background-color: rgb(223 12 12); */
    background-color: #2619e6;
    border: 1px solid #2619e6;
}

.confirm-btn {
    position: relative;
    background: #111827;
    color: white;
    border: 3px solid transparent;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    background-image:
        linear-gradient(#111827, #111827),
        linear-gradient(135deg, #20c997, #2619e6, #ff8c42, #20c997);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 300%;
    animation: confirmBtnBorderFlow 4s linear infinite;
    box-shadow: 0 0 12px rgba(32, 201, 151, 0.18),
                0 0 18px rgba(38, 25, 230, 0.12),
                0 0 22px rgba(255, 140, 66, 0.10);
}

.confirm-btn:hover {
    animation: confirmBtnBorderFlow 2.2s linear infinite;
    box-shadow: 0 0 14px rgba(32, 201, 151, 0.24),
                0 0 22px rgba(38, 25, 230, 0.16),
                0 0 28px rgba(255, 140, 66, 0.14);
}

@keyframes confirmBtnBorderFlow {
    0% {
        background-position: 0 0, 0% 50%;
    }
    50% {
        background-position: 0 0, 100% 50%;
    }
    100% {
        background-position: 0 0, 0% 50%;
    }
}

.brand-details {
 
    height: auto;
   
}