@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    font-family: 'Open Sans', sans-serif;
}
.header {
    border-bottom: solid 1px #f2f2f2;
    box-shadow: 1px 3px 2px #888888;
}
.header img {
    max-height: 50px;
}
.col_shorts{
    padding-bottom: 55px;
}
.footer_bg {
    background-color: #efefef;
    height: 52px
}
.shorts_picture {
    max-width: 300px;
    transition: transform .5s ease;
    cursor: pointer;
}
.shorts_picture:hover {
    transform: scale(1.05);
}
.btn-gcs {
    color: white;
    border-color: #e3000b;
    background-color: #e3000b;
}
.btn-gcs:hover {
    color: white;
    filter: brightness(0.90);
}
.bg-checked {
    background-color: #5d9b59;
    color: white;
}
.select_handler{
    cursor: pointer;
}
.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: rgba(0, 0, 0, 0.03); 
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.lds-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -40px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #256798;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #256798 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.preloader {
    background-color: rgba(188,193,208,.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}
