.error-section {
    width: 100%;
    height: 550px;
    border-radius: 6px;
}

.error-section .error-content {
    width: 100%;
    height: 100%;
    background: #0B0C10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.error-section .error-content .title {
    font-size: 90px;
    text-align: center;
    color: #66FCF1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.error-section .error-content .title svg {
    width: 90px;
    height: 90px;
}

.error-section .error-content .subtitle {
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.error-section .error-content .noti {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin-bottom: 20px;
}


/*======= Responsive Design Tables ======*/



@media (max-width:1024px) {
    .error-section {
        height: 450px;
    }

    .error-section .error-content .subtitle {
        font-size: 60px;
    }

}



/*===== Responsive Design Phone =====*/




@media (max-width:768px) {
    .error-section {
        height: 450px;
    }

    .error-section .error-content .title {
        font-size: 70px;
    }

    .error-section .error-content .title svg {
        width: 80px;
        height: 80px;
    }

    .error-section .error-content .subtitle {
        font-size: 30px;
    }

    .error-section .error-content .noti {
        font-size: 14px;
    }

}

.support {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #0B0C10;
    background-image: linear-gradient(147deg, #66FCF1 0%, #45A29E 74%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.151);
}

.support svg {
    height: 12px;
    fill: #0B0C10;
    width: 30px;
    height: 30px;
}

.support:hover svg {
    animation: jello-vertical 0.7s both;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

@media (max-width:768px) {
    .support {
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .support svg {
        width: 20px;
        height: 20px;
    }
}