/* PLACE YOUR CUSTOM STYLES IN THIS FILE */

/* For modal login/registration stuff in navbar */

.divider {
    position: relative;
    text-align: center;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}

.divider-text {
    position: relative;
    background: #fff;
    padding: 0 10px;
    z-index: 1;
    color: #666;
    font-size: 0.9rem;
}


/* From old RS website library page */
.single-library-item {
    padding-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border-radius: 2px;
    margin: 15px;
    margin-bottom: 30px;
}

.single-library-item-txt {
    padding: 0 25px;
}


.single-library-item img {
    height: 280px;
    /* Adjust as needed */
    object-fit: cover;
    /* Crop and fill the space */
    width: 100%;
    /* Ensures it fills the column width */
}

.single-library-item h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: 'proxima-nova', sans-serif;
    padding: 20px 0;
}

.single-library-item h3:after {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ebebeb;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}