/******************************************************************************
* ldsOFBCommon.css
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright 2006									                          *
*                                                                             *
******************************************************************************/
.ldsofbTableRenderForm {
}

.ldsofbTableRenderForm tbody tr td {
    margin:5px;
    padding:5px;
}

.OFB_CancelBtn a {
    padding: 9px 20px;
    background: #c64242;
    border: 0px solid #a50000;
    color: #fefefe !important;
    border-radius: 5px;
    transition: all .2s ease;
}

.OFB_SubmitBtn a {
    padding: 8px 20px;
    background: #f1f1f1;
    color: #4e4e4e !important;
    border-radius: 5px;
    border: 1px solid #7b7b7b;
    transition: all .2s ease;
}

.OFB_CancelBtn a:hover {
    padding: 9px 20px;
    background: #aa3838;
    border: 0px solid #a50000;
    color: #fefefe !important;
    border-radius: 5px;
    transition: all .2s ease;
}

.OFB_SubmitBtn a:hover {
    padding: 8px 20px;
    background: #dddddd;
    color: #4e4e4e !important;
    border-radius: 5px;
    border: 1px solid #7b7b7b;
    transition: all .2s ease;
}


.ldsofb_container_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* semi-transparent */
    z-index: 9999;
    align-items: center;
    display: flex;
    justify-content: center;
}

.ldsofb_container_loader.ldsofb_no_active {
    display: none;
}

.ldsofb_container_loader .ldsofb_content_loader {
    text-align: center;
}

.ldsofb_container_loader .ldsofb_content_loader p {
    font-size: 15px;
    font-weight: 600;
}

.ldsofb_container_loader .ldsofb_spinner {
    animation: rotate 2s linear infinite;
    width: 70px;
    height: 70px;
}

.ldsofb_container_loader .ldsofb_spinner .ldsofb_spinner_path {
    stroke: #000000;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -124;
    }
}