/* * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    overflow-x: hidden !important;
} */

:root {
    --time-animation: 3s !important;
}

.toast1 {
    position: fixed !important;
    z-index: 999999 !important;
    border-radius: 12px !important;
    padding: 10px 35px 10px 25px !important;
    background-color: #fff !important;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    top: 25px !important;
    right: 30px !important;
    border-left: 5px solid #5cb85c !important;
    overflow: hidden !important;
    -webkit-transform: translateX(calc(100% + 30px)) !important;
    transform: translateX(calc(100% + 30px)) !important;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35) !important;
    transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35) !important;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35) !important;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35), -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35) !important;
}

.toast1.visible1 {
    -webkit-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
}

.toast1 .icon svg {
    color: #5cb85c !important;
    font-size: 24px !important;
}

.toast1 .toast1-content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.toast1 .toast1-content .menssagem {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    margin: 0 20px !important;
}

.toast1 .toast1-content .menssagem .text {
    font-weight: 400 !important;
    color: #666 !important;
}

.toast1 .toast1-content .menssagem .text.text-1 {
    font-weight: 600 !important;
    color: #333 !important;
    text-transform: uppercase !important;
    font-size: 20px !important;
    margin-bottom: 0.2rem !important;
}

.toast1 .toast1-content .menssagem .text.text-2 {
    font-size: 18px !important;
}

.toast1 .icon-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    padding: 5px !important;
    cursor: pointer !important;
}

.toast1 .progress1 {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 3px !important;
    width: 100% !important;
    background-color: #fff !important;
}

.toast1 .progress1::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background: #5cb85c !important;
}

.toast1 .progress1.visible1::before {
    -webkit-animation: progress1 var(--time-animation) linear forwards;
    animation: progress1 var(--time-animation) linear forwards;
}

/*=========== TOAST ERROR  ===============*/
.toast1.type-error {
    border-left: 5px solid #FF5252 !important;
}

.toast1.type-error .icon svg {
    color: #FF5252 !important;
    font-size: 28px !important;
}

.toast1.type-error .progress1::before {
    background: #FF5252 !important;
}

/*=========== TOAST SUCCESS  ===============*/
.toast1.type-success {
    border-left: 5px solid #4CAF50 !important;
}

.toast1.type-success .icon svg {
    color: #4CAF50 !important;
    font-size: 24px !important;
}

.toast1.type-success .progress1::before {
    background: #4CAF50 !important;
}

/*=========== TOAST Warning  ===============*/
.toast1.type-warning {
    border-left: 5px solid #FFC107 !important;
}

.toast1.type-warning .icon svg {
    color: #FFC107 !important;
    font-size: 28px !important;
}

.toast1.type-warning .progress1::before {
    background: #FFC107;
}

@-webkit-keyframes progress1 {
    100% {
        right: 100%;
    }
}

@keyframes progress1 {
    100% {
        right: 100%;
    }
}

.pointer {
    cursor: pointer !important;
}

.card-item-name {
    overflow: hidden !important;
    width: 193px !important;
}

/*# sourceMappingURL=styles.css.map */