.crfxl-arrows-position-inline .crfxl-btn {
    position: relative; 
}

.crfxl-arrows-position-sides .crfxl-btn {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%); 
}

.crfxl-arrows-position-sides .crfxl-btn:hover:not(:disabled) {

     transform: scale(1.1);
}
.crfxl-arrows-position-sides .crfxl-btn-prev {
    left: 0.5rem;
}
.crfxl-arrows-position-sides .crfxl-btn-next {
    right: 0.5rem;
}

.crfxl-btn {
    position: relative; 
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 0; 
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    z-index: 10;
    overflow: hidden; 
}

.crfxl-btn::before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 10px; 
    height: 10px; 
    border-style: solid;
    border-color: #000; 
    border-width: 0 3px 3px 0; 
    position: absolute;
    top: 50%;
    left: 50%;

    transition: border-color 0.2s ease;

    transform: translate(-50%, -50%);
}

.crfxl-arrows-minimal-dark .crfxl-btn { width: 30px; height: 30px; }
.crfxl-arrows-minimal-dark .crfxl-btn::before { border-color: #000; }

.crfxl-arrows-position-inline.crfxl-arrows-minimal-dark .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); }

.crfxl-arrows-position-sides.crfxl-arrows-minimal-dark .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); }

.crfxl-arrows-minimal-light .crfxl-btn { width: 30px; height: 30px; }
.crfxl-arrows-minimal-light .crfxl-btn::before { border-color: #fff; }

.crfxl-arrows-position-inline.crfxl-arrows-minimal-light .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); }

.crfxl-arrows-position-sides.crfxl-arrows-minimal-light .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); }

.crfxl-arrows-dark-bubble .crfxl-btn { width: 40px; height: 40px; background: #001534; border-radius: 50%; }
.crfxl-arrows-dark-bubble .crfxl-btn::before { border-color: #fff; }

.crfxl-arrows-position-inline.crfxl-arrows-dark-bubble .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); }

.crfxl-arrows-position-sides.crfxl-arrows-dark-bubble .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); }

.crfxl-arrows-light-bubble .crfxl-btn { width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.crfxl-arrows-light-bubble .crfxl-btn::before { border-color: #000; }

.crfxl-arrows-position-inline.crfxl-arrows-light-bubble .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); }

.crfxl-arrows-position-sides.crfxl-arrows-light-bubble .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); }

.crfxl-arrows-semi-trans-dark-bubble .crfxl-btn { width: 40px; height: 40px; background: rgba(0,0,0,0.5); border-radius: 50%; }
.crfxl-arrows-semi-trans-dark-bubble .crfxl-btn::before { border-color: #fff; }

.crfxl-arrows-position-inline.crfxl-arrows-semi-trans-dark-bubble .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); background: rgba(0,0,0,0.7); }

.crfxl-arrows-position-sides.crfxl-arrows-semi-trans-dark-bubble .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); background: rgba(0,0,0,0.7); }

.crfxl-arrows-semi-trans-light-bubble .crfxl-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.crfxl-arrows-semi-trans-light-bubble .crfxl-btn::before { border-color: #000; }

.crfxl-arrows-position-inline.crfxl-arrows-semi-trans-light-bubble .crfxl-btn:hover:not(:disabled) { transform: scale(1.1); background: rgba(255,255,255,0.7); }

.crfxl-arrows-position-sides.crfxl-arrows-semi-trans-light-bubble .crfxl-btn:hover:not(:disabled) { transform: translateY(-50%) scale(1.1); background: rgba(255,255,255,0.7); }

.crfxl-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;

    transform: translateY(-50%) scale(1); 
}

.crfxl-arrows-position-inline .crfxl-btn:disabled {
     transform: scale(1);
}

.crfxl-btn.crfxl-btn-prev::before {
    transform: translate(-50%, -50%) rotate(135deg); 
	margin-left: 2px;
}
.crfxl-btn.crfxl-btn-next::before {
    transform: translate(-50%, -50%) rotate(-45deg); 
	margin-left: -2px;
}

.crfxl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 20;

    position: absolute; 
    width: 100%; 
    left: 0;
    bottom: 10px; 
}

.crfxl-dot {
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(0,0,0,0.5); 
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.crfxl-dot.crfxl-active {
    transform: scale(1.1);
    background: #000; 
}

.crfxl-dots-circles-dark .crfxl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
}
.crfxl-dots-circles-dark .crfxl-dot.crfxl-active {
    background: #000;
}

.crfxl-dots-circles-light .crfxl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}
.crfxl-dots-circles-light .crfxl-dot.crfxl-active {
    background: #fff;
}

.crfxl-dots-squares-dark .crfxl-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(0,0,0,0.5);
}
.crfxl-dots-squares-dark .crfxl-dot.crfxl-active {
    background: #000;
}

.crfxl-dots-squares-light .crfxl-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(255,255,255,0.5);
}
.crfxl-dots-squares-light .crfxl-dot.crfxl-active {
    background: #fff;
}

.crfxl-dots-lines-dark .crfxl-dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0,0,0,0.5);
}
.crfxl-dots-lines-dark .crfxl-dot.crfxl-active {
    background: #000;
}

.crfxl-dots-lines-light .crfxl-dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
}
.crfxl-dots-lines-light .crfxl-dot.crfxl-active {
    background: #fff;
}