/* GENERAL */
.btnDisabled{
    pointer-events: none !important;
}
/* BUTTONS */
.diyBtn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 50px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
    margin: 10px 0;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Montserrat';
    font-weight: 400;
}
.diyBtn.color-1 {
    background-color: #ee316b;
    color: #fff;
}
.diyBtn.color-1:hover {
    background-color: #fff;
    color: #39b8e3;
}
.diyBtn.color-2 {
    background-color: #ee2a79;
    color: #fff;
}
.diyBtn.color-2:hover {
    background-color: #fff;
    color: #ee2a79;
}
.diyBtn.color-3 {
    background-color: #ee316b;
    color: #fff;
}
.diyBtn.color-3:hover {
    background-color: #39b8e3;
    color: #fff;
}
/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .diyBtn {
        font-size: 15px;
        width: 120px;
        height: 45px;
    }
}
/* LOADERS */
/* LOADERS - MAIN */
.cdev-diy-main-loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}
.cdev-diy-main-loader div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.cdev-diy-main-loader div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0e0e0e;
    margin: -4px 0 0 -4px;
}
.cdev-diy-main-loader div:nth-child(1) {
    animation-delay: -0.036s;
}
.cdev-diy-main-loader div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
.cdev-diy-main-loader div:nth-child(2) {
    animation-delay: -0.072s;
}
.cdev-diy-main-loader div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
.cdev-diy-main-loader div:nth-child(3) {
    animation-delay: -0.108s;
}
.cdev-diy-main-loader div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
.cdev-diy-main-loader div:nth-child(4) {
    animation-delay: -0.144s;
}
.cdev-diy-main-loader div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.cdev-diy-main-loader div:nth-child(5) {
    animation-delay: -0.18s;
}
.cdev-diy-main-loader div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
.cdev-diy-main-loader div:nth-child(6) {
    animation-delay: -0.216s;
}
.cdev-diy-main-loader div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
.cdev-diy-main-loader div:nth-child(7) {
    animation-delay: -0.252s;
}
.cdev-diy-main-loader div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
.cdev-diy-main-loader div:nth-child(8) {
    animation-delay: -0.288s;
}
.cdev-diy-main-loader div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

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

/* LOADERS - BUTTON */
.ld.ld-spin {
    display: inline-block;
    position: absolute;
    animation: ld-spin 1s infinite linear;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    opacity: 1;
    z-index: auto;
    visibility: visible;
    transition: all .3s;
    transition-timing-function: ease-in;
    color: inherit;
    box-sizing: content-box;
    transform-origin: 50% 50%;
    transform-box: fill-box;
}

.ld-ring:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    transform-origin: 0 0;
    transform: translateZ(0) scale(0.5);
    backface-visibility: hidden;
    border-radius: 50%;
    border: .3em solid currentColor;
    border-left-color: transparent;
}

@keyframes ld-spin {
    0% {
        animation-timing-function: cubic-bezier(0.5856,0.0703,0.4143,0.9297);
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}