/* Estilos del overlay */
.custom-overlay {
    background-color:rgb(16, 21, 19, 80%) !important;
}

.custom-overlay .image {
    width: 90%;
    max-width: 150px;
    margin-bottom: 20px;
    margin-top: -120px;
}
 
.custom-overlay .title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.7em;
    margin-bottom: 5px;
    color: #435f57;
}
.custom-overlay .subtitle {
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    color: #768983;
    margin-bottom: 10px;
}

.custom-overlay .message {
    margin-bottom: 20px;
}

.custom-overlay .message ul {
    list-style: none;
}

.custom-overlay .message ul li {
    margin-bottom: 5px;
}

.custom-overlay .button {
    background-color: #b95767;
    padding: 6px 10px;
    border: 0;
    font-size: 1em;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    line-height: 1.2;
    text-align: center;
    display: inline-flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
    font-weight: 600;
    pointer-events: auto;

    cursor: pointer !important;

}

.custom-overlay .button:hover {
    color: #fff;
    background-color: #e3425d;
}







/* Estilos del overlay */
.custom-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:rgb(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: none;
}

.custom-overlay .custom-modal {
    position: relative;
    width: 90%;
    max-width: anchor-size(--myAnchor inline, 650px);
    text-align: center;
    padding: 40px;
    background-color: #fff;
    height: auto;
    border-radius: 10px;
    z-index: 999999;

}


.custom-overlay .custom-modal svg#btn-close {
    cursor: pointer;
    width: 30px;
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #fff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);

}

.custom-overlay .custom-modal .btn-close-color {
    fill: #3d3d3d;
}



/* ----------------------------------------------
 * Generated by Animista on 2024-11-4 13:1:33
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
                opacity: 1;
    }

    100% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
                opacity: 1;

    }
}
@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
                opacity: 1;

    }

    100% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
                opacity: 1;

    }
}
  

.slide-bottom {
	animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
                opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
                opacity: 0;
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0%);
                transform: translateY(0%);
                opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
                opacity: 0;
    }
}

.slide-top {
	animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  

.fade-in {
	-webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


@-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  

.fade-out {
	-webkit-animation: fade-out 0.5s ease-out both;
	        animation: fade-out 0.5s ease-out both;
}