/* This is to override wordpress default theme css type-attribute selectors, if-any */
.resermy-root input[type='text'],
.resermy-root input[type='email'] {
    outline: none;
    border: none;
    color: currentColor;
    height: auto;
    padding: 6px 0 7px;
    min-width: 0;
    font: inherit;
    background: none;
    vertical-align: middle;
}

.resermy-root button, .resermy-root input[type='button'], .resermy-root input[type='submit'] {
    letter-spacing: 0;
    font-style: normal;
}

.resermy-root button:focus,
.resermy-root input[type='button']:focus,
.resermy-root input[type='submit']:focus {
    outline: none;
}

/* Default Loading Ring */
#resermy-lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

#resermy-lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border-radius: 50%;
    animation: resermy-lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border: 6px solid #fff;
    border-color: #999 transparent transparent transparent;
}

#resermy-lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

#resermy-lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

#resermy-lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

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