﻿.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url('/images/download.svg') !important;
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
/*input:-internal-autofill-selected {
    background-color: transparent !important;
}*/
/*popup tc*/
.popup-container {
    /*visibility: hidden;*/
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: none;
    align-items: center;
}


.popup-content {
    background-color: #fefefe;
    margin: auto !important;
    margin-top: 100px !important;
    padding: 20px !important;
    border: 1px solid #888;
    width: 50%;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #000000;
}

    .popup-content p {
        font-size: 17px !important;
        padding: 10px !important;
        line-height: 20px;
        text-align: justify;
    }

        .popup-content p.close {
            color: #aaaaaa;
            float: right;
            font-size: 28px !important;
            font-weight: bold;
            background: none;
            padding: 0;
            margin: 0;
            z-index: 2;
            text-decoration: none;
        }

            .popup-content p.close:hover {
                color: #333;
            }

    .popup-content span:hover,
    .popup-content span:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.popup-container h3 {
    margin: 10px !important;
    text-align: center;
}


.popup-style-2 {
    transform: scale(1);
}

    .popup-style-2:target {
        transform: scale(1);
    }

.height {
    height: 70%;
}

    .height .heightpara {
        overflow: auto;
        height: 85%;
        overflow-x: hidden;
        text-align: justify;
        width: 100%;
    }

@media screen and (max-width:991px) {
    .popup-content {
        width: 80%;
    }
}

.heightpara::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
    height: 8px; /* Set the height of the horizontal scrollbar */
}

.heightpara::-webkit-scrollbar-thumb {
    background-color: #888; /* Thumb color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid transparent; /* Optional border for better design */
    background-clip: content-box; /* Makes the border visible */
}

    .heightpara::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Darker thumb on hover */
    }

.heightpara::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Track color */
    border-radius: 10px; /* Rounded corners */
}

.container::-webkit-scrollbar-track:hover {
    background-color: #ddd; /* Track color when hovered */
}

.container::-webkit-scrollbar-corner {
    background-color: transparent; /* Corner where vertical and horizontal bars meet */
}
/*End popup styles*/
.form-group {
    background-color: white;
    padding: 5px 5px 5px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    /*max-width: 400px;*/
}

.each-input-block {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .each-input-block span {
        margin-right: 10px;
        color: #5f6368;
    }

    .each-input-block input {
        width: 100%;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        outline: none;
        transition: border 0.3s ease;
    }

        .each-input-block input:focus {
            border-color: #007bff;
        }

        .each-input-block input.ng-invalid {
            border-color: red;
        }

        .each-input-block input:focus.ng-invalid {
            border-color: red;
        }

    /* Optional: Style for the icon */
    .each-input-block i {
        font-size: 18px;
        color: #007bff;
    }

.btn-container {
    text-align: center;
}

footer a {
    color: #fff !important;
    cursor: pointer;
    text-decoration: none !important;
}

    footer a:hover {
        color: #fff !important;
        cursor: pointer;
        text-decoration: none !important;
    }
/*password eye*/

.custeye {
    position: relative;
}

    .custeye span {
        position: absolute;
        right: 15px;
        bottom: 7px;
        background: transparent;
        border: 0;
    }

    .custeye .eye {
        right: 40px !important;
    }

    .custeye span i {
        font-size: 14px;
        font-weight: 600;
    }

.company-list_sc .container {
    padding: 0px !important;
}
/* Hide the password eye icon in Microsoft Edge */
input[type="password"]::-ms-reveal {
    display: none; /* Remove the eye icon */
}

/* For other browsers (like Chrome, Safari, Firefox) to hide the default icon */
input[type="password"]::-webkit-contacts-auto-fill-button {
    display: none; /* In case browsers like Chrome add autofill button */
}


/*auto complete*/

.autocomplete-items {
    margin-top: 40px !important;
}

.autocomplete-items {
    width: 190px;
    border-radius: 10px;
    box-shadow: 0px 3px 20px black;
    margin-top: 8px !important;
    position: absolute;
    background-color: #fff;
    max-height: 200px; /* Set a maximum height */
    overflow-y: auto; /* Scroll if content exceeds max-height */
    overflow-x: hidden;
    z-index: 1;
}

    .autocomplete-items::-webkit-scrollbar {
        width: 8px; /* Width of the scrollbar */
    }

    .autocomplete-items::-webkit-scrollbar-thumb {
        background: #888; /* Color of the scroll thumb */
        border-radius: 10px; /* Rounded corners */
    }

        .autocomplete-items::-webkit-scrollbar-thumb:hover {
            background: #555; /* Color on hover */
        }

    .autocomplete-items::-webkit-scrollbar-track {
        background: #f1f1f1; /* Background of the scrollbar track */
        border-radius: 10px; /* Rounded corners */
    }

    .autocomplete-items div {
        padding: 7px !important;
        font-size: 16px;
        cursor: pointer;
        text-align: left;
    }

        .autocomplete-items div:hover {
            background-color: #bbb;
        }

        .autocomplete-items div p {
            color: #000;
            margin-bottom: 0px;
        }

.autocomplete-active {
    background-color: #bbb !important;
    color: #ffffff;
}

#Director_Details .common-table {
    max-height: 350px;
}
.directordetail .common-table {
    max-height: 350px;
}

