.mwd-custom-btn__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 160px;
    margin: 15px;
}

.mwd-custom-btn__container--center {
    max-width: none;
}

.mwd-custom-btn {
    display: inline-block;
    position: relative;
    padding: 13px 7px;
    background-color: #f08080;
    color: #fff !important;
    border: 2px solid #111;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

@media(min-width: 992px) {
    .mwd-custom-btn {
        font-size: 12px;
    }
}

@media(min-width: 1440px) {
    .mwd-custom-btn {
        font-size: 20px;
    }
}

.mwd-custom-btn i {
    margin-left: 7px;
}

.mwd-custom-btn:hover {
    background-color: #111;
}

.mwd-custom-btn.mwd-custom-btn--loading {
    cursor: not-allowed;
}

.mwd-custom-btn.mwd-custom-btn--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.mwd-custom-btn.mwd-custom-btn--loading:hover {
    background-color: #f08080;
}

.mwd-custom-btn__text-container {
    position: relative;
    text-align: center;
    font-family: "Verlag A", "Verlag B", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mwd-custom-btn__text-container-arrow {
    display: block;
    width: 46px;
    transform: translate(23px, 4px);
}

.mwd-custom-btn__container--center .mwd-custom-btn__text-container-arrow {
    position: relative;
    left: 50%;
    transform: translate(-100%, 4px);
}

.mwd-custom-btn__text-container-text {
    margin-top: -20px;
}

.mwd-custom-btn__container--center .mwd-custom-btn__text-container-text {
    max-width: 200px;
}



/*            LOADING SPINNER            */
/*  credits to: https://loading.io/css/  */
.mwd-custom-btn.mwd-custom-btn--loading .lds-ring {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
}

.mwd-custom-btn.mwd-custom-btn--loading .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 27px;
    height: 27px;
    margin: 4px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.mwd-custom-btn.mwd-custom-btn--loading .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.mwd-custom-btn.mwd-custom-btn--loading .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.mwd-custom-btn.mwd-custom-btn--loading .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

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

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