/* ======================================= STYLE GENERAL ======================================= */
*, *:before, *:after {
    padding:0;
    margin:0;
    outline: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    background: #e11010;
    color: #fff;
}
/* ======================================= PAGE ACCESS DENIED ======================================= */
.pg-accs_deng {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;
    font-family: 'Ubuntu', sans-serif;
}
.pg-accs_deng::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 1;
    background-image: url(//cdn.bahiasdhuatulco.com/assets/media/images/backgrounds/others/red-circuit.png);
    background-size: cover;
    background-position: center center;
}
.pgad-details {
    display: block;
    position: relative;
    width: 100%;
    height: 100vh;
}
/* ======================================= CONTENT BOX - ACCESS DENIED ======================================= */
.pgad-container {
    display: block;
    width: 80%;
    margin: auto;
    padding: 20px 25px;
}
.pgad-container .pgad_cont-title, .pgad_cont-graph, .pgad_cont-subtitle, .pgad_cont-buttons {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 10px 25px 10px;
}
.pgad-container .pgad_cont-title h1 {
    font-family: Ubuntu, sans-serif;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: -0.2px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    -webkit-animation: fadeOn 0.8s none;
    animation: fadeOn 0.8s none;
}
.pgad-container .pgad_cont-logo-title {
    user-select: none;
    pointer-events: none;
}
.pgad-container .pgad_cont-logo-title img {
    width: 310px;
    user-select: none;
    pointer-events: none;
    -webkit-animation: zoomEntrada 0.9s;
    animation: zoomEntrada 0.9s;
}
.pgad-container .pgad_cont-subtitle h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    -webkit-animation: leftEntrance 0.7s;
    animation: leftEntrance 0.7s;
}

/*=============== SECTION BUTTONS ===============*/
.pgad_cont-btn {
    padding: 0 15px;
}
.pgad_btn-home, .pgad_btn-admin {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 8px;
    max-width: 200px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 1s ease-in;
}
.pgad_btn-home:hover, .pgad_btn-admin:hover {
    color: #edce00;
}
.pgad_btn-home svg, .pgad_btn-admin svg {
    height: 40px;
    left: 0;
    top: 0; 
    position: absolute;
    width: 100%; 
}
.pgad_btn-home rect, .pgad_btn-admin rect {      
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 450, 0;
    transition: all 0.5s linear;
}
.pgad_btn-home:hover rect, .pgad_btn-admin:hover rect {
    stroke-width: 5;
    /* Original */
    /*stroke-dasharray: 20, 300;*/
    /*stroke-dashoffset: 48;*/
    /*stroke: #ff9950;*/

    /* Modified */
    stroke-dasharray: 30, 325;
    stroke-dashoffset: 50;
    stroke: #edce00;
    transition: all 2s cubic-bezier(0.22, 1, 0.25, 1);
}

/*=============== SECTION FOOTER ===============*/
.footer {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.footer .footer-text {
    padding: 10px 20px 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    -webkit-animation: downEntrance 1.2s;
    animation: downEntrance 1.2s;
}
.footer .footer-text strong {
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width: 800px) {
    .pgad-container {
        width: 100%;
    }
    .pgad-container .pgad_cont-title, .pgad_cont-graph, .pgad_cont-subtitle, .pgad_cont-buttons {
        padding: 8px 10px 8px;
    }
    .pgad-container .pgad_cont-subtitle h3 {
        font-size: 20px;
    }
    .pgad_cont-buttons {
        display: inline-flex;
        flex-flow: wrap;
        justify-content: space-around;
    }
    .pgad_cont-btn {
        padding: 8px 15px;
    }
    .footer .footer-text {
        padding: 0px 20px 10px;
        font-size: 11px;

    }
}