/* CSS UTILITIES */


.fadeout_opacity {
animation:A_fadeout 1s linear 1 !important;
animation-fill-mode:forwards !important;
}

@keyframes A_fadeout {
    /*from{opacity:1;}*/
    to {opacity:0;}
}

.fadeout_opacity3 {
animation:A_fadeout .3s linear 1 !important;
animation-fill-mode:forwards !important;
}



.opacity4 {
opacity: .4;
/*transform: translateY(-200px);*/    
transform: translateY(-150px)!important;
}

.opacity4_old {
animation: A_opacity4 1s linear 1;    
animation-fill-mode:forwards;
}

@keyframes A_opacity4 {
    to {opacity:.4;transform:translateY(-200px);}
}


.opacity1 {
opacity:1 !important;    
}

.opacity0 {
opacity:0 !important;    
}

.opacity60 {
    opacity:0.6 !important;    
    }

.fade_in_pup {
animation:A_fadein .5s linear 1;
animation-fill-mode:forwards;
}


.fadein_opacity {
animation:A_fadein .8s linear 1;
animation-fill-mode:forwards;
}

@keyframes A_fadein {
    to {opacity:1;}
}

.fadein_opacity18 {
animation:A_fadein18 1.8s linear 1;
animation-fill-mode:forwards;
}

@keyframes A_fadein18 {
    to {opacity:1;}
}

.fadein_opacity50 {
animation:A_fadein50 5s ease-in 1;
animation-fill-mode:forwards;
}

@keyframes A_fadein50 {
    to {opacity:1;}
}


.fadein_opacity2 {
animation:A_fadein2 2s ease-in 1;
animation-fill-mode:forwards;
}

@keyframes A_fadein2 {
    to {opacity:1;}
}

.fadein_opacity5 {
animation:A_fadein5 .2s ease-in 1;
animation-fill-mode:forwards;
}

@keyframes A_fadein5 {
    to {opacity:1;}
}



.blinker {
animation: A_blinker .5s infinite;
}
  
@keyframes A_blinker {
    0% {color: transparent;}
    50% {color: white;}
    100% {color: transparent;}
}

.blinker_dark {
animation: A_blinker_dark .5s infinite;
}
      
@keyframes A_blinker_dark {
    0% {color: transparent;}
    50% {color: #000;}
    100% {color: transparent;}
}

.blinker_green {
animation: A_blinker_green .5s infinite;
}
      
@keyframes A_blinker_green {
    0% {color: transparent;}
    50% {color: #00cc00;}
    100% {color: transparent;}
}

.bg_black {
background-color:#000; 
}

.white_text {
color:#fff !important; 
font-weight: 600 !important; 
}

.green_text {
color:#00cc00 !important;      
}

.bold_text {
font-weight:600;
}