﻿header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

.linkz{
    color:blue;
    font-size:16px;
    cursor:default;
}

.linkz2{
    font-size:16px;
}

.homebg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/bgstore.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.homebgmobi {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/bgstore.jpg') no-repeat top top;
    background-size: cover;
    height: 100vh;
}
.pro {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

@media (pointer: coarse) and (hover: none) {
   /* header {
        background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }*/

        header video {
            display: none;
        }
}

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 50%;
    position: absolute;
}

.spinnerIn {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding:5px;
    animation: spin 700ms linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.cardz {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    margin: 2px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

    .cardz:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
/*        transform: rotateY(180deg);
*/    }

.cardor {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    margin: 10px;
}

    .cardor:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.containerz {
    padding: 2px 16px;
    font-size:12px;
}
.f12 {
    font-size: 12px;
}
.f15 {
    font-size: 15px;
}

.ov {
    font-size: 14px;
    cursor: default;
}
ov:hover {
    font-size: 14px;
    cursor: default;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: #eae1e1;
}

.drag-drop-zone {
    border: 3px dashed #e68710;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
    color: #aeaeae;
    font-size: 12px;
    cursor: pointer;
}

    .drag-drop-zone:hover {
        background-color: #f5f5f5;
    }

    .drag-drop-zone input[type=file] {
        position: absolute;
        width: 100%;
        opacity: 0;
        cursor: pointer;
    }

.my-component {
    border: 2px dashed red;
    padding: 1em;
    margin: 1em 0;
    background-image: url('../images/background.png');
}

.cardz {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 99%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cardz:hover 
    {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

.cardz-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
