﻿/*Fuentes*/
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsThin';
    src: url('../fonts/Poppins-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*Alert*/

.coreAlert {
    font-family: Poppins;
    left: 20px;
    position: absolute;
    width: calc(100% - 40px);
    height: 100px;
    z-index: 1000020;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.backGroundAlertSucess {
    background: linear-gradient(137deg, rgba(199,242,163,1) 0%, rgba(109,201,122,1) 100%);
    color: #555555;
}

.backGroundAlertError {
    background: linear-gradient(137deg, rgba(254,170,64,1) 0%, rgba(250,112,154,1) 100%);
    color: #fff;
}

.backGroundAlertDefault {
    background: linear-gradient(137deg, rgba(227,225,162,1) 0%, rgba(230,187,41,1) 100%);
    color: #555555;
}

#closeAlert {
    height: 50px;
    width: 100%;
    background-image: url(../Images/CableFamilia/closeAlert.png);
    background-size: 0px;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 75px;
    display: none;
}

.alertActive > #closeAlert {
    display: block;
    transition: all .3s ease-in-out;
}

.alertActive {
    box-shadow: #47474730 10px 10px 10px;
    top: 10px;
    transition: all .3s ease-in-out;
}

.alertDesactive {
    top: -100px;
    transition: all .3s ease-in-out;
}

.iconAlertContent {
    width: 25%;
    padding: 10px;
}

.coreIconAlert {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin: auto;
    background-color: #0000003b;
    background-size: 31px;
    background-repeat: no-repeat;
    background-position: center;
}

.iconSuccess {
    background-image: url(../Images/CableFamilia/iconSuccess.png);
}

.iconError {
    background-image: url(../Images/CableFamilia/iconError.png);
}

.iconDefault {
    background-image: url(../Images/CableFamilia/iconDefault.png);
}

.textAlertContent {
    width: 75%;
    padding: 10px;
}

.coreTitleAlert {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
}
.coreContentAlert {
    font-family: Poppins;
    font-size: 12px;
}
