.logo {
	width: 100%;
	text-align: center;
}

.logo img {
	width: 250px;
}

.input {
    border: .0625rem solid #adadad;
}

.custom-w-10 {
	width: 15rem;
}

.custom-max-h-5 {
	max-height: 5rem;
}

.underline-hover:hover {
	text-decoration: underline;
	text-decoration-color: white;
}

.bg-custom {
	background-color: #FF8874;
}

.footer-text a {
    color: white;
}

.footer-text a:hover {
    color:#00c9a7
}

.backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 990;
    opacity: 0;
}

.backdrop.active {
    opacity: 1;
}

.customModal {
    background: white;
    border-radius: .75rem;
    padding: 5rem;
    text-align: center;
    max-width: 600px;
    max-height: 300px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    z-index: 999;
    opacity: 0;
    transition: .6s;
}
.customModal__height-500 {
    max-height: 500px;
}
.customModal.active {
    opacity: 1;
}

.customModal .title {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.customModal .title.success {
    color: #00c9a7;
}

.customModal .title.danger {
    color: #e53946;
}

.customModal .body {
    font-weight: 500;
    font-size: 1.2rem;
}

.customModal .info {
    margin-top: 1rem;
    color: #545454;
}

.customModal.active {
    animation-name: zoom;
    animation-duration: .6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
