    .diaporama *:focus, .diaporama *:active {
        outline: none;
    }
    .diaporama .diaporama-controls {
        height: 46px;
        width: 100%;
        margin: auto;
        text-align: center;
        padding: 8px;
        position: absolute;
        bottom: 25px;
        left: 0;
        display: none;
    }
    .diaporama .diaporama-element {
        background-size: contain;
        width: 100%;
        height: calc(100vh - 180px);
        background-position: center;
        background-repeat: no-repeat;
        background-color: #e6e6e6;
    }
    button.control-preview {
        background: black;
        color: white;
        font-size: 24px;
        padding: 5px;
        line-height: 13px;
        border-radius: 30px;
        width: 30px;
        height: 30px;
        text-align: center;
    }
    button#cancel-preview {
        position: absolute;
        right: -12px;
        top: -12px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1200;
    }
    #preview-modal .modal-content {
        border-radius: 0;
    }
    #preview-modal .modal-dialog {
        position: unset;
        width: 60% !important;
        margin: auto;
    }

/*confirm modal*/
#confirm-modal *:focus {
    outline: none;
}

#confirm-modal {
    z-index: 2000;
}

#confirm-modal .modal-dialog {
    margin-top: calc(35vh);
}

#confirm-modal .modal-header {
    background-color: #ea5543;
    border-bottom: none;
    border-top-right-radius: .3rem;
    border-top-left-radius: .3rem;
    color: white;
}

#confirm-modal .modal-header .modal-title {
    font-weight: lighter;
}

button#cancel-confirm {
    background: no-repeat;
    color: white;
    font-size: 29px;
    opacity: 1;
    line-height: 0;
    margin-top: -15px;
    font-weight: lighter;
}

#confirm-modal .modal-footer button.btn {
    background: no-repeat;
    border: 1px solid;
    width: 70px;
    height: 26px;
    border-radius: .3rem;
    font-size: 12px;
    padding: 0px;
}

#confirm-modal .modal-footer {
    text-align: center;
}

#confirm-modal .modal-footer button.btn i {
    font-size: 16px;
    line-height: 15px;
}

#confirm-modal p.confirm-text {
    color: black;
    text-align: center;
}


.customize-waiting-overlay {
    position: fixed;
    z-index: 1000;
    height: 100%;
    width: 100%;
    margin-left: -15px;
    background-color: #eaecfa;
    opacity: 0.95;
    top: 0;
}

.customize-waiting-text {
    z-index: 1001;
    width: auto;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: montserrat;
    text-transform: uppercase;
    font-weight: 800;
    color: #000000;
    letter-spacing: 0.2em;
}

.customize-waiting-text::before, .customize-waiting-text::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #000000;
    position: fixed;
    -webkit-animation: load .7s infinite alternate ease-in-out;
    animation: load .7s infinite alternate ease-in-out;
}
.customize-waiting-text::before {
    top: 0;
}
.customize-waiting-text::after {
    bottom: 0;
}
@-webkit-keyframes load {
  0% {
    left: -30px;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 100%;
    height: 30px;
    width: 15px;
  }
}

@keyframes load {
  0% {
    left: -30px;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 100%;
    height: 30px;
    width: 15px;
  }
}