/* MODALS */

/*======================================*/

.modal {
    text-align: center;
    z-index: 999999999999;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    width: 0;
    margin-left: -1em;
    vertical-align: middle;
}

.modal.fade:not(.animated) .modal-dialog {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
    -webkit-transition: all .5s linear .5s;
    transition: all .5s linear .5s;
}

.modal.fade.in:not(.animated) .modal-dialog {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.bootbox.modal.in:not(.fade) {
    opacity: 1;
    transition: opacity, 0.5s;
}

.bootbox.modal:not(.fade) {
    opacity: 0;
    -webkit-transition: opacity .5s linear .5s;
    transition: opacity .5s linear .5s;
}

.modal-dialog {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-top: -1%;
    min-width: 90%;
}

.modal-dialog.animated {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
}

.modal-header {
    padding: 15px;
    position: relative;
    border: 0;
    background-color: #e8e8e8;
    border-radius: 12px;
}

.modal-footer {
    background-color: transparent;
    color: #7a878e;
    border-color: rgba(0, 0, 0, 0.07);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.modal-title {
    font-size: 1.2em;
    color: #4d627b;
}

.modal-body {
    min-height: 69px;
}

.modal-body>.close, .modal-header>.close {
    top: 50%;
    margin-top: -0.5em;
    right: 10px;
    left: auto;
    position: absolute;
    background-color: transparent !important;
}

.modal-body>.close {
    top: 10px;
    margin-top: 0 !important;
}

.modal-content {
    box-shadow: none;
    border-radius: 12px;
    border: 0;
}

@media (max-width: 768px) {
    .modal-footer {
        padding: 3px 4px !important;
        ;
    }
}

.modal-footer {
    padding: 10px 15px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.modal-backdrop.in {
    opacity: 0.75;
}

.modal-backdrop {
    z-index: 9999;
}

.pci-circle {
    border: 1px solid;
    border-radius: 50%;
}

.pci-cross {
    display: block;
    width: 1.3em;
    height: 1.3em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.close {
    font-size: 20px;
    color: #4d627b;
    opacity: 1;
    text-shadow: none;
}

@media (min-width: 768px) {
    .modal-dialog {
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 506px;
    }
}

.iframe-container {
    padding-bottom: 60%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-container iframe, .iframe-container object, .iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}