.d-flex {
    display: flex;
}

.j-center {
    justify-content: center;
}

.j-between {
    justify-content: space-between;
}

.j-around {
    justify-content: space-around;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.m-auto {
    margin: auto;
}

.space-15 {
    margin-bottom: 15px;
}

.f-wrap {
    flex-wrap: wrap;
}

/* messages */

.web-alerts {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 66%);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
}

.web-alerts .message {
    max-width: 500px;
    padding: 1rem;
    background-color: #efece3;
    border: 3px solid #6c5824;
    width: 100%;
    text-align: center;
    font-size: 13px;
}

.web-alerts .message .preload {
    width: 100px;
    margin: auto;
}

.web-alerts .message>img {
    width: 100px;
}

.web-alerts .message p {
    padding: 10px;
}

.web-alerts .message>a {
    padding: 5px;
    border: 1px solid #6c5824;
    border-radius: 5px;
    background: #4b3700;
    color: #fff;
    display: block;
    max-width: 150px;
    margin: 1rem auto auto;
    transition: all .2s cubic-bezier(0.42, 0, 0.59, 0.97);
    float: none;
}

.web-alerts .message>a:hover {
    border: 1px solid #644a05;
    background: #dca409;
}

.web-alerts .message>.success {
    width: 100px;
    height: 100px;
    background: url("../img/success.png");
    background-size: contain;
    margin: auto
}

.web-alerts .message>.error {
    width: 100px;
    height: 100px;
    background: url("../img/error.png");
    background-size: contain;
    margin: auto
}

.web-alerts .message p.info {
    padding: 20px;
    font-size: 15px;
}

.web-alerts .message a {
    padding: 10px;
    background: #d85b3b;
    border-radius: 5px;
    color: #fff;
    transition: all .2s ease-in-out;
}

.web-alerts .actions a:hover {
    background: #dc4018;
}

.web-alerts .message a:first-child {
    background: #3b9ad8;
}

.web-alerts .message a:first-child:hover {
    background: #029bff;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(78, 1, 1);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

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