@font-face {
	font-family: komika;
	font-style: normal;
	font-weight: normal;
	src: url('../fonts/KOMIKAX_.ttf');
}


.store-btn {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100px;
    min-width: 100%;
}

.img-div {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 300px;
    min-width: 100%;
}

.hover-panel {
    border: 1px solid lightgrey;
    border-radius: 5px;
    background-color: white;
    -webkit-transition: all 0.2s; /* Safari */
    transition: all 0.2s;
    margin: 20px;
}

.hover-panel:hover {
    transform: scale(1.02);
    z-index: 9;
    box-shadow: 1px 1px 4px black;
    background-color: lightyellow;
}

.title-min-h {
    min-height: 80px;
}


.lms_overlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9;
}

.lms_loader_container {
    margin-top: 40vh;
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    height: 60px;
}

.lms_loader {
    border: 10px dotted lightgrey;
    border-top: 10px dotted steelblue;
    border-right: 10px dotted lightblue;
    border-bottom: 10px dotted lightgrey;
    border-left: 10px dotted darkgrey;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lms_card {
    background-color: LemonChiffon;
    border: 1px solid #3c4858;
    padding: 1em;
    min-height: 25vh;
    border-radius: 5px;
    -webkit-transition: all 0.2s; /* Safari */
    transition: all 0.2s;
}

.lms_card:hover {
    background-color: Moccasin;
    box-shadow: 1px 1px 4px black;
    transform: scale(1.02);
    z-index: 9;
}

.lms_card .info-title {
    font-family: komika;
    margin-bottom: 1em;
}

.circled {
    border-top: 2px solid #3c4858;
    border-right: 4px solid #3c4858;
    border-bottom: 4px solid #3c4858;
    border-left: 2px solid #3c4858;
    border-radius: 50%;
    padding: 0.5em;
    height: 100%;
    display: inline-block;
    min-width: 70px;
    background-color: Gold;
    font-size: 1.4em;
}

.lms_em {
    font-family: komika;
    color: Gold;
    text-shadow: 2px 2px 1px black;
}

.lms-div-img {
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}