@import "keys.css";

.window{
    position: fixed;
    width: 50%;
    height: 60%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-image: url('../images/lightBg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "Cocogoose Regular";
    border-radius: 5px;
    user-select: none;
}

.window .content{
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 1.5%;
    background-image: url('../images/darkBg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color:white;
    border-radius: 5px;
    padding: 1em;
    min-height: 0;
}

.window .content .title{
    color: #dbbea9;
    margin: -.5em 0 0 0;
}

.window .content .textBox{
    border-radius: 5px;
    background-color: #262626;
    box-shadow: 0px 0px 2px 2px #3f566d;
}

.window .content .listContainer{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    /*
    border: 3px solid #3f566d;
    border-image: linear-gradient(#3f566d, #262626) 30;
    */
    box-shadow: 0px 0px 2px 2px #3f566d, inset 0px 0px 2px 2px #000;
    padding: 1em;
    overflow-y: auto;
}

.window .content .listContainer .item{
    max-height: 3em;
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    padding: .5em;
    border-radius: 5px;
    border: 1px solid #8fdcf9;
    box-shadow: 0px 0px 2px 2px #3f566d, inset 0px 0px 2px 2px #3f566d;
    cursor: pointer;
    margin-bottom: .5em;
}
.window .content .listContainer .item:hover{
    box-shadow: 0px 0px 2px 2px #3f566d, inset 0px 0px 5px 5px #8fdcf9;
    background-color: #77bfda;
}
.window .content .listContainer .item .description{
    flex-grow: 1;
    padding-left: .5em;
}
.window .content .listContainer .item .description span{
    font-family: "Cocogoose Regular";
    font-weight: 6  00;
    font-size: .75em;
}

.icon{
    height: 100%;
}

.icon img{
    height: inherit;
    border-radius: 5px;
}

.window .actionsBar{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: .5em 1em;
}
.window .actionsBar .item{
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.window .actionsBar .item .icon{
    margin: 0 .5em;
}
.window h1, .window h2, .window h3, .window h4, .window h5, .window h6{
    margin: 0;
    font-weight: 500;
}

.window .content .horizontalContainer{
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.window .content .presentationImage {
    width: 30%;
    min-width: 30%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}