/*--
-- Jose Rasso
-- @version Release 1.0
-- @date 03.06.2021
-- @url www.joseirasso.com
-- @Programming Language CSS
-- @Designed by Armando Peralta at Web Design Nodes -> https://www.webdesignnodes.com/
*/

*{
    margin: 0;
    padding: 0;
}

html{
	scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    width: 5px;
    background-color: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background: #00c996  ;
}

a{
    text-decoration: none;
}

/*
@font-face{
    font-family: Gothic;
    src: url(./resources/fonts/GOTHIC.TTF);
}

@font-face{
    font-family: Gothic2;
    src: url(./resources/fonts/GOTHICB.TTF);
}*/

@font-face{
    font-family: RRPioneer;
    src: url(./resources/fonts/RR_Pioner.ttf);
}

@font-face{
    font-family: RalewayExtraLight;
    src: url(./resources/fonts/Raleway-ExtraLight.ttf);
}

@font-face{
    font-family: HelveticaBold;
    src: url(./resources/fonts/HelveticaBold.ttf);
}

.BackgroundOverlay{
    width: 100vw;
    height: 100vh;
    background-color: #20202056;
    z-index: 105;
    position: fixed;
    display: none;
}

.TopMenu{
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 100;
    transition: .3s;
    background-color: #ffffff;
}

