﻿
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.page-link {
    color: #6a6a6f;
    border:none;
    font-size: 18px;
}
.active > .page-link {
    background: transparent linear-gradient(135deg, #F38020 0%, #EA1F27 100%) 0% 0% no-repeat padding-box;
    border-radius: 3px;
    color: white;
    border: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 5px;
    background-color: #EBEBEB;
    font-weight:bold;
}

.disabled > .page-link {
    color: #8B8B8B;
    pointer-events: none;
    border-color: none;
}
.page-item.prev, .page-item.next {
    margin: 0px 10px;
    color: #8B8B8B;
    border: 5px;
}

.page-link:hover {
    color: #5D6A76;
    background-color: white;
}

.w-slider-arrow-left {
    background: none;
    font-size: 40px;
    opacity:1;
    left:0.15em;
}
.w-slider-arrow-right {
    background: none;
    font-size: 40px;
    opacity:1;
    right:0.15em;
}

.background-cover::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.35);
}
.splide__pagination__page.is-active {
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.loader-container {
    display:none;
}
.loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
}
.loader-box {
    border-radius: 18px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: white;
    width: 100%;
    max-width: 1300px;
    height: 56.25%;
    z-index: 99;
}
.loader-container.active {
    display: block;
}
.ring {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: #fff;
    border: 3px solid #ebebeb;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: 'Noto Sans TC','Noto Sans SC',sans-serif;
    font-size: 20px;
    color: #5D6A76;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
    z-index: 111;
}

    .ring:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid #5D6A76;
        border-right: 3px solid #5D6A76;
        border-radius: 50%;
        animation: animateC 2s linear infinite;
    }

.ring-close {
    border: 2px solid #5D6A76;
    border-radius: 20px;
    line-height: 1.5em;
    margin-top: 20px;
    background-color: white;
}

.disable-click {
    pointer-events:none;
}
.ring.completed-upload:before {
    animation: none;
    border-top: 3px solid #5D6A76;
    border-right: 3px solid #5D6A76;
    border-bottom: 3px solid #5D6A76;
    border-left: 3px solid #5D6A76;
    transform: rotate(0deg);
}

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

