﻿.modal-custom-icon .modal-header i {
    font-size: 16px;
}

.modal-custom-icon .modal-body .cnt-icon {
    font-size: 150px;
    text-align: center;
    color: #B8BDD1;
}

.modal-custom-icon .modal-footer {
    justify-content: center;
}

    .modal-custom-icon .modal-footer .btn-custom {
        border: none;
        padding: 6px 30px;
        border-radius: 20px;
        color: #fff;
    }
.modal-content.fullscreen {
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    left: 0;
    border-radius: 0px;
    top: -1px;
}
    .modal-content.fullscreen .modal-body {
        height: calc(100% - 200px);
        overflow-y: auto;
    }
.modal-header .iconfullscreen,
.modal-header .iconofffullscreen {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 1rem 1rem;
    margin: -1rem 0px -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    position: absolute;
    right: 40px;
}
    .modal-header .iconfullscreen:hover,
    .modal-header .iconofffullscreen:hover {
        opacity: 0.75;
    }
.loading {
    /*display: block;*/
    position: relative;
}

    .loading[data-progress]:before {
        content: attr(data-progress);
        position: absolute;
        z-index: 2147483647;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 60px;
        height: 44px;
        margin: auto;
        font-size: 28px;
        text-align: center;
        color: #7b92fe;
    }

    .loading:after {
        content: '';
        position: absolute;
        z-index: 2147483647;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255,255,255,0.1);
        background-image: url('../images/ripple.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

body.loading {
    position: static;
}

    body.loading[data-progress]:before {
        bottom: 30%;
        width: 140px;
    }

    body.loading:after {
        position: fixed;
        background-position-x: center;
        background-position-y: 30%;
    }