body 
{

}

.center {
    text-align: center;
}

.datagrid-selection-column {
    display: inline-block;
    white-space: nowrap;
}


.datagrid-selection-label {
    text-align: left;
    white-space: normal;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.datagrid-selection-value {
    font-size: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.border-container {
    border: 1px solid #e9e9e9;
    padding: 20px 30px;
}

.gridContainer-details-tabcontent {
    padding: 20px;
}


.modal-confirm {
    color: #636363;
    width: 450px;
}

.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}

.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}

.modal-confirm .form-control, .modal-confirm .btn {
    min-height: 40px;
    border-radius: 3px;
}

.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}

.modal-confirm .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #ef513a;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.modal-confirm .icon-box i {
    font-size: 56px;
    position: relative;
    top: 4px;
}

.modal-confirm.modal-dialog {
    margin-top: 80px;
}

.modal-confirm .btn {
    color: #fff;
    border-radius: 4px;
    background: #ef513a;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}

.modal-confirm .btn:hover, .modal-confirm .btn:focus {
    background: #da2c12;
    outline: none;
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.material-icons
{
    vertical-align: middle;
}


.container-xxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-xxxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-xxxxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


@media (min-width: 1440px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1620px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl ,.container-xxxl {
        max-width: 1560px;
    }
}

@media (min-width: 1860px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxxl {
        max-width: 1740px;
    }
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}



#floating-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #db4437;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
}

.plus {
    color: white;
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 42px;
    font-size: 38px;
    font-family: 'Roboto';
    font-weight: 300;
    animation: plus-out 0.3s;
    transition: all 0.3s;
}

#container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 15px;
    right: 15px;
    z-index: 500;
}

#container-floating:hover {
    height: 400px;
    width: 90px;
    padding: 15px;
}

#container-floating:hover .plus {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    padding: 0;
    opacity: 0;
    margin: auto;
    line-height: 65px;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#container-floating:hover .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes edit-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes edit-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}

@keyframes plus-in {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 0;
        transform: rotateZ(180deg);
    }
}

@keyframes plus-out {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

.nds {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    z-index: 600;
    transform: scale(0);
    cursor: pointer;
}

.nd1 {
    background: #d3a411;
    right: 18px;
    bottom: 80px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd2 {
    background: #3c80f6;
    right: 18px;
    bottom: 140px;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode: forwards;
}

.nd3 {
    background: #ba68c8;
    right: 18px;
    bottom: 200px;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;
}

@keyframes bounce-nds {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

#container-floating:hover .nds {
    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}

#container-floating:hover .nd2 {
    animation-delay: 0.08s;
}

#container-floating:hover .nd3 {
    animation-delay: 0.15s;
}

#container-floating:hover .nd4 {
    animation-delay: 0.2s;
}


.fda-img {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 40px;
}


#multiStepForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}

#multiStepForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}

#multiStepForm .form-header .stepIndicator.active {
    font-weight: 600;
}

#multiStepForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}

#multiStepForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}

#multiStepForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}

#multiStepForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}

#multiStepForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}

#multiStepForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}

#multiStepForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}

#multiStepForm .form-header .stepIndicator:last-child:after {
    display: none;
}


#multiStepForm .step {
    display: none;
}