
/* width */
body::-webkit-scrollbar {
    width: 10px;
}

/* Track */
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0 grey;
    border-radius: 3px;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #C1C1C1;
    border-radius: 3px;
}

.flex__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.align-end {
    align-items: flex-end;
}


.loader__block {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    flex: 1;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
}

.loader__block.show {
    display: flex;
}

.loader {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border-top: 20px solid #F79E02;
    border-right: 20px solid #F79E02;
    border-left: 20px solid #F79E02;
    border-bottom: 20px solid transparent;
    animation:spinner 2s linear infinite;
    z-index: 999;
}

@keyframes spinner {
    0% {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
}

#modePreview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    min-height: 70px;
    padding: 10px;
    background: #FFFFFF;
    border-top: 1px solid #DCDCDC;
    position: sticky;
    bottom: 0;
    left: 0;
}

#modePreview a {
    align-items: center;
    justify-content: center;
    height:40px;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    background: #2A2A30;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}
