/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap');*/

body {background-color: #1c1c1c;font-family: 'Poppins', sans-serif; font-size: 13px;}

#loader {display: none; position: fixed;top: 0; left: 0;width: 100%; height: 100%;background: rgba(0,0,0,0.5);color: white; font-size: 2rem;display: flex;justify-content: center;align-items: center;z-index: 9999;}

a,
a:hover {
    color: #dac77e;
    text-decoration: none;
    font-weight: bold;
}

.upload-btn,
.upload-btn:hover{
    border: 1px solid rgb(95, 96, 59);
    border-radius: 5px;
    background-color: #b2b55a;
}

.nav-pills .nav-link {
    color: #dac77e;
    text-decoration: none;
}

.header {
    border-bottom: 1px solid rgb(95, 96, 59);
    z-index: 10;
}

.navbar {
    background-color: #000;
}

.search-group {
    border: 1px solid rgb(95, 96, 59);
    border-radius: 5px;
}

.search-group input,
.search-group input:focus {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #b2b55a;
}

.search-group button,
.search-group button:hover {
    background-color: rgb(95, 96, 59);
    border: none;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
    color: rgb(95, 96, 59);
}

#sidebar{
    z-index: 10;
}

#sidebar .flex-shrink-0 {
    width: 280px;
    background-color: #000;
    border-right: 1px solid rgb(95, 96, 59);
}

@media (min-width: 768px) {
    #sidebar {
        position: fixed;
        top: 0rem;
    }

    .main-contents {
        margin-left: 280px;
    }

    /*.imp-alert{
        position: fixed;
        top: 0rem;
    }*/
}

@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        top: 3.1rem;
    }

    .header {
        position: fixed;
        top: 0rem;
    }

    .main-contents {
        margin-top: 3.1rem;
    }
    /*.imp-alert{
        position: fixed;
        top: 3.1rem;
    }*/
}

.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 0.2rem;
    height: 100vh;
    background-color: #0d6efd;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(235, 227, 227, 0), rgba(240, 248, 21, 0.75), rgba(241, 231, 231, 0))
}

.dropdown-menu {
    background-color: #000;
    border: 1px solid rgb(95, 96, 59);
}

.dropdown-item {
    color: #dac77e;
    text-decoration: none;
    font-weight: bold;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: wheat;
    background-color: transparent;
}

.modal-content {
    background-color: #b2b55a;
    border: 1px solid rgb(95, 96, 59);
}

.saved-alert {
    display: block;
    animation: saved-alert 8s ease;
}

@keyframes saved-alert {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.shakeX a {
    color: #dac77e;
}

.shakeX {
    border: 1px solid #dc3545;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    0% {
        transform: translateX(0)
    }

    10% {
        transform: translateX(5px)
    }

    20% {
        transform: translateX(-5px)
    }

    30% {
        transform: translateX(5px)
    }

    40% {
        transform: translateX(-5px)
    }

    50% {
        transform: translateX(5px)
    }

    60% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(0)
    }
}

.shake {
    animation: shake-animation 3s ease infinite;
    transform-origin: 50% 50%;
}

@keyframes shake-animation {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

#fileuploadcart{
    background-color: #000;
    border: 1px solid rgb(95, 96, 59);
    color: #b2b55a;
    font-weight: bold;
}

#fileuploadcart input, #fileuploadcart input:focus {
    background-color: transparent;
    border: 1px solid rgb(95, 96, 59);
    box-shadow: none;
    color: #b2b55a;
} 

#fileuploadcart button{
    background-color: rgb(95, 96, 59);
    font-weight: bold;
}

#fileuploadcart input::placeholder{
    color: #b2b55a;
    /*opacity: .5;*/
}
#fileuploadcart input::file-selector-button {
    background-color: rgb(95, 96, 59);
}

.container .iframe-container, .container .img-container img{
    border: 1px solid rgb(189, 191, 121);
    border-radius: 5px;
    overflow: hidden;
}

/*---- Play Button CSS Start------*/
.img-div {
    position: relative;
    /*display: inline-block;*/
}

.img-div .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    cursor: pointer;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*transition: background-color 0.3s ease;*/
    /*border-radius: 50%;*/
    /*padding: 10px 25px;*/
}

.img-div .play-button:hover {
    /*background-color: rgba(0, 0, 0, 0.7);*/
}
/*------- Play Button CSS End -------*/