.anchor {
    cursor: pointer;
}

.company-info-box_main .cta-bttn {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
/*india map chart*/
#Distribution .commonGreen:hover,
#Distribution .commonGreen.clicked {
    fill: #8EA130;
    stroke: #8EA130;
    transition: ease .5s;
}

#Distribution .commonblue:hover,
#Distribution .commonblue.clicked {
    fill: #7866D1;
    transition: ease .5s;
}

#Distribution .commonOrange:hover,
#Distribution .commonOrange.clicked{
    fill: #D28A0F;
    transition: ease .5s;
}

#Distribution .commonYellow:hover,
#Distribution .commonYellow.clicked{
    fill: #F0C000;
    transition: ease .5s;
}

#Distribution .commonPink:hover,
#Distribution .commonPink.clicked{
    fill: #FF3D80;
    transition: ease .5s;
}

#Distribution .popup {
    position: absolute;
    display: none;
    background-color: #333;
    background-color: transparent;
    color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
    transform: translate(-50%, -100%);
    z-index: 999;
}

#Distribution svg {
    display: block;
    margin: 0px auto 50px auto;
    position: relative;
}

#Distribution .hover-path {
    cursor: url('/images/location-pin.png') 10 10, auto;
}

#Distribution .common-table thead th, .common-table tbody td:first-child {
    white-space: normal !important;
}

#Distribution .statecompaniestbl {
    max-height: 400px;
}

.nodata {
    text-align: center !important;
    color: red !important;
    font-weight: 700;
}

.genral_details_box {
    margin-top: 15px;
    box-shadow: 0px 1px 5px 0px rgb(11 11 11) !important;
    max-height: 340px;
    overflow-y: auto;
}
/* loader */

.spinner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(47, 47, 47, 0.8);*/
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.spinner {
    position: relative;
    width: 33.6px;
    height: 33.6px;
    perspective: 67.2px;
}

    .spinner div {
        width: 100%;
        height: 100%;
        background: #E42D35;
        position: absolute;
        left: 50%;
        transform-origin: left;
        animation: spinner-16s03x 2s infinite;
    }

        .spinner div:nth-child(1) {
            animation-delay: 0.15s;
        }

        .spinner div:nth-child(2) {
            animation-delay: 0.3s;
        }

        .spinner div:nth-child(3) {
            animation-delay: 0.45s;
        }

        .spinner div:nth-child(4) {
            animation-delay: 0.6s;
        }

        .spinner div:nth-child(5) {
            animation-delay: 0.75s;
        }

@keyframes spinner-16s03x {
    0% {
        transform: rotateY(0deg);
        background-color: #E42D35;
    }

    50%, 80% {
        transform: rotateY(-180deg);
        background-color: #040404;
    }

    90%, 100% {
        opacity: 0;
        transform: rotateY(-180deg);
        background-color: #040404;
    }
}

.state-container {
    margin-left: 16px;
    padding-right: 40px !important;
    position: relative;
    width: fit-content;
    padding: 16px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: left;
}
   


.no-arrow {
    -webkit-appearance: none; /* For Safari and Chrome */
    -moz-appearance: none; /* For Firefox */
    appearance: none; /* Standard syntax */
   
    background-image: url('data:image/svg+xml,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.75L5.5 5.25L10 0.75" stroke="%23777777"/></svg>');
    background-size: 20% 10%;
    background-repeat: no-repeat;
    background-position: right;
    /* width: 13px;
        height: 7px;
        right: 10px;
        top: 50%;*/
    
    /*transform: translate(0, -50%);*/
}
.btn-nostyle{
    background:none;
    border:none;
}
.checkout-form {
    width: 100%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.checkout-img {
    background: linear-gradient(180deg, #EAFBFF -36.21%, #F2FDFF 39.39%, #FFFFFF 100%);
}
@media (max-width: 1024px) {
    .checkout-form {
        position: static;
        transform: translate(0%, 0%);
        margin: 30px auto;
    }
}
@media (max-width: 575px) {
    .checkout-form  {
        max-width: 350px;
    }
}
@media (max-width: 479px) {
    .checkout-form {
        margin: 30px auto;
        padding: 0px 15px;
    }
}
.companies_details {
    margin-bottom: 60px;
}
.com_link:hover{
    font-weight:700;
}

main .contact_sc, .uplode_sc, .faq_sc {
    margin-bottom: 40px;
}

/*tooltip*/
.companies_details .compdetail,
.top-company-details .compdetail {
    font-size: 14px;
}
