/** MODAL STYLING **/

/*#modalFields .modal-content {
	border-radius: 0px;
	box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0);
}

#modalLoad .modal-content {
	border-radius: 15px;
	box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0);
}
*/

.modal.modal-load {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none;
    overflow: visible;
    outline: 0;
    text-align: center;
    padding: 0px 0px;
    border-radius: unset;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.modal.modal-load.modal-transparent {
    background-color: transparent !important;
    box-shadow: unset !important;
}

.modal-load .modal-content {
    padding: 1em !important;
}

.modal-body.text-center {
    display: flex;
	flex-direction: column;
}

.modal-load .loader-txt {
    font-size: 1.2em;
    color: #666;
    padding-bottom: .5em;
}

.modal-load .modal-dialog, .modal-load .modal-content, .modal-load .modal-body {
    height: 100%;
}

.modal-load .modal-backdrop.show {
	opacity: 0.75;
}

.blocker {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

/** SPINNER CREATION **/

.modal-load .loader {
    position: relative;
    text-align: center;
    margin:  auto;
    z-index: 9999;
    display: block;
    width: 50px;
    height: 50px;
    border: 10px solid rgb(0 0 0 / .3);
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

