.ecls_canarias_container {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, 0.3);
    backdrop-filter: blur(3px);
    top: 0;
    left: 0;
    z-index: 9999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecls_canarias {
	width: 100%;
    max-width: 768px;
    position: fixed;
    bottom: 0;
    border-radius: 32px 32px 0 0;
    padding: 16px 0;
    background: #fff;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.ecls_canarias h3 {
    font-size: 16px;
    margin: 16px auto;
    text-align: center;
    text-transform: uppercase;
    color: black;
}

.ecls_canarias > div {
    text-align: center;
}

.ecls_canarias_btns {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 16px auto;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.ecls_link {
    width: 100%;
    border-radius: 16px;
    background-color: #fff;
    display: inline-flex;
    gap: 8px;
    align-items: center;;
    cursor: pointer;
    padding: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: all .3s ease;
    color: #666666;
}

mcls_link:hover{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.ecls_link img {
    height: 24px;
    width: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

/* @media (max-width: 767px) {
    .ecls_canarias_btns {
        flex-direction: column;
        margin-top: 10px;
    }
    
    .ecls_canarias {
        width: 90%;
    }

    .ecls_link {
        padding: 20px 0;
    }
}

@media (max-width: 500px) {
    .ecls_canarias {
        width: 100%;
    }
} */