﻿body
{
}

.rotateBusy {
    animation: busyMove 3s infinite;
    animation-timing-function: linear
}

@keyframes busyMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.swipeButton {
    position: absolute;
    background-color: #D0D0D050;
    display: inline;
    top: 50vh;
    z-index: 9999;
    border-radius: 9px;
    width: auto;
    padding : 0;
}

.swipeLeft {
    left: -5px;
}
.swipeRight {
    right: -5px;
}

.svgChevron path {
    stroke: #0071c1;
    fill: none;
    stroke-linecap: round;
    stroke-width: 8px;
}

.svgChevron svg {
    transform: scale(0.7);
    margin-top: 5px;
    width: 36px;
    height: 72px;
}

.svgChevron:hover path {
    stroke: whitesmoke;
    stroke-width: 10px;
}