@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');

body,
html {
    height: 100%;
    width: 100%;
}

body {
    position: relative;
    overflow: hidden;
}

#background,
#backgroundClean,
.interactive-image,
.interactive-image .hover-image {
    height: 100%;
    width: 100%;

    position: absolute;
    top: 0;
    left: 0;

    background-position: center center;
    transform: translateX(0);
}

.interactive-image .hover-image {
    opacity: 0;

    transition: opacity 0.2s ease-in-out;
}

.interactive-image.hover .hover-image {
    opacity: 1;
}

#background {
    z-index: 1;
    background-image: url("./img/background_clean.png");
    background-size: 100%;
}

#backgroundClean {
    z-index: 2;
    background-image: url("./img/background_clean.png");
    background-size: 100%;

    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#background.focus #backgroundClean {
    opacity: 1;
}

#paper {
    z-index: 3;
    background-image: url("./img/paper_final.png");
}

#paperHover {
    z-index: 4;
    background-image: url("./img/paper_hover.png");
}

#vehicle {
    z-index: 5;
    background-image: url("./img/vehicle_final.png");
}

#vehicleHover {
    z-index: 6;
    background-image: url("./img/vehicle_hover.png");
}

#clothes {
    z-index: 7;
    background-image: url("./img/clothes_final.png");
}

#clothesHover {
    z-index: 8;
    background-image: url("./img/clothes_hover.png");
}

#mansion {
    z-index: 9;
    background-image: url("./img/mansion_final.png");
}

#mansionHover {
    z-index: 10;
    background-image: url("./img/mansion_hover.png");
}

#police {
    z-index: 11;
    background-image: url("./img/police_final.png");
}

#policeHover {
    z-index: 12;
    background-image: url("./img/police_hover.png");
}

#money {
    z-index: 13;
    background-image: url("./img/money_final.png");
}

#moneyHover {
    z-index: 14;
    background-image: url("./img/money_hover.png");
}

#dices {
    z-index: 15;
    background-image: url("./img/dices_final.png");
}

#dicesHover {
    z-index: 16;
    background-image: url("./img/dices_hover.png");
}

#recorder {
    z-index: 17;
    background-image: url("./img/recorder_final.png");
}

#recorderHover {
    z-index: 18;
    background-image: url("./img/recorder_hover.png");
}

#justice {
    z-index: 19;
    background-image: url("./img/justice_final.png");
}

#justiceHover {
    z-index: 20;
    background-image: url("./img/justice_hover.png");
}

#weapon {
    z-index: 21;
    background-image: url("./img/weapon_final.png");
}

#weaponHover {
    z-index: 22;
    background-image: url("./img/weapon_hover.png");
}

#rose {
    z-index: 23;
    background-image: url("./img/rose_final.png");
}

#roseHover {
    z-index: 24;
    background-image: url("./img/rose_hover.png");
}

#heroin {
    z-index: 25;
    background-image: url("./img/heroin_final.png");
}

#heroinHover {
    z-index: 26;
    background-image: url("./img/heroin_hover.png");
}

#video {
    z-index: 27;
    background-image: url("./img/video_final.png");
}

#videoHover {
    z-index: 28;
    background-image: url("./img/video_hover.png");
}

#kette {
    z-index: 29;
    background-image: url("./img/kette_final.png");
}

#ketteHover {
    z-index: 30;
    background-image: url("./img/kette_hover.png");
}

#svgContainer svg {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 3000px;
    height: 2000px;

    z-index: 40;
}

/* #svgContainer svg path {
    stroke: red !important;
} */

#bottomContent {
    z-index: 50;
    position: absolute;
    bottom: 1rem;
    width: 600px;

    left: 50%;
    transform: translate(-50%, 0);

    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#bottomContent.show {
    opacity: 1;
}

.info-container {
    background-color: rgba(0, 0, 0, .8);
    padding: 1rem;
    color: white;
    border-radius: 5px;
    text-align: center;
}

#selectedImage {
    height: 1000px;
    width: 1000px;
    position: absolute;
    z-index: 70;
    background-position: center center;
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(0, -50%);
    left: 6rem;
}

#content {
    position: absolute;
    top: 5rem;
    bottom: 5rem;
    width: 100%;
    z-index: 80;
}

#contentContainer {
    background-color: rgba(0, 0, 0, .8);
    max-height: 100%;
    overflow-y: auto;
    color: white;
}

.image-content {
    display: none;
}

/* MEMBER */
.member-image {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 5px solid #ccc;
    border-radius: 2px;
    filter: grayscale(100%);
    width: 251px;
    height: 399px;
    box-shadow: 0px 0px 5px 0px #000000;
}

