$border-color: #D6D9DD;
$primary-color: #6e42d3;

.mintmrm label, 
.mintmrm .label {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #344054;
    box-sizing: border-box;
}

.mintmrm input[type=date], 
.mintmrm input[type=email], 
.mintmrm input[type=text], 
.mintmrm textarea, 
.mintmrm select {
    font-size: 14px;
    line-height: 1.3;
    color: #7a8b9a;
    padding: 9px 15px;
    width: 100%;
    border-radius: 6px;
    display: block;
    border: 1px solid #e4e6eb;
    min-height: 30px;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    max-width: 100%;
}
.mintmrm input[type=date]:focus, 
.mintmrm input[type=email]:focus, 
.mintmrm input[type=text]:focus, 
.mintmrm textarea:focus, 
.mintmrm select:focus {
    border-color: #e4e6eb;
    color: #7a8b9a;
    box-shadow: none;
}

.mintmrm .mintmrm-btn {
    display: inline-block;
    border: 1px solid transparent;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.01em;
    padding: 11px 15px;
    cursor: pointer;
    text-align: center;
    border-radius: 6px;
    text-transform: capitalize;
    background-color: #573BFF;
}
.mintmrm .mintmrm-btn:hover {
    background-color: #4C25A5;
    color: #fff;
}

/*----checkbox style---- */
.mintmrm-checkbox input[type="checkbox"] {
    display: none;
}
.mintmrm-checkbox.no-title label {
    min-height: 20px;
}
.mintmrm-checkbox label {
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #344054;
    position: relative;
    padding-left: 29px;
    display: inline-block;
    //text-transform: capitalize;
    cursor: pointer;
}
.mintmrm-checkbox label:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #bdc7eb;
    background-color: #f6f6f8;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.mintmrm-checkbox label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 9px;
    height: 5px;
    transform: rotate(-45deg);
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-sizing: border-box;
}
.mintmrm-checkbox input[type="checkbox"]:checked + label::before {
    background-color: #573bff;
    border-color: #573bff;
}
.mintmrm-checkbox input[type="checkbox"]:checked + label::after {
    opacity: 1;
    visibility: visible;
}

/*----radio btn style---- */
.mintmrm-radiobtn input[type="radio"] {
    display: none;
}
.mintmrm-radiobtn.no-title label {
    height: 16px;
}
.mintmrm-radiobtn label {
    font-size: 15px;
    line-height: 14px;
    font-weight: 500;
    color: #7a8b9a;
    position: relative;
    padding-left: 29px;
    display: inline-block;
    //text-transform: capitalize;
    cursor: pointer;
}
.mintmrm-radiobtn label::before {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #f7f7fa;
    border: 1px solid #bdc7eb;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.mintmrm-radiobtn label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #573bff;
    transform: scale(0);
    transition: all 0.3s ease;
}
.mintmrm-radiobtn input[type="radio"]:checked + label::before {
    border-color: #573bff;
}
.mintmrm-radiobtn input[type="radio"]:checked + label::after {
    transform: scale(1);
}

.mintmrm .mintmrm-sbuscription-form-block {
    border: 1px solid #333;
    padding: 30px;
}
.mintmrm .mintmrm-sbuscription-form-block > .components-base-control {
    margin-top: 12px;
}

.mintmrm .mintmrm-sbuscription-form-block.mint-form-added {
    border: none!important;
    padding: 0!important;
}


//---5. loader----
.mintmrm-loader {
    border: 2px solid #8265c5;
    border-radius: 50%;
    border-top: 2px solid #fff;
    width: 30px;
    height: 30px;
    animation: spin .7s linear infinite;
    display: block;
    margin-left: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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