﻿/*//
// Forms
//
*/
label {
    /*// Allow labels to use `margin` for spacing. */
/*    display: inline-block;
    margin-bottom: .5rem;*/
}

.ids-list-icon {
    font-size: 2REM;
}

.ids-invalid-feedback {
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
}

.spinner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
/*    z-index: 100;
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    background-color: var(--bs-backdrop-bg);
    opacity: 0.2;
*/}

.overlay_button {
    opacity: 1 !important;
    bottom: 16px;
    position: absolute;
    /* left: 17px; */
    /* width: 50%; */
    /* right: 16px; */
    /* margin: 0px; */
    width: 100%;
    background-color: white;
    padding-right: 16px;
}

.tenant-name {
    font-family: "Varela+Round", sans-serif;
}


/*features*/

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
}

.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
}

.text-shadow-1 {
    text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

.text-shadow-2 {
    text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

.text-shadow-3 {
    text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}

.card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.feature-icon-small {
    width: 5rem;
    height: 5rem;
}


.result-block {
    display: flex;
}

    .result-block > span {
        flex: 1;
        text-align: right;
    }


.reqAccordHeader {
    display: flex;
}

    .reqAccordHeader > form {
        flex: 1;
        text-align: right;
    }

    .reqAccordHeader  button {
        padding-top: 0px;
        padding-bottom: 0px;
    }

@media (min-width: 768px) {
    .mainPanel {
        padding-left: 24px;
    }
    .mw-250 {
        min-width:250px;
    }
}

.rounded-pill {
    z-index: 100;
}


.icon-spin::before {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h2{
   font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

.blog-body h2 {
    padding-top: 1.8rem;
    font-style: italic;
}

.tag-tab {
    border-top: none;
    border-radius: unset;
    border-color: #dee2e6;
}

.tag-form {
    min-width: 300px;
}

.tag-form-footer {
    border-top-color: rgb(222, 226, 230);
    border-top-style: solid;
    border-top-width: 1px;
}

.header-logo {
    height:70px;
}

.home-main-panel {
    background-image: linear-gradient( 0deg,#E8DFC8 33%, #B8DCEA 33% );
    padding: 4rem 3rem 0rem 3rem;
}

.home-main-panel h1 {
    color: #004071 !important;
}

.nav-link {
    color: #004071;
    font-size: 1.3rem;
}

.home-sequence {
    height: 160px;
    margin-top: 40px;
}

.help-tip {
    /*position: absolute;*/
    top: -5px;
    right: 0;
    text-align: center;
    background-color: #00ACCB;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 1rem;
    line-height: 16px;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
    border-color: #00ACCB;
    /*margin-top: 20px;*/
    margin-left: 8px;
}

.help-tip-right {
    top: -10px;
}


.help-tip:hover {
    background-color: #fff;
}

.help-tip:before {
    content: 'i';
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-style: italic;
}

.help-tip:hover:before {
    color: #00ACCB;
}

.help-tip:hover p {
    display: block;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;
    z-index: 20;
    border-radius: var(--bs-border-radius-lg) !important;
    background-color: rgba(248, 249, 250);
}

.help-tip p { /* The tooltip */
    display: none;
    text-align: left;
    background-color: #f1f1f0;
    padding: 20px;
    width: 400px;
    position: absolute;
    /* border-radius: 10px; */
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    /*right: 14px;*/
    color: black;
    font-size: 14px;
    line-height: 1.4;
    border-color: rgb(169, 169, 169);
    border-width: 1px;
    border-style: solid;
    margin-top: 10px;
    z-index: 10;
    cursor: auto;
}

    .help-tip p a {
        color: #FEBD14;
        font-weight: bold;
    }

        .help-tip p a:hover {
            font-weight: bold;
        }

    .help-tip p span, .help-tip p strong {
        display: block;
    }
    /* The pointer of the tooltip */
    /*.help-tip p:before { 
            position: absolute;
            content: '';
            width: 0;
            height: 0;
            border: 6px solid transparent;
            border-bottom-color: #00bbdc;
            right: 10px;
            top: -54px;
        }*/
    .help-tip p:after { /* Prevents the tooltip from being hidden */
        width: 100%;
        height: 40px;
        content: '';
        position: absolute;
        top: -40px;
        left: 0;
    }

.help-tip .tip-title {
    color: #00ACCB;
    font-size: 1.2rem;
}

@media only screen and (min-width: 800px) {
    .help-tip {
        /*right: 50%;*/
    }

    .help-tip-right {
        right: 0;
    }

    .help-tip p { /* The tooltip */
        width: 600px;
    }
}


.image-blurred-edge {
    background-image: url('/images/home/IDSCode.jpg');
    width: 100%;
    height: 800px;
    /* you need to match the shadow color to your background or image border for the desired effect*/
    box-shadow: 0 0 8px 8px white inset;
    background-repeat:no-repeat;
}

.input-validation-error {
    border-color: rgba(220, 53, 69, .40);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}