/* CSS Document */

body {
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    font-family: ff-tisa-sans-web-pro, sans-serif;
    color: #3a3a3a;

    background-image: url("images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1300px) {

    body {
        background-size: 1300px auto; /* Force the image to its minimum width */
    }

}

#table {
    width: 600px;;
    height: 450px;
    /*background-color: #114f26;*/
    background-color: #006C3D;
    border-radius: 5px;
    
    margin: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#message {
    position: absolute;
    width: 88.5%;
    margin: 6px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 14px;
    max-height: 380px;
    overflow-y: scroll;
    z-index: 100000;
    /*border: solid 2px #114f26;*/
    border: solid 11px #006C3D;
}

input[type='text']{
    padding: 6px 5px 4px 5px;
    border-radius: 5px;
    border: solid 1px #3a3a3a;
    width: 200px;
    margin-bottom: 15px;
    background-color: #f4f4f4;
    font-size: 16px;
    padding-left: 13px;
}

div.button {
    display: inline-block;
    padding: 6px 13px;
    border: solid 1px #3a3a3a;
    border-radius: 5px;
}

div.button:hover {
    background-color: #3a3a3a;
    cursor: pointer;
    color: #f4f4f4;
}

.karte {
    width: 100px;
    position: absolute;
    bottom: 15px;
}

.name-direction {
    color: #f4f4f4;
    position: absolute;
    top: 4px;
}

#around1 {
    left: 60px;
}

#around2 {
    left: 275px;
}

#around3 {
    left: 490px;
}

.player-symbol {
    height: 32px;
    width: 32px;
    position: absolute;
    top: 3px;
}

#player-symbol1 {
    left: 28px;
    /*background: url('images/schweinchen-symbol.svg') no-repeat;*/
}

#player-symbol2 {
    left: 243px;
    
    /*background: url('images/hochzeit-symbol.svg') no-repeat;*/
}

#player-symbol3 {
    left: 458px;
    
    /*background: url('images/schweinchen-hochzeit-symbol.svg') no-repeat;*/
}

.hover-karte {
    transition: bottom 0.1s ease;
}

.hover-karte:hover {
    bottom: 30px;
}

.karte-spielen {
    transition: bottom 0.4s ease, left 0.4s ease;
    left: 255px!important;
    bottom: 182px;
}

.animated-card {
    position: absolute;
    width: 100px;
    transition: bottom 0.5s ease, left 0.5s ease, opacity 0.5s linear;
}


.around1-edge {
    left: 20px;
    bottom: 400px;
    opacity: 0;
}

.around2-edge {
    left: 250px;
    bottom: 400px;
    opacity: 0;
}

.around3-edge {
    left: 480px;
    bottom: 400px;
    opacity: 0;
}

.around1-table {
    left: 185px;
    bottom: 245px;
    opacity: 1;
}

.around2-table {
    left: 235px;
    bottom: 265px;
    opacity: 1;
}

.around3-table {
    left: 323px;
    bottom: 220px;
    opacity: 1;
}

.around0-weg {
    left: 250px!important;
    bottom: -100px;
    opacity: 0;
}

.around1-weg {
    left: 20px!important;
    bottom: 400px;
    opacity: 0;
}

.around2-weg {
    left: 250px!important;
    bottom: 400px;
    opacity: 0;
}

.around3-weg {
    left: 480px!important;
    bottom: 400px;
    opacity: 0;
}

#block-clicks {
    width: 100%;
    height: 40px;
    background-color: white;
    position: absolute;
    bottom: 0px;
    opacity: 0;
    z-index: 10000000;
}

#extra-optionen {
    color: white;
    text-shadow: 0px 0px 6px black;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    right: 15px;
    cursor: default;
}

#extra-optionen * {
    cursor: pointer;
}










