.mad {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.loading {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(24, 71, 142, 0.7);
    z-index: 10000000;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms;
}
.loading__circle {
    display: inline-block;
    position: absolute;
    width: 140px;
    height: 140px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
}
.loading__circle:after {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 50%;
    border: 10px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading 1.2s linear infinite;
    opacity: 0.8;
}
.loading.show {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

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

.shop .project.item figure {
    height: auto;
}

.shop .project.item figure a.imgwrap {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    border: none;
}

.shop .project.item figure a.imgwrap img {
    height: 100% !important;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
