/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.scrollDown {
    position: fixed;
    bottom: 10px;
    left: 50%;
    /* left: 10px; */
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    z-index: 99999;
    background: #ffffff;
    /* background: rgba(0, 0, 0, 0.7); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* width: 60px;
    height: 60px; */
    border-radius: 100%;
}

.scrollDown button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.scrollDown img {
    width: 40px;
    height: 40px;
}

.scroll-indicator {
    position: relative;
    width: 50px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.arrow {
    position: relative;
    width: 20px;
    height: 20px;
}

.static-arrow {
    position: relative;
    width: 20px;
    height: 20px;
}

.arrow::before,
.arrow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 5px;
    background-color: #9A906D;
    top: 50%;
}

.static-arrow::before,
.static-arrow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 5px;
    background-color: #9A906D;
    top: 50%;
}

.arrow::before {
    left: 25%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-box-shadow: 0px 1px 2px 0px rgb(24 18 18 / 74%);
    box-shadow: 0px 1px 2px 0px rgb(24 18 18 / 74%);
}

.static-arrow::before {
    left: 25%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-box-shadow: 0px 1px 2px 0px rgb(24 18 18 / 74%);
    box-shadow: 0px 1px 2px 0px rgb(24 18 18 / 74%);
}

.arrow::after {
    left: 74%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-box-shadow: 0px 2px 2px 0px rgb(24 18 18 / 74%);
    box-shadow: 0px 2px 2px 0px rgb(24 18 18 / 74%)
}

.static-arrow::after {
    left: 74%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-box-shadow: 0px 2px 2px 0px rgb(24 18 18 / 74%);
    box-shadow: 0px 2px 2px 0px rgb(24 18 18 / 74%)
}

.arrow:nth-child(1) {
    opacity: 0;
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4);
    transform: scale(.4);
    -webkit-animation: fade 2s ease-in-out infinite;
    animation: fade 2s ease-in-out infinite;
}

.arrow:nth-child(2) {
    opacity: 0;
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4);
    transform: scale(.4);
    /* animation: fade 1.5s infinite; */
    -webkit-animation: fade 2s ease-in-out infinite;
    animation: fade 2s ease-in-out infinite;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

@-webkit-keyframes fade {
    0% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: 1;
    }

    80% {}

    100% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: 1;
    }

    80% {}

    100% {
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0;
    }
}

.remind-scrollDown-section {
    position: fixed;
    left: 50%;
    bottom: 10px;
    z-index: 1000;
    width: 60px;
    height: 120px;
    border-radius: 30%;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
}