.box.challenge .desc p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 0px;
    margin-bottom: 50px;
}

.box.challenge {
    padding: 0px !important;
    position: relative;
    overflow: hidden;
}

.box.challenge .adminOptions {
    position: absolute;
    top: 23px;
    right: 10px;
}

.box.challenge .challengeHeader {
    width: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px;
    padding-right: 40px;
    box-sizing: border-box;
    color: #333;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    position: relative;
    z-index: 1000;
}

.box.challenge .video {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    cursor: pointer;
}

.box.challenge .video:hover:before {
    opacity: .7;
}

.box.challenge .video:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 42px;
    color: white;
    font-weight: 600;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
}

.box.challenge .video:after {
    content: "";
    display: block;
    padding-top: 55%;
}

.box.challenge .image {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    cursor: pointer;
}

.box.challenge .image:after {
    content: "";
    display: block;
    padding-top: 55%;
}

.box.challenge .table {
    display: table;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.box.challenge .table>div {
    display: table-cell;
    vertical-align: middle;
}

.box.challenge .description {
    padding: 10px;
    box-sizing: border-box;
    padding-top: 0px;
    font-size: 14px;
    line-height: 18px;
}

.box.challenge .icon {
    width: 36px;
    height: 36px;
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    position: relative;
}

.box.challenge .icon:before {
    content: "\f648";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 20px;
    color: white;
    font-weight: 300;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}

.box.challenge .target {
    padding-left: 10px;
}

.box.challenge .completed {
    width: 36px;
}

.box.challenge .completed div {
    width: 36px;
    height: 36px;
    background-color: #A1A4AE;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.box.challenge .completed div:hover {
    opacity: .7;
}

.box.challenge .completed div.checked {
    background-color: rgba(var(--mainColor), 1);
}

.box.challenge .completed div.checked:hover {
    background-color: rgba(var(--mainColor), .7);
    opacity: 1;
}

.box.challenge .completed div:before {
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 400;
    color: white;
    position: absolute;
    left: 9px;
    top: calc(50% - 10px);
}

.box.challenge .completed div.checked:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 200;
    color: white;
    position: absolute;
    left: 10px;
    top: calc(50% - 10px);
}

#campVideoOverlayCloseButton {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000012;
}