/* $this-static-img-path: $main-static-img-path + 'updatePopup/'; */

.update-popup-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;

    display: flex;
    justify-content: center;
    align-items: center;
}

.update-popup-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.update-popup-content {
    position: absolute;
    width: 400px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
}

.update-popup-content__close {
    position: absolute;
    width: 24px;
    height: 24px;
    padding: 5px;
    right: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url('../images/close_black_24dp.svg');
    cursor: pointer;
}

.update-popup-content__title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
    white-space: pre-line;
    text-align: center;
    font-size: 20px;
    font-family: 'GmarketSansB';
    color: #01BDFC;
}

.update-popup-content__title.message-only {
    margin: 50px 0 44px 0;
}

.update-popup-content__progress-box {
    margin: 20px 14px 32px 14px;
    border-radius: 5px;
    border: 1px solid #01BDFC;
    overflow: hidden;
}

.update-popup-content__progress {
    appearance: none;
    display: flex;
    align-items: center;
    width: 370px;
    height: 50px;
    color: #01BDFC;
}

.update-popup-content__progress::-webkit-progress-bar {
    background-color: #eee;
}
.update-popup-content__progress::-webkit-progress-value {
    background-color: #01BDFC;
}
.update-popup-content__progress:before {
    content: attr(data-label);
    position: absolute;
    font-size: 13px;
    color: #fff;
    margin-left: 14px;
}

.update-popup-content__update-info {
    border: 1px #B3B3B3 solid;
    height: 153px;
    margin: 14px 14px 17px 14px;
    padding: 12px;
    white-space: pre-wrap;
    overflow: auto;
    font-size: 13px;
    color: #000;
    line-height: 1.4em;
}

.update-popup-content__button-box {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    
}

.update-popup-content__button-box > div {
    flex-grow: 1;
    flex-basis: 0;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'GmarketSansB';
}

.update-popup-content__button-box > div.update {
    color: #fff;
    background-color: #01BDFC;
}
.update-popup-content__button-box > div.cancel {
    color: #999999;
    background-color: #e6e6e6;
}
.update-popup-content__button-box > div.confirm {
    color: #999999;
    background-color: #e6e6e6;
}

.Hidden {
    display: none !important;
}