*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.hidde{
    display: none;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_logo{
    max-height: 110px;
}

.main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
    min-height: 55vh;
}

.main__ttl{
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    text-align: center;
    color: #32184B;
}

.form{
    width: 100%;
    text-align: center;
}

.form__element{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    margin: 7px 24px;
    border-bottom: 1px solid #32184B;
    overflow: hidden;
}

.form__icon{
    margin: 0 10px;
}

.form__input{
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: none;
    outline: none;
}

.form__submit{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 360px;
    max-width: 84%;
    margin: 15px auto;
    padding: 4px 20px;
    color: #FFF;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50px;
    background-color: rgb(236, 0, 140);
    border: none;
}

.form__submit.disabled{
    background: rgb(230, 230, 230);
    border-color: rgb(230, 230, 230);
    cursor: not-allowed;
}

.epayco{
    display: flex;
    flex-flow: row;
    margin: 34px auto 13px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.epayco__icon{
    width: 8.73px;
    height: 11.35px;
    margin: 0 10px;
}

.epayco__txt{
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
}

.epayco__img{
    width: 50px;
    margin: 0px 10px;
}

.footer{
    padding: 5px;
}

.footer__txt{
    text-align: center;
    font-size: 12px;
}

.footer__pay{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px 0 40px;
}

.footer__element{
    height: 30px;
}

.footer__position{
    position: absolute;
    top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 20px;
}

.footer__mark{
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #000;
    opacity: .2;
}

.footer__mark.active{
    background-color: #007aff;
    opacity: 1;
}

.footer__logo{
    width: 100%;
    min-height: 70px;
    background-image: url(/wom/img/banner_inferior.jpg);
    background-size: cover;
    border-radius: 4px;
}

/* LOADER */

.dot-spinner {
    --uib-size: 1.6rem;
    --uib-speed: .9s;
    --uib-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner.disabled{
    display: none;
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 15%;
    width: 15%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}