.tooltip-info{
    position: relative;
    display: inline-block;
    padding-left: 8px;
}

.tooltip-info .info-text {
    visibility: hidden;
    width: 200px;
    background-color: #23282d;
    color: #fff;
    border-radius: var(--sunBorderRadius);
    padding: 5px 0;
    position: absolute;
    z-index: 1;
}

.tooltip-align-top{
    bottom: 100%;
    left: 50%;
}

.tooltip-align-bottom{
    top: 130%;
    left: 5%;
}

.tooltip-align-left{
    top: -5px;
    right: 105%;
}

.tooltip-align-right{
    top: -5px;
    left: 105%;
}

.tooltip-info:hover .info-text{
    visibility: visible;
}

.popup-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.popup-title {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.popup-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 40px;
}

.popup-show-info-color{
    width: 35%;
    display: flex;
    height: 15px;
    align-items: center;
    border-radius: var(--sunBorderRadius);
}

.popup-field-name{
    width: 55%;
}

.popup-full-single-line{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}


/* sweetalert2 */

/* confirm-remove-item */
.swal2-confirm.sun-custom-confirm-remove-item {
    background-color: var(--sunAlertBtnConfimBackgroundColor);
    color: var(--sunAlertBtnColor);
    border: 1px solid;
    border-radius: var(--sunBorderRadius);
}

.swal2-cancel.sun-custom-cancel-remove-item {
    background-color: var(--sunAlertBtnCancelBackgroundColor);
    color: var(--sunAlertBtnColor);
    border: 1px solid;
    border-radius: var(--sunBorderRadius);
}

