body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

form {
    /*max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;*/
}

fieldset {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/*legend {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 10px;
    color: #333;
}*/
.form_icargos_container legend {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 18px;
    color: #000;
    background: #edcc79;
    border-radius: 3px;
    letter-spacing: 1px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="text"]#search-address {
    width: 100%;
}

.company-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-info #company-name {
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-container {
    max-width: 160px;
    max-height: 160px;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

@media (max-width: 600px) {
    label {
        font-size: 0.9em;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    select {
        width: calc(100% - 10px);
    }

    .company-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-container {
        width: 100%;
        text-align: center;
    }

    .logo-container img {
        max-width: 100px;
        max-height: 100px;
    }
}


/*Google autocomplete*/
#suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    /*    border: 1px solid #ccc;*/
}

#suggestions li {
    padding: 8px;
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #eee;
}

.error-message {
    color: #ff0000;
    /* Red color for error messages */
    font-size: 14px;
    /* Font size */
    margin-top: 5px;
    /* Add some space above the error message */
    display: none;
    /* Hide error messages by default */
}

.error-message.visible {
    display: block;
    /* Display error messages when they should be visible */
}

/* Loader styles */
.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    display: none;
    /* Hide loader by default */
}

.bouncing-loader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70px;
}

.bouncing-loader>div {
    width: 18px;
    height: 18px;
    background-color: #f0b913;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.bouncing-loader>div:nth-child(2) {
    animation-delay: 0.2s;
}

.bouncing-loader>div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        opacity: 0.3;
        transform: translateY(-20px);
    }
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.warning-message {
    background-color: #ffe3e3;
    color: #d8000c;
    border: 1px solid #d8000c;
    padding: 10px;
    margin-bottom: 20px;
    display: none;
}


/* Popup container */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
    z-index: 1000;
}

/* Popup header */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.popup-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
}

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
}

/* Popup content */
.popup-content {
    margin-top: 10px;
}



/*chandra work start 11/jun/2024*/
body {
    background-color: #f2f2f2;
}

.form_icargos_filelds {}

.form_icargos_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

.company_infoSec {}

.business_infoSec {}

.contact_infoSec {}

.button_infoSec {
    display: block;
    text-align: center;
}

.button_infoSec button {
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background-color: #f0b913;
    padding: 11px 30px 10px 30px;
    transition: all 0.6s;
    outline: none;
    border: none;
    border-radius: 4px;
    letter-spacing: 0.6px;
    cursor: pointer;
}

.button_infoSec button:hover {
    color: #fff;
    background-color: #656565;
}


.business_infogroup {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.contact_infogroup {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.business_infogroup input {
    width: 100%;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #bababa;
    background: #fff;
}

.business_infogroup label {
    font-size: 14px;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    color: #363636;
    font-weight: 600;
}

.contact_infogroup input {
    width: 100%;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #bababa;
    background: #fff;
}

.contact_infogroup label {
    font-size: 14px;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
    color: #363636;
    font-weight: 600;
}

.contact_infogroup.placeholder_it {}

.contact_infogroup.placeholder_it input::placeholder {
    font-style: italic;
}

.popup.popupWrap {}

.popup-header.popupsec {}

.popup-header.popupsec h2 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.popup-header.popupsec button.popup-close {
    background: orange;
    font-size: 20px;
    padding: 0px;
    margin: 0;
    height: 30px;
    width: 30px;
    border-radius: 60px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.hint-message {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #999999;
    margin-top: 6px;
    font-style: italic;
}

.popup.popupWrap.controll_widths {
    width: 90%;
    max-width: 330px;
    padding: 20px 35px 30px 35px;
}

.popup-header.popupsec.controll_titel {}

.popup-header.popupsec.controll_titel h2 {
    text-align: center;
    display: block;
    width: 100%;
    color: #12034e;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid #12034e;
    padding-bottom: 8px;
}

.popup-content.controll_container {
    padding: 25px 0 10px 0;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #585858;
    font-weight: 500 !important;
}

.popup-header.popupsec.controll_titel button.popup-close {
    position: absolute;
    right: 5px;
    top: 5px;
}

/*------Image Preview------*/
.image-preview-container {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 200px;
    /* Adjust as needed */
    height: auto;
}

.image-preview-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center the image */
}

.contact_infogroup.and_lastcheck label {
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: left;
}
.contact_infogroup.and_lastcheck input {
    display: inline-flex;
    width: 14px;
    align-items: center;
    position: relative;
    top: -2px;
    margin-right: 6px;
}
.contact_infogroup.and_lastcheck a {
    padding-left: 4px;
    font-style: italic;
}


.contact_infogroup.upload_label{}
.contact_infogroup.upload_label label{}
.contact_infogroup.upload_label input {
    width: auto;
    border: none;
    margin-top: 5px;
    outline: none;
    background: #e4e4e4;
    padding: 5px;
}
.contact_infogroup.upload_label .error-message{}
.contact_infogroup.upload_label .previewCont {
    width: 100%;
    margin-top: 10px;
}
.contact_infogroup.upload_label .previewCont .image-preview-container {
    margin: 0;
    padding: 0;
    border: none;
    max-width: unset;
    height: auto;
}
.contact_infogroup.upload_label .previewCont .image-preview-container img {
    max-width: 60px;
    width: 100%;
    height: 100%;
    display: inline-flex;
    margin-top: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 6px;
}