/* full page modal loader css */

.full-page-overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 110;
}

.full-page-modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80%;
    max-width: 80%;
    width: 100%;
    z-index: 120;
    background: transparent;
    border-radius: 5px;
    padding: 20px 25px;
    font-family: "gilroymedium", sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.full-page-modal p{
    letter-spacing: 0.5px;
}

.loader {
    border: 6px solid #e01471;
    border-radius: 50%;
    border-top: 6px solid #fff;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    margin: 0 20px 0 0;
    flex: 0 0 auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 500px){

    .full-page-modal{
        max-width: 600px;
        width: auto;
    }
}