.MenuContainer{
    margin: auto;
    width: 95%;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.LogoMenu{
    width: 10%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.LogoMenu svg{
    height: 55px;
    transition: .3s;
}

.NavegationMenu{
    width: 85%;
    height: 80px;
    transition: .3s;
}

nav{
    margin: auto;
    width: 100%;
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: .3s;
}

nav ul {
    width: auto;
    list-style: none;
    overflow: hidden;
    display: flex;
}

nav ul li{
    display: inline;
    padding: 10px;
    position: relative;
}

ul li:after{
    content: '';
    height: 5.5px;
    width: 0px;
    background: #00c996 ;
    box-shadow: 0px 0px 2px #00c996 ;
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    right: 0%;
    transition: .3s;
    
}

ul li:hover:after{
    width: 100%;
    left: 0%;
}

nav ul li a{
    width: 100%;
    color: #007dcc;
    font-size:20px;
    text-decoration: none;
    font-family: RalewayExtraLight;
    font-weight: 200;
    cursor: pointer;
}

.CellphoneIconMenu{
    display: none;
}

/*Selected Box*/

.SelectBox{
    width: 75%;
    height: auto;
}

.SelectedBox{
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 15px;
    border: .5px solid #007dcc;
    margin-bottom: 10px;
}

.SelectedBox:hover{
    -webkit-box-shadow: 0px 0px 15px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px -8px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px -8px rgba(0,0,0,0.75);
}

.SelectedBoxContainer{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.SBClabel{
    width: 80%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.SBClabel p{
    font-family: RalewayExtralight;
    font-size: 18px;
    padding-left: 20px;
    color: #202020;
}

.SBCSIcon{
    width: 20%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SBCSIcon i{
    font-size: 18px;
    color: #007dcc;
}

.SelectOptionsList{
    width: 12.4%;
    height: 0;
    background-color: #f4f6fc;
    cursor: pointer;
    border-radius: 15px;
    position: absolute;
    z-index: 2;
    overflow: hidden;
}

.SelectOptionsList a{
    text-decoration: none;
    color: #202020;
}

.SOLOption{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.SOLOption:hover{
    background-color: #f1f1f1;
}

.SOLOption p{
    font-family: RalewayExtralight;
    text-decoration: none;
    font-size: 18px;
    padding-left: 20px;
    color: #202020;
}

.NavegationLenguages{
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.NavegationLenguages .SelectBox{
    position: relative;
}

.NavegationLenguages .selectBoxMenu .SelectedBox{
    margin-bottom: 0px;
}

.NavegationLenguages .SelectBox .SelectOptionsList{
    width: 100%;
}

.TopMenu .selectBoxMenu{
    max-width: 170px;
}

.selectBoxMenu .SelectedBox{
    height: 40px;
}

/*Notification Box & Animation*/

@keyframes NotificationContainerInAnim {
    0%{
        height: 0px;
        opacity: 0;
    }

    20%{
        opacity: 1;
        height: 0px;
    }

    100%{
        height: 40px;
    }    
}

@keyframes NotificationMessageInAnim {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }    
}

@keyframes NotificationContainerOutAnim {
    0%{
        height: 40px;
    }
    
    80%{
        opacity: 1;
        height: 40px;
    }
    
    100%{
        height: 0px;
        opacity: 0;
        display: none;
    }    
}

@keyframes NotificationMessageOutAnim {
    0%{
        opacity: 1;
    }

    100%{
        opacity: 0;
    }    
}

.NotificationContainer{
    width: auto;
    height: 40px;
    background-color: #202020;
    position: fixed;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;    
    border-radius: 15px 0px 0px 0px;
    animation-duration: .5s;
    animation-fill-mode: both;
}

.NotificationContainer p{    
    font-size:16px;
    font-family: HelveticaBold;    
	color: #ffffff;
    display: inline;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    opacity: 0;
    animation-delay: .55s;
    animation-duration: .3s;
    animation-fill-mode: both;
}

/*Company Notificaiion*/

@keyframes ShowCompanyNotificationButton {
    0%{
        opacity: 0;
        transform: scale(0);
    }

    100%{
        opacity: 1;
        transform: scale(1);
    }    
}

@keyframes HideCompanyNotificationButton {
    0%{
        opacity: 1;
        transform: scale(1);
    }

    100%{        
        opacity: 0;
        transform: scale(0);
    }    
}

@keyframes NotificationContainerOpen {
    0%{
        width: 50px;
        height: 50px;
        border-radius: 75px;
        background-color: #007dcc;
    }

    100%{
        width: 375px;
        height: auto;
        border-radius: 10px;
        background-color: #ffffff;
    }
    
}

@keyframes NotificationContainerClose {
    0%{
        width: 375px;
        height: 85vh;
        border-radius: 10px;
        background-color: #ffffff;        
    }

    100%{
        width: 50px;
        height: 50px;
        border-radius: 75px;
        background-color: #007dcc;
    }
    
}

.CompanyNotificationButton{
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: #007dcc;
    border-radius: 75px;
    top: 90px;
    right: 1%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
    animation-duration: .3s;
    animation-fill-mode: both;
    display: none;
    z-index: 98;
    -webkit-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px -10px rgba(0,0,0,0.75);
}

.CompanyNotificationButton:hover{
    -webkit-box-shadow: 0px 0px 15px -2px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 15px -2px rgba(0,0,0,1);
    box-shadow: 0px 0px 15px -2px rgba(0,0,0,1);
}

.CompanyNotificationButton i{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 25px;
}

.CompanyNotificationNotifiContainer{
    margin: auto;
    width: 100%;
    height: auto;
    cursor: pointer;
    display: none;
    transition: .3s;
}

.CNNCT{
    margin: auto;
    width: 90%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CNNCTL{
    width: 85%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.CNNCTL p{
    color: #007dcc;
    font-size:20px;
    font-family: HelveticaBold;
    cursor: pointer;
    text-align: left;
}

.CNNCTR{
    width: 15%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.CNNCTR img{
    width: 45%;
}

.CNNCC{
    margin: auto;
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.CNNCC img{
    max-width: 100%;
    height: auto;
}

/* ----------- Regular Screen ----------- */

@media screen and (min-width:1680px) and (max-width:1919px){

}

@media screen and (min-width:1600px) and (max-width:1919px) and (max-height:900px){

    nav ul li a{
        font-size:16px;
    }

}

@media screen and (min-width:1600px) and (max-width:1919px)  and (max-height:1024px){

    nav ul li a{
        font-size:16px;
    }

}

@media screen and (min-width:1440px) and (max-width:1599px){

    nav ul li a{
        font-size:16px;
    }

}

@media screen and (min-width:1366px) and (max-width:1439px){

    nav ul li a{
        font-size:16px;
    }

    .CompanyNotificationButton{
        /*left:95.5%;*/
    }

    .CompanyNotificationNotifiContainer{
        height: 80vh;
        top: 90px;
    }
    
}

@media screen and (min-width:1360px) and (max-width:1365px){

    nav ul li a{
        font-size:16px;
    }

    .CompanyNotificationButton{
        /*left:95.5%;*/
    }

    .CompanyNotificationNotifiContainer{
        height: 80vh;
        top: 90px;
    }

}

@media screen and (min-width:1280px) and (max-width:1359px){

    nav ul li a{
        font-size:16px;
    }

    .CompanyNotificationButton{
        width: 50px !important;
        height: 50px !important;
        /*left:95.5% !important;*/
    }

    .CompanyNotificationNotifiContainer{
        width: 40% !important;
        height: 80vh;
        top: 90px;
    }

}

@media screen and (min-width:1152px) and (max-width:1279px){

    nav ul li a{
        font-size:14px;
    }

    .CompanyNotificationButton{
        width: 50px !important;
        height: 50px !important;
        /*left:95.5% !important;*/
    }

    .CompanyNotificationNotifiContainer{
        width: 35% !important;
        height: 80vh;
        top: 90px;
    }

}

@media screen and (min-width:1025px) and (max-width:1151px){

    nav ul li a{
        font-size:14px;
    }

}

/* ----------- Tablets Screens ----------- */

@media screen and (min-width:1024px) and (max-width:1280px){

    .CompanyNotificationButton{
        width: 100px;
        height: 100px;
        left:87%;
    }

    .CompanyNotificationNotifiContainer{
        width: 70%;
    }

    .CompanyNotificationButton{
        width: 70px !important;
        height: 70px !important;
        /*left:90% !important;*/
    }

    .CompanyNotificationNotifiContainer{
        width: 35% !important;
        height: 80vh;
        top: 90px;
    }

}

@media screen and (min-width:768px) and (max-width:1023px){

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 60px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 60px;
    }

    .LogoMenu{
        height: 60px;
    }

    .LogoMenu img{
        height: 60px;
        transition: .3s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .3s;
    
    }
    
    .CellphoneIconMenu img{
        width: 60%;
    }

    .CompanyNotificationButton{
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-top: 50px;
        top: 60px;
    }

    .CompanyNotificationButton i{
        font-size: 20px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

/* ----------- Mobile Screens ----------- */

@media screen and (min-width:416px) and (max-width:767px){

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-top: 50px;
        /*left:85%;*/
        top: 0px;
    }

    .CompanyNotificationButton i{
        font-size: 20px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: 85vh;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }
    
    
}

@media screen and (min-width:376px) and (max-width:415px){  

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-top: 50px;
        top: 0px;
    }

    .CompanyNotificationButton i{
        font-size: 20px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

@media screen and (min-width:361px) and (max-width:375px){

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-top: 50px;
        /*left:85%;*/
    }

    .CompanyNotificationButton i{
        font-size: 20px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

@media screen and (min-width:321px) and (max-width:360px){

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 50px;
        height: 50px;
        border-radius: 25px;
        margin-top: 50px;
        /*left:83%;*/
    }

    .CompanyNotificationButton i{
        font-size: 20px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

@media screen and (min-width:281px) and (max-width:320px){

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 35px;
        height: 35px;
        border-radius: 25px;
        margin-top: 40px;
        /*left:85%;*/
    }

    .CompanyNotificationButton i{
        font-size: 16px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

@media screen and (min-width:0px) and (max-width:280px){

    @keyframes NotificationContainerOpen {
        0%{
            width: 50px;
            height: 50px;
            border-radius: 75px;
            background-color: #007dcc;
        }
    
        100%{
            width: 90%;
            height: auto;
            border-radius: 10px;
            background-color: #ffffff;
        }
        
    }

    .NotificationContainer{
        width: 100%;
        height: auto;
        min-height: 40px;
        background-color: #202020;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;    
        border-radius: 15px 15px 0px 0px;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    
    .NotificationContainer p{    
        font-size:16px;
        font-family: HelveticaBold;    
        color: #ffffff;
        display: inline;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        opacity: 0;
        animation-delay: .55s;
        animation-duration: .3s;
        animation-fill-mode: both;
    }

    .TopMenu{
        height: 40px;
    }

    .MenuContainer{
        margin: auto;
        width: 98%;
        height: 40px;
    }

    .LogoMenu{
        height: 40px;
    }

    .LogoMenu img{
        height: 40px;
        transition: 1s;
    }

    .NavegationMenu{
        width: 0%;
        height: 0px;
        display: none;
    }

    .NavegationLenguages{
        display: none;
    }

    .CellphoneIconMenu{
        width: 10%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 1s;
    
    }
    
    .CellphoneIconMenu img{
        width: 80%;
    }

    .CompanyNotificationButton{
        width: 35px;
        height: 35px;
        border-radius: 25px;
        margin-top: 40px;
        /*left:80%;*/
    }

    .CompanyNotificationButton i{
        font-size: 16px;
    }

    .CompanyNotificationNotifiContainer{
        top: 60px;
        width: 90%;
        height: auto;
    }

    .CNNCTL p{
        font-size:16px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .CNNCC img{
        width: 100%;
        height: 100%;
    }

}

