
/*Tag*/
.tag {
    display: inline-block;
    background-color: #fff;
    padding: 5px 35px 5px 11px;
    border: 1px solid #E4E5F0;
    border-radius: 24px;
    color: #434657;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    background-image: url(../image/svg/close-tag.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: calc(100% - 18px + 8px) 50%;

    transition: border-color ease .15s;
    text-decoration: none;
    cursor: pointer;
}

.tag:hover {
    border: 1px solid #BCBFD6;
}

.tag.sz-s {
    font-size: 12px;
    line-height: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.tab.notify {
    padding-right: 32px;
}

.tab.notify:before {
    content: attr(data-notity);
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--invalid-color);
    border-radius: 100%;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}

.tab:not(.active):hover:before,
.tab:not(.active):hover:after {
    top: calc(50% + .5px);
    padding-bottom: 8px;
}

.tab:active,
.tab.active {
    font-weight: 500;
}


/*Text*/
.text-error {
    color: var(--invalid-color);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

/*step*/
.step,
.head-mobile {
    display: none;
}

.text-title {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .c-container {
        max-width: 1264px;
    }

    .c-container-side {
        max-width: 1024px;
    }
}

@media screen and (max-width: 992px) {

    /*card*/
    .card {
        border-radius: 8px;
    }

    /* Bottom sheet*/
    .bottom-sheet {
        display: block;
    }

    .sheet-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 12px 16px 11px;
        border-bottom: 1px solid var(--border-default-color);
    }

    .sheet-header .close {
        position: absolute;
        margin-bottom: 0;
        width: 24px;
        height: 24px;
        right: 16px;
        top: 12px;
        background-image: url(../image/svg/close-bottom-sheet.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px 24px;
    }

    .sheet-body {
        position: absolute;
        top: 48px;
        left: 0;
        right: 0;
        bottom: 16px;
        padding: 16px;
        overflow: auto;
    }

    /*Step*/
    .step {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateX(130%);
        transition: all ease .4s;
        z-index: 1000;
        box-shadow: -2px 0 8px rgba(45, 42, 42, 0.25);
    }

    .head-mobile {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 56px;
        background-color: #fff;
        z-index: 1000;
    }

    .head-mobile.box-shadow {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .head-mobile .head-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .head-mobile .link-back {
        display: block;
        position: absolute;
        background-image: url(../image/svg/head-mobile-back.svg);
        background-repeat: no-repeat;
        background-size: 24px 24px;
        background-position: center;
        width: 24px;
        height: 24px;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
    }

    .head-mobile .notify {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
        background-image: url(../image/svg/bell.svg);
        background-repeat: no-repeat;
        background-size: 24px 24px;
        background-position: center;
    }

    .head-mobile .home {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
        background-image: url(../image/svg/home.svg);
        background-repeat: no-repeat;
        background-size: 24px 24px;
        background-position: center;
    }

    .head-mobile .notify:before {
        content: attr(data-notify);
        display: block;
        width: 16px;
        height: 16px;
        text-align: center;
        color: #fff;
        font-weight: 500;
        font-size: 10px;
        line-height: 16px;
        position: absolute;
        top: -4px;
        right: -4px;
        border-radius: 100px;
        background-color: var(--invalid-color);
    }

    .body-mobile {
        position: absolute;
        background-color: #fff;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
    }

    .tab .icon-custom:after {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    #noticeModal img {
        width: 100%;
        height: auto;
    }
}
