﻿.text-error {
    font-size: small;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-select {
    border-radius: 8px;
}

.input-group > .form-select {
    flex: unset !important;
    width: 124px;
}

.pt-100{
    padding-top:100px;
}


.alert-box {
    position: relative;
    padding: 10px 36px 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Close button */
.alert-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
}

    .alert-close:hover {
        opacity: 1;
    }

/* SUCCESS */
.alert-box.success {
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #b7e1c1;
}

/* INFO */
.alert-box.info {
    background: #e7f1ff;
    color: #0c63e4;
    border: 1px solid #b6d4fe;
}

/* WARNING */
.alert-box.warning {
    background: #fff4e5;
    color: #b58105;
    border: 1px solid #ffe0a3;
}

/* ERROR */
.alert-box.error {
    background: #fdecea;
    color: #b02a37;
    border: 1px solid #f5c2c7;
}