body{
    background-image: url(".././../images/bg2.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

a{
    color: inherit;
    text-decoration: none;
}

a:hover{
    color: #ff474e;
    text-decoration: none;
}

.header {
    position: sticky;
    top: 0;
    background: gray;
    padding: 10px 20px;
    /* border-radius: 10px; */
    margin-bottom: 20px;
    /* margin-top: 20px; */
    box-shadow: 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    z-index: 1;
}

.header img{
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 30px;
}

.header-item-wrapper {
    font-size: 18px;
    padding: 0 10px;
    display: inline-block;
    text-shadow: 0 0.05px;
}
.header-item-wrapper a{
    color:#110f0f;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: all 0.5s;
}
.header-item-wrapper.active a,.header-item-wrapper:hover a {
    /* color: #e4980e; */
    color: #c00c0c;
}
.content-container{
    margin:20px 0;
}
.news-section-container {
    /* background: linear-gradient(to bottom right, red, black); */
    min-height: 80vh;
    background: transparent;
    padding: 20px;
    margin:15px 0;
    /* border-radius: 10px; */
    color: #dfdada;
}
.footer-container{
    background: gray;
    padding: 10px 20px;
    /* border-radius: 10px; */
    font-size: 18px;
    font-weight: 600;
    /* margin-bottom:10px; */
}
.footer-link{
    margin-right: 10px;
    margin-left:10px;
}

.content-container img{
    max-width:100% !important;
}



.error-message {
    margin-top: 5px;
    margin-left: 5px;
    color: #ff0000;
    height: 0;
    overflow: hidden;
    transition:  height 0.5s;
}
.form-group.has-error .error-message{
    height: 25px;
}

.status-modal-header {
    background: #e84756 !important;
    text-align: center;
    padding: 40px;
    display: block;
}
#success-modal .status-modal-header{
    background: #3dce19 !important;
}
.status-message-icon {
    font-size: 100px;
    color: #fff;
    width: 90px;
    height: 90px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid;
    line-height: 90px;
    border-radius: 50% !important;
}
#success-modal .status-message-icon{
    font-size: 55px;
    line-height: 90px;
}
.status-message-content {
    text-align: center;
    padding: 40px 30px;
    color: #000;
    font-size: 22px;
}

#error-modal .status-message-content{
    color: #ff0000;
}
.status-message-btn{
    width: 200px;
    text-align: center;
    display: block;
    margin: 0 auto;
    background: #111;
    margin-bottom: 20px;
    color: #fff;
    font-size: 22px;
    border-radius: 5px !important;
}

.playlist-manage-btns-container .playlist-manage-btn{
    border: 1px solid #dfdada;
    border-radius: 20px;
}

.playlist-manage-btns-container .playlist-manage-btn:hover{
background: black;
color: #dfdada;
}

.playlist-manage-btns-container .playlist-manage-btn i{
    color: #dfdada;
}

.playlist-manage-btns-container .playlist-manage-btn .playlist-manage-btn-text{
    color: #dfdada;
}

.animated-text{
    margin-top: 5px;
    font-size: 50px;
    color: red;
    /* -webkit-text-stroke: 2px red; */
    position: relative;
    text-transform: uppercase;
}



/* Mobile Responsive */
@media (max-width: 768px) {

    body{
        /* background-repeat: repeat-y; */
        /* background-size: contain; */
        background-size: auto;
        /* background-position: center top; */
    }

    .header-item-wrapper {
        font-size: 11px;
        padding: 0 5px;
    }

    .header {
        padding: 10px 10px;
    }

    .footer-container{
        font-size: 14px;
    }

}

@media screen and (max-width: 375px) {
    .header img {
      display: none;
    }
  }