*,
*::after,
*::before {
    box-sizing: border-box;
}

.catalogue-container {
    width: 100%;
    max-width: 1270px;
    margin: auto;
}

.catalogue-container .flex {
    display: flex;
}

.catalogue-container .flex-none {
    flex: none;
}

.catalogue-container .grow {
    flex-grow: 1;
}

.catalogue-container .justify-between {
    justify-content: space-between;
}

.catalogue-container .w-full {
    width: 100%;
}

.catalogue-container .image-box {
    flex-shrink: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 23px 17px 32px;
    position: relative;
}

.catalogue-container .image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.catalogue-container .image-box.image-box-none {
    border: none;
    padding: 0;
}

.catalogue-container .image-box-bg {
    width: 100%;
    height: 731px;
    background-color: #D9D9D9;
    margin: 0;
    border-radius: 10px;
}

.catalogue-container .line {
    width: 100%;
    margin: 0 0 24px;
}

.catalogue-container .line.mb-40 {
    margin-bottom: 40px;
}

.catalogue-container .line > div {
    width: 100%;
    height: 22px;
    background-color: #D9D9D9;
    margin: 0 0 10px;
    border-radius: 6px;
}

.catalogue-container .line .line-full {
    max-width: 100%;
    height: 36px;
}

.catalogue-container .line .line-full.h-25 {
    height: 25px;
}

.catalogue-container .line .line-full.h-64 {
    height: 64px;
}

.catalogue-container .line .line-1 {
    max-width: 168px;
    height: 16px;
}

.catalogue-container .line .line-115 {
    max-width: 115px;
    height: 16px;
}

.catalogue-container .line .line-90 {
    max-width: 90%;
    height: 22px;
}

.catalogue-container .line .line-80 {
    max-width: 80%;
    height: 16px;
}

.catalogue-container .line .line-small-2 {
    max-width: 200px;
    height: 22px;
}

.catalogue-container .line .line-small {
    max-width: 200px;
}

.catalogue-container .line .line-img {
    max-width: 420px;
}

.animation-box-container {
    position: relative;
    overflow: hidden;
}


.catalogue-container .catalogue-form-box {
    width: 568px;
}

.animation-box-container .shimmer {
    background: linear-gradient(to right, rgba(224, 224, 224, 0.1) 0%, rgba(235, 235, 235, 0.1) 25%, rgba(241, 241, 241, 1) 64.78%, rgba(224, 224, 224, 0.1) 100%);
    /* background: linear-gradient(to right, #ebebeb 10%, #ccc 20%, #e0e0e0 40%, #ccc 60%, #ebebeb 90%); */

    /* background: linear-gradient(to right, #eee 40%, #fafafa 50%, #eee 60%); */
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    background-color: transparent;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}


@media (min-width: 1200px) {
    .catalogue-container .image-box {
        width: 629px;
    }

    .catalogue-container .grow {
        width: 70px;
    }
}

@media (max-width: 767px) {
    .catalogue-container > .flex {
        flex-direction: column;
    }

    .catalogue-container .image-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .catalogue-container .catalogue-form-box {
        width: 100%;
    }

    .catalogue-container .grow {
        width: 100%;
    }
}