.errorlist {
    color: #a94442;
    margin-top: 5px;
    font-family: "open_sansregular", sans-serif;
}

.errorlist li::marker {
    content: "";
}

.errorlist li:before {
    font-family: FontAwesome;
    content: "";
    display: inline-block;
    padding-right: 5px;
    top: 2px;
}

/* 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 #b50d4d;
    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;
    }
}

.preview-loader {
    width: 2em;
    height: 2em;
    text-align: center;
    margin: 14px;
    border: 5px solid #000000ab;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.alert-box {
    border: 1px solid rgb(203, 86, 130);
    background-color: rgb(240, 207, 219);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 15px;
    line-height: 1.6;
    gap: 12px
}

.alert-box__icon {
    color: rgb(203, 86, 130);
    flex-shrink: 0;
    font-size: 1.57142857em
}