.header-logo {
    align-items: center;
    display: flex;
    height: 74px;
    justify-content: center;
    margin-right: 22px;
    position: relative;
    width: 74px;
}

.header-icon-loading {
    align-items: center;
    /*display: flex;*/
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
    visibility: hidden;
}

.header-icon {
    margin: 0;
    border-radius: 20%;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    transition: all .35s;
    width: 100%;
}

.header-icon-loading-show {
    opacity: 1;
    visibility: visible;
}

.header-icon-loading svg {
    animation: loading-rotate 2s linear infinite;
    color: #028760;
    display: block;
    height: 100%;
    width: 100%;
}

.header-icon-loading svg circle {
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    animation: loading-circular 1.5s ease-in-out infinite;
}

.install-progress {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 3px;
    display: none;
}

.installButton {
    background: #028760;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 200px;
    cursor: pointer;
}

.installButton:hover {
    background-color: #028760
}

.install-btn__ing {
    display: flex;
    flex-direction: column;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.install-btn__ing__rapid {
    align-items: center;
    color: #ffe336;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
    line-height: 21px;
}

.install-btn__ing__rapid img {
    display: block;
    margin-right: 4px;
    width: 12px;
}

.install-btn__ing__countdown {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
}

.install-btn__view {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    height: 35px;
    line-height: 32px;
    width: 100%;
    display: none;
}

.pa-loading {
    align-items: center;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    left: 0;
    line-height: 20px;
    margin: 0 auto;
    max-height: 100%;
    max-width: 70%;
    min-height: 100px;
    opacity: 0;
    overflow: hidden;
    padding: 16px;
    position: fixed;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
    visibility: hidden;
    white-space: pre-wrap;
    width: 100px;
    z-index: 2005;
}

.pa-loading-icon {
    animation: loading-rotate 2s linear infinite;
    display: flex;
    height: 30px;
    margin-bottom: 8px;
    width: 30px;
}

.pa-loading-icon svg {
    color: #fff;
    display: block;
    height: 100%;
    width: 100%;
}

.pa-loading-text {
    min-height: 0;
    min-width: 100px;
    padding: 8px 12px;
    width: -moz-fit-content;
    width: fit-content;
}

.pa-loading-show {
    opacity: 1;
    visibility: visible;
}

.pa-loading-icon svg circle {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    animation: loading-circular 1.5s ease-in-out infinite;
}

@keyframes loading-rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes loading-circular {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40
    }

    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120
    }
}