﻿.loading-container {
    background-color: white;
	max-width: 1440px !important;
	margin-left:auto;
	margin-right:auto;
	display:block;
	clear:both;
}

.loading-container__shipment-info {
    height: 226px;
}

.loading {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.loading-text {
    margin-left: 20px;
}

.loading-text__header {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: white;
}

.loading-text__promise {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: white;
    margin: 8px 0 76px;
}

.spinner__img {
    background-image: url('../image/spinner.svg');
    animation: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 40px;
    height: 40px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 320px) { /* mobile-small */
    .loading-text__header {
        font-size: 24px;
        line-height: 30px;
    }

    .loading-text__promise {
        margin: 8px 0 32px;
    }

    .loading-container__shipment-info {
        height: 228px;
    }
}

@media screen and (min-width: 321px) and (max-width: 768px) { /* mobile */
    .loading-text__header {
        font-size: 24px;
        line-height: 30px;
    }

    .loading-text__promise {
        margin: 8px 0 32px;
    }

    .loading-container__shipment-info {
        height: 148px;
    }
}