#cam-live, #cam-snaps {
    width: 100%;
}

#cam-live {
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    border-radius: solid 1px #ddd;
}

#cam-snaps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#cam-snaps canvas {
    width: 25%;
    padding: 10px;
    height: auto;
}

#cbwrap {
    padding: 0px;
    border-radius: 10px;
    position: relative;
}

#cam-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#cbtitle {
    margin-bottom: 40px;
    text-transform: uppercase;
}

#cbinfo {
    padding: 10px;
    margin-top: 40px;
    font-weight: 700;
    text-align: center;
}

#cbinfo a {
    text-decoration: none;
    padding: 5px;
    color: #fff;
    background: #a91616;
}

#preLoader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 99997;
    display: none;
    overflow: hidden;
}

.lds-ringContainer {
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff 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);
    }
}

.disableSelection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}