.member-image:hover {
    cursor: pointer;
    box-shadow: 0px 0px 14px 2px #FF9300;
    filter: grayscale(0);
}

#rangCard {
    color: grey;
    filter: grayscale(100%);
    box-shadow: 0px 0px 5px 0px #000000;
    border-radius: 2px;
}

#rangCard:hover {
    cursor: pointer;
    color: #c4a674;
    box-shadow: 0px 0px 14px 2px #FF9300;
    filter: grayscale(0);
}

#memberDetailsModal .modal-dialog {
    background-image: url('./img/police_details.png');
    background-position: center center;
    height: 790px;
    width: 1057px;
    max-width: 1057px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-backdrop.show {
    /* opacity: .9;     */
}

.member-details-image {
    position: absolute;
    top: 25px;
    left: 12px;
}

.member-details-image-l {
    position: absolute;
    top: 504px;
    left: 437px;
}

.member-details-name {
    position: absolute;
    top: 54px;
    left: 279px;
    font-size: 2rem;

    color: #895754;
    font-weight: 800;
}

.member-details-rang {
    position: absolute;
    top: 130px;
    left: 279px;
}

.member-details-nation {
    position: absolute;
    top: 130px;
    left: 636px;
}

.member-details-level {
    position: absolute;
    top: 193px;
    left: 279px;
}

.member-details-age {
    position: absolute;
    top: 193px;
    left: 636px;
}

.member-details-belongs {
    position: absolute;
    top: 255px;
    left: 279px;
}

.member-details-birth {
    position: absolute;
    top: 255px;
    left: 636px;
}

.member-details-background {
    position: absolute;
    top: 310px;
    left: 279px;
}

#rankDetailsModal .modal-dialog {
    background-color: rgba(0, 0, 0, 1);
    border-radius: 5px;
    max-width: 800px;
}

#rankDetailsModal .modal-content {
    background-color: transparent;
    border-color: 0 none;
    color: #ededed;
}

#rankDetailsModal li {
    background-color: transparent;
    border-color: #1d1d1d;
    color: #ededed;
}

#rankDetailsModal li a {
    color: #c4a674;
    text-decoration: none;
}

#rankDetailsModal li a:hover {
    text-decoration: underline;
}

.rank-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #0f0f0f;
    color: white;
    border: 1px solid #1b1b1b;
    line-height: 60px;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
}

.vehicle-container {
    transform-origin: 0 0;
    perspective: 1000px;
    height: 273px;
    width: 352px;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: grayscale(100%);
}

.vehicle-container:hover {
    filter: grayscale(0%);
}

.vehicle-inner {
    border-radius: 2rem;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

.vehicle-front {
    transform: rotateY(0deg);
    border-radius: 2rem;
    height: 100%;
    padding: 2rem .5rem;
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.vehicle-back {
    padding: .75rem;
    height: 100%;
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    align-items: center;
    background-color: transparent;
    display: flex;
    justify-content: center;
    transform: rotateY(180deg);
}

.vehicle-container.flip .vehicle-inner {
    transform: rotateY(180deg);    
}

.vehicle-back-content {
    margin: 0;
    color:  #c4a674;
    font-size: 1.5rem;
    font-weight: 600;
    height: 100%;
    width: 100%;
}

.shadow {
    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.cloth-container {
    transform-origin: 0 0;
    perspective: 1000px;
    height: 351px;
    width: 274px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.cloth-container:not(.mask) {
    filter: grayscale(100%);
}

.cloth-container:hover {
    filter: grayscale(0%);
}

.cloth-inner {
    border-radius: 2rem;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

.cloth-front {
    transform: rotateY(0deg);
    border-radius: 2rem;
    height: 100%;
    padding: 2rem .5rem;
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cloth-back {
    padding: .75rem;
    height: 100%;
    position: absolute;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    align-items: center;
    background-color: transparent;
    display: flex;
    justify-content: center;
    transform: rotateY(180deg);
}

.cloth-container.flip .cloth-inner {
    transform: rotateY(180deg);    
}

.cloth-back-content {
    padding: .75rem;
    margin: 0;
    color:  #c4a674;
    height: 100%;
    width: 100%;
    text-align: center;
}

#instructionsModal .modal-dialog {    
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    max-width: 800px;
    width: 800px;
}

#instructionsModal .modal-content {
    background-color: #000000;
    border-color: 0 none;
    color: #ededed;
}

h3 {
    color:  #c4a674;
    font-family: 'Roboto Slab', serif;
}

#navigation {
    transform: translateX(-500px);   
    z-index: 55; 
    color:  #c4a674;
}

a.navi-item {
    color:  #c4a674;
    text-decoration: none;
}

.navi-item:hover {
    text-decoration: underline;
}