html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.icPortalSpinnerDiv {
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #666666;
    z-index: 30001;
    opacity: .8;
    overflow: hidden;
    display: none;
}

.icPortalSpinnerP {
    /*  position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -4.05em;
    color: White;*/
    position: fixed;
    z-index: 30001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mandatory-field {
    color: red; /* Change the color value to your desired color */
}

/* CSS for fade-out animation */
.fade-out {
    animation: fadeOut 0.5s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.email-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

#icpGoToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-size: 12px;
    border: none;
    outline: none;
    background-color: darkgrey;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius:25%;
}

    #icpGoToTopBtn:hover {
        background-color: #a83244;
    }
/*.env-badge {
    font-size: 1rem;
    padding: 0.4em 0.6em;
    margin-bottom: 0.5em;*/ /* Adjust this value as needed */
/*}

@media (max-width: 768px) {
    .env-badge {
        font-size: 0.8rem;
        padding: 0.3em 0.5em;
    }
}

@media (max-width: 480px) {
    .env-badge {
        font-size: 0.6rem;
        padding: 0.2em 0.4em;
    }
}*/
.env-ribbon {
    border-radius: 0.35rem;
}

/* Generic styles for all form input elements */
/* Generic handler for responsive text wrapping in any container */
/* Rule for handling long text strings within a container */
.responsive-text-container {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* Rule for a flexible container layout */
.flex-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Rule for a responsive layout on smaller screens */
@media (max-width: 600px) {
    .flex-container {
        flex-direction: column;
    }
}




