﻿body {
    color: black;
}
.blackFont{
    color:black;
}
.mainHeaderArea {
    background-image: url(../../KMD/icons/background.jpg);
    background-repeat: round;
    background-color: white !important;
    border: solid 1px #b0b0b0;
}
.itemsMainDiv {
    cursor: pointer;
    height: 175px;
}
.itemsMainDiv:hover {
    background-image: url(../../KMD/icons/go.png);
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-color:#e7e7e7;
    height: 175px;
}
.floatRight{
    float:right;
}
.searchInput {
    background-image: url(../../KMD/icons/search.png);
    background-position: 10px 12px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 2px 2px 2px 20px;
    border: 1px solid;
    border-radius: 2px;
}
.rowBackground:hover {
    background-image: url(../../KMD/icons/go.png);
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-color: #e7e7e7;
    background-size: 30px;
    color: #124673;
}
.rowBackground {
    padding: 10px;
    margin: 2px 2px 2px -10px;
    border-left: 10px solid #124673;
    border-right: 1px solid #124673;
    border-top: 1px solid #124673;
    border-bottom: 1px solid #124673;
}
.rowSecondaryBackground:hover {
    background-image: url(../../KMD/icons/go.png);
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-color: #dadada;
    background-size: 30px;
    color: #124673;
}
.rowSecondaryBackground {
    padding: 10px;
    margin: 5px 0px 5px -10px;
    border-left: 5px solid #124673;
    background-color: #f1f1f1;
}
.rowBackgroundSimple {
    padding: 10px;
    margin: 2px 2px 2px -10px;
    border-left: 10px solid #124673;
    border-right: 1px solid #124673;
    border-top: 1px solid #124673;
    border-bottom: 1px solid #124673;
}
.rowBackgroundSimple:hover {
        background-color: #e7e7e7;
        color: #124673;
    }
.titelDet{
    font-size:20px;
    font-weight:bold;
    padding:10px;
    width:75%;
}
.feltDet {
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    width: 75%;
}
.descDet {
    word-wrap: normal;
    padding: 10px;
    width: 75%;
}
.titelMain {
    width: 25%;
    padding: 10px;
    text-align: right;
    font-weight: bold;
    color: #124673;
}
.linkDet {
    padding: 10px;
    width: 75%;
    word-break: break-word;
}
.scene {
    perspective: 600px;
}
.card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}
.face {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
}
.back {
    transform: rotateY( 180deg );
}
.card.flipped {
    transform: rotateY(180deg);
}
.backButton {
    background-image: url(../../KMD/icons/back.png);
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: white;
    padding-left: 15px;
}
.refresh {
    background-image: url(../../KMD/icons/refresh.png);
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: white;
    padding-right: 25px;
}
.selected {
    background-color: #bfd9ff;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}