* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(211, 211, 211, 0.267);
}

hr {
    background-color: white;
}

.main {
    width: calc(100% - 250px);
    height: 100vh;

    padding-top: 20px;
    margin-left: 250px;
}

.fa-expand {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 30px;
    right: 4.5%;

    z-index: 100;

    color: #4d7d94;
}

.fa-expand:hover {
    cursor: pointer;
    color: #283a42;
}

/* Sidebar */

.sidebar {
    display: block;

    width: 250px;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;

    background-color: #4d7d94;

    -webkit-box-shadow: 0px 0px 5px 0px rgb(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgb(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgb(0, 0, 0, 0.75);
}

.title-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    width: 100%;
    height: 50px;

    padding: 0 20px;

    background-color: #334d58;
    border-bottom: 1px white solid;
}

.title-holder .info-icon {
    color: white;
}

.title-holder .info-icon:hover {
    color: #d9d9d9;
    cursor: pointer;
}

.title-holder .title {
    font-weight: 600;
    color: white;
    font-size: 18px;
}

.navigation-info {
    display: none;

    position: absolute;
    top: 45px;
    left: 200px;
    z-index: 100;

    width: 250px;
    height: 100px;

    padding: 10px;

    transition-duration: 0.3s;

    background-color: white;
}

.navigation-info .fa-caret-up {
    position: absolute;
    top: -20px;
    left: 15px;

    font-size: 30px;

    color: white;
}

.navigation-info .fa-close {
    position: absolute;
    top: 5px;
    right: 5px;

    -webkit-text-stroke: 2px white;

    color: #d9d9d9;
}

.navigation-info .fa-close:hover {
    color: #283a42;
    cursor: pointer;
}

.navigation-info p {
    text-transform: capitalize;
    color: #a1a1a1;
}

.container {
    position: absolute;
    top: 20px;
    left: 100%;
}

.links-holder {
    width: 100%;
    height: 92%;

    overflow-y: scroll;
    overflow-x: hidden;

    /* Internet Explorer 10+ */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;
}

.links-holder::-webkit-scrollbar {
    display: none;
}

.links {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: auto;

    position: relative;
}

.links li {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    color: white;
}

.links .link {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    height: 100%;
    min-height: 45px;

    padding: 10px 0;
    padding-left: 20px;
}

.link.no-data {
    flex-direction: column;
    padding-right: 10px;
}

.links .link:hover {
    cursor: pointer;
    background-color: #334d58;
}

.link i {
    font-size: 22px;
}

.links .go-to-assets {
    width: auto;
    height: 100%;
    min-height: 45px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 15px;
}

.links .go-to-assets.active {
    background-color: #283a42;
}

.links .go-to-assets i:first-child {
    font-size: 18px;
}

.links .go-to-assets i:nth-child(2) {
    font-size: 22px;
}

.links .go-to-assets:hover {
    background-color: #334d58;
    cursor: pointer;
}

.main-nav-container {
    display: none;

    width: 100%;

    padding-left: 20px;
}

.main-nav-container .background {
    width: 1110px;
    height: auto;

    padding: 20px;

    background-color: #4d7d94;

    overflow: hidden;
}

.main-nav-container .assets {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    gap: 1px;

    width: 100%;
    height: auto;
    max-height: 625px;

    overflow-y: scroll;
}

.main-nav-container .assets::-webkit-scrollbar {
    position: absolute;
    right: 0;

    width: 3px;
    background-color: white;
}

.main-nav-container .assets::-webkit-scrollbar-track {
    background-color: #334d58;
}

.main-nav-container .assets::-webkit-scrollbar-thumb {
    background-color: white;
}

.main-nav-container .asset {
    width: 150px;
    height: 150px;

    background-color: white;
}

.main-nav-container .default-asset-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: transparent;

    font-size: 100px;
    color: white;
}

.main-nav-container .default-asset-thumbnail:hover {
    cursor: pointer;
    color: rgb(224, 224, 224);
}

.main-nav-container .asset:hover {
    cursor: pointer;
}

.hamburger-menu,
.close-btn {
    display: none;
    color: white;
    font-size: 22px;
}

.go-back-images {
    width: 100%;
    height: 50px;

    display: none;
    align-items: center;
    gap: 10px;

    padding-left: 20px;

    color: white;

    background-color: #4d7d94;
}

.go-back-images i {
    font-size: 22px;
}

@media screen and (max-width: 1385px) {
    .main-nav-container .background {
        width: 960px;
    }
}

@media screen and (max-width: 1250px) {
    .main-nav-container .background {
        width: 810px;
    }
}

@media screen and (max-width: 1085px) {
    .main-nav-container .background {
        width: 650px;
    }
}

@media screen and (max-width: 930px) {
    .main-nav-container .background {
        width: 500px;
    }
}

@media screen and (max-width: 780px) {
    .main-nav-container .background {
        width: 350px;
    }
}

/* Carousel */
.owl-carousel {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;

    border: #4d7d94 10px solid;
    border-radius: 5px;

    -webkit-box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.75);
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    width: 100%;
    height: fit-content;

    padding: 20px;
}

.content-container img {
    width: auto !important;
    height: 32vw;
}

.image-description {
    width: 90%;
    border: 1px solid #334d58;
    padding: 20px;
}

.image-description p {
    text-align: center;
}

.directory-description {
    width: 70%;

    margin: 0 auto;
    padding-bottom: 35px;
}

.directory-description p {
    text-align: center;
}

.owl-prev,
.owl-next {
    width: 100px;
    height: 100%;

    position: absolute;
    top: 0;

    color: gray !important;
    font-size: 95px !important;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-prev:hover,
.owl-next:hover {
    opacity: 1;
}

.owl-prev:hover {
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.212),
        rgba(0, 0, 0, 0)
    ) !important;
}

.owl-next:hover {
    background-image: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.212),
        rgba(0, 0, 0, 0)
    ) !important;
}

/* section  ---------------------------------- Loading ---------------------------------- */

.loading-screen {
    width: 100%;
    height: 100%;

    display: none;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    background-color: rgba(128, 128, 128, 0.2);
}

.loading-screen.active {
    display: flex;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 800px) {
    .content-container img {
        width: 100% !important;
        height: auto;
    }

    .owl-next,
    .owl-prev {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .owl-carousel {
        width: 97%;
    }

    .content-container {
        padding: 5px;
        padding-bottom: 10px;
    }

    .image-description {
        width: 95%;
    }

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

@media screen and (max-width: 450px) {
    .sidebar {
        width: 100%;
        height: auto;
    }

    .links-holder {
        display: none;
    }

    .main {
        width: 100%;
        margin-top: 50px;
        margin-left: 0;
    }

    .fa-expand {
        display: none;
    }

    .icons-holder {
        height: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hamburger-menu {
        display: block;
    }

    .container {
        width: 100%;
        top: 100px;
        left: 0;
    }

    .main-nav-container {
        width: 100%;
        padding: 0;
    }

    .main-nav-container .background {
        width: 100%;
    }
}
