/* 
    Created on : 2022. júl. 09., 20:30:05
    Author     : Creatus
*/
.tabs input[type=radio] {
    display: none;
}
.tab-content {
    background-color: white !important;
    display: none;
    width: 100%;
    float: left;
    padding: 0;
    background: transparent;
    transition: all .8s ease-in-out;
}
.home-menu, .other-menu {
    cursor: pointer;
}
@keyframes scale{
    0%{
        transform: scale(0.7);
        opacity: 0;
        background: purple;
    }
    50%{
        transform: scale(1.03);
        opacity: 0.3;
        background: rgb(210, 210, 210);
    }
    100%{
        transform: scale(1);
        opacity: 1;
        background: #fff;
    }
}