/* ================================================ */
/* CSS For App Logo TranSyTam */

.transytam-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    position: relative;
    height: 800px;
    width: 800px;
    opacity: 0.1;
}

.transytam-logo-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;

}

/* Lớp hiển thị */
.transytam-logo-container .transytam-logo-bg {
    width: 100%;
    z-index: 1;
    animation: rotateLogo 30s linear;

}

.transytam-logo-container .transytam-logo-mid {
    width: 60%;
    z-index: 2;
    animation: rotateLogo 60s linear;
}

.transytam-logo-container .transytam-logo-top {
    width: 15%;
    z-index: 3;
}

@keyframes rotateLogo {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    50%  { transform: translate(-50%, -50%) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }

}

@media screen and (max-width: 991px) {
    .transytam-logo-container  {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .transytam-logo-container  {
        height: 400px;
    }
}
