a{
    text-decoration: none !important;
}
.bg_violet {
    background: #bd10e0 !important;
    ;
}

.bg_green {
    background-color: #8bc34a !important;
}

.bg_orange {
    background-color: #f60 !important;
}

.bg_blue {
    background-color: #04a1d4 !important;
}

.bg_red {
    background-color: #f00 !important;
}

.bg_brown {
    background-color: #c3a34a !important;
}

.bg_green_bold {
    background: #057c40 !important;
}
.border_violet {
    border-color: #bd10e0 !important;
    ;
}

.border_green {
    border-color: #8bc34a !important;
}

.border_orange {
    border-color: #f60 !important;
}

.border_blue {
    border-color: #04a1d4 !important;
}

.border_red {
    border-color: #f00 !important;
}

.border_brown {
    border-color: #c3a34a !important;
}

.border_green_bold {
    border-color: #057c40 !important;
}
.color_violet {
    color: #bd10e0 !important;
    ;
}

.color_green {
    color: #8bc34a !important;
}

.color_orange {
    color: #f60 !important;
}

.color_blue {
    color: #04a1d4 !important;
}

.color_red {
    color: #f00 !important;
}

.color_brown {
    color: #c3a34a !important;
}
.box_pop {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.box_pop .box_pop_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    padding: 15px 20px;
    padding-bottom: 25px;
    width: 430px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    background: #fff;
}

.box_pop .box_pop_content .pop_title {
    font-size: 20px;
    text-align: center;
    margin: 10px 0 20px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.box_pop .box_pop_content .pop_content {
    width: 100%;
    display: inline-block;
}

.box_pop .box_pop_content .pop_content .li_input {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input label {
    width: 100%;
    display: inline-block;
    height: 20px;
    margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input input {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input select {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input button {
    border: none;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.box_pop .box_pop_content .pop_button .text_left {
    float: left;
    line-height: 35px;
}

.box_pop .box_pop_content .pop_button .text_left a:hover {
    color: #f0564a;
}

.box_pop .box_pop_content .pop_button .text_right {
    float: right;
}

.box_pop .box_pop_content .pop_button .text_center {
    text-align: center;
}

.box_pop .box_pop_content .pop_button .text_center button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button .text_right button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}
/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

/* Notification Styles */
.notification {
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    overflow: hidden;
    position: relative;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

.notification-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.notification-message {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Progress bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    transition: width linear;
}

/* Type-specific colors */
.notification.success .notification-icon {
    background: #4CAF50;
    color: #fff;
}
.notification.success .notification-progress {
    background: #4CAF50;
    color: #fff;
}

.notification.error .notification-icon {
    background: #f44336;
    color: #fff;
}
.notification.error .notification-progress {
    background: #f44336;
    color: #fff;
}

.notification.warning .notification-icon {
    background: #ff9800;
}
.notification.warning .notification-progress {
    background: #ff9800;
}

.notification.info .notification-icon {
    background: #2196F3;
}
.notification.info .notification-progress {
    background: #2196F3;
}
.notification.loading .notification-icon {
    background: #2196F3;
    color: #fff;
}
.notification.loading .notification-progress {
    background: #2196F3;
}
/* Mobile responsive */
@media (max-width: 480px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .notification {
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }

    .notification.hide {
        transform: translateY(-100px);
    }
}
.load_tab{
    position: relative;
    margin: auto;
    background: #fff;
    height: 450px;
    width: 100%;
    border-radius: 16px;
}
.load_container{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 60px;
    height: 60px;
    opacity: .2;
    border-radius: 50%;
    border-top: 5px solid #dedede;
    border-right: 5px solid #dedede;
    border-bottom: 5px solid #dedede;
    border-left: 5px solid transparent;
    animation: spinner-animation 1s infinite linear;
}
@keyframes spinner-animation {
    to {
        transform: rotate(1turn)
    }
}