#ccl-theme-settings-container {
    width: 60%;
    margin: 100px auto;

    padding: 10px 40px;
    background: white;
    box-sizing: border-box;
}

#ccl-theme-settings-container h2 {
    margin-bottom: 30px;    
}

#theme-settings-form {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.theme-settings-form-field {
    display: inline-flex;
    justify-content: space-between;
}

#admin-settings-save-btn {
    width: 20%;
    height: 30px;
    border: none;
    border-radius: 3px;
    text-align: center;
    line-height: 29px;
}

#admin-settings-save-btn:hover {
    cursor: pointer;
}

.ccl-theme-settings-msg-wrapper {
    width: 80%;
}

.ccl-theme-settings-msg-wrapper p {
    padding: 10px;
    color: black;
    font-size: 14px;
    font-weight: 400;
}

.ccl-theme-settings-msg-wrapper #settings-saved {
    background-color: rgba(20, 200, 20, 0.6);
}


.ccl-theme-settings-msg-wrapper #settings-not-saved {
    background-color: rgba(200, 20, 20, 0.6);
}

.ccl-ph-images,
.ccl-gallery {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

ul.ccl-ph-images li,
ul.ccl-gallery li {
    position: relative;
}

ul.ccl-ph-images li>span,
ul.ccl-gallery li>span,
ul.ccl-gallery li>video {
    display: block;
    width: 130px;
    height: 100px;
    background-size: cover;
}

.ccl-gallery-remove,
.ccl-ph-remove {
    position: absolute;
    text-decoration: none;
    font-size: 20px;    
    color: white !important;
    top: -8px;
    right: 0;
}

ul.ccl-ph-images li>span:after,
ul.ccl-gallery li>span:after,
ul.ccl-gallery li>video:after {

    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}

ul.ccl-ph-images li>span:hover,
ul.ccl-gallery li>span:hover,
ul.ccl-gallery li>video:hover {
    opacity: 1;
}