
.btn {
    border:1px solid #acacac;
    background: #FFF;
    color:#0a0a0a;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    line-height: 48px;
    font-weight: 600;
    border-radius: 25px;
    padding: 0 25px;
    display: block;
    cursor: pointer;
    transition: ease-out 0.3s;
}

.btn.--color {
    border:1px solid #E00000;
    color: #fff;
    background-color: #E00000;
}

.btn.--color:hover {
    color: #bd0000;
    background-color: #fff;
}


.btn-link {
    color: #4c4c4c;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 0px;
    display: flex;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.06em;
    transition: ease-out 0.3s;
}

.btn-link img {
    width: 12px;
    margin-right: 6px;
}

.btn.disabled {
    pointer-events: none;
    opacity: .5;
}

.btn-loading {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: not-allowed;
    color: transparent !important;
	position: relative;
	background-color: #ff0000;
	-webkit-animation: cambioColor 2s infinite;
	animation: cambioColor 2s infinite;
}

.btn-loading:before {
    width: 1.225rem;
    height: 1.225rem;
    border-radius: 50%;
    position: absolute;
    content: "";
    background: 0 0;
    border: 0.25rem solid #fff;
    -webkit-clip-path: inset(0 0 50% 0);
    clip-path: inset(0 0 50% 0);
    transform: rotate(0);
    -webkit-animation: spin .6s linear infinite;
    animation: spin .6s linear infinite;
}

.btn-loading:hover {
	background-color: #ff0000;
}

@-webkit-keyframes spin {
	from {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }

@keyframes spin {
	from {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
}

@keyframes cambioColor {
	0% {
	  background-color: #ff0000;
	}
	50% {
	  background-color: #b90000;
	}
	100% {
	  background-color: #ff0000;
	}
}


.bullets-steps {
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 1;
}

.bullets-steps__item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
    background-color: #d4d4d4;
    line-height: 1;
}

.bullets-steps__item:last-child {
    margin-right: 0px;
}

.bullets-steps__item.--active {
    width: 15px;
    height: 15px;
    background-color: #ff0000;
}


.modal-gral {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.8);
    z-index: 9999;
    display: none;
}

.modal-gral .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #FFF;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    max-width: 750px;
    width: 100%;
}

.modal-gral .content__item {
    display: flex;
    flex-direction: column;
}

.modal-gral .content .close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    cursor: pointer;
}

.modal-gral .content__item h3 {
    font-size: 26px;
    color: #ff0000;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.modal-gral .content__item.--big h3 {
    text-align: center;
}

.modal-gral .content__item p {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.modal-gral .content__item.--big p {
    font-size: 17px;
    color: #000;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}

.modal-gral .content__item p.--mb15 {
    margin-bottom: 12px;
}

.modal-gral .content__item__image {
    width: 100%;
    height: auto;
    border: none;
    margin: 0 auto;
}

.modal-gral .content__item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

.modal-gral .bullets-steps {
    flex: 1;
    justify-content: center;
}