/*afの基盤エレメント*/
.af_Base {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background-color: white;
    width: 400px;
    height: 100px;
    top: 7%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 12px 12px;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

/*処理結果テキストの外枠のスタイル*/
.af_LabelBase {
    position: relative;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}

/*処理結果テキストのスタイル*/
.af_LabelResult {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1rem;
    color: #333333;
}

/*処理成功のアイコンのスタイル*/
.af_ResultIcon_Successful {
    font-size: 50px !important;
    color: #3cb37a;
    margin-right: 10px;
}

/*afの閉じるボタン*/
.af_Close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 8px;
    cursor: pointer;
}

/*タイマーバーの最大長表示*/
.af_TimeBarMAX {
    background-color: #677EB8;
    width: 100%;
    height: 10px;
    position: relative;
    top: 40px;
    left: 0px;
    margin-right: auto;
}

/*時間経過Bar縮小5秒*/
.ad_TimeBar5 {
    transition-duration: 5000ms;
    transition-property: width;
    transition-timing-function: linear;
    width: 0%;
}

.fade-out {
    animation: fadeOut 0.3s;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
