/* =====================================================
   PENTA 2027
===================================================== */

/* HERO */

.penta-hero{
    width:100%;
    margin-bottom:30px;
}

.penta-hero-image{
    width:100%;
    height:auto;
    display:block;
}

/* =====================================================
   PENTA NAVIGATION
===================================================== */

.penta-navigation{
    position:sticky !important;
    top:55px !important;
    z-index:1000 !important;

    background:rgba(255,255,255,0.25);

    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
}

.penta-nav-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.penta-nav-item{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:46px;
    padding:10px 18px;

    border:1px solid #E3E3E3;
    border-radius:30px;

    background:#ffffff;

    color:#555555;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.penta-nav-item .glyphicon{
    margin-right:8px;
    font-size:13px;
}

.penta-nav-item:hover,
.penta-nav-item:focus{
    background:#F8EDEF;
    border-color:#990000;

    color:#990000;

    text-decoration:none;

    transform:translateY(-2px);
}

.penta-nav-item.active{
    background:#990000;
    border-color:#990000;

    color:#ffffff;
}

.penta-nav-item.active:hover{
    background:#7A0019;
    border-color:#7A0019;

    color:#ffffff;
}


/* =====================================================
   PENTA CTA
===================================================== */

.penta-register-button{
    margin-top:5px;

    text-align:center;
}

.penta-cta{
    display:inline-flex;
    align-items:center;

    padding:5px 10px;

    background:#D4AF37;
    color:#7A0019;

    border-radius:30px;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    box-shadow:0 6px 18px rgba(212,175,55,.25);

    transition:all .25s ease;
}

.penta-cta .glyphicon{
    margin-left:10px;
    font-size:11px;
}

.penta-cta:hover,
.penta-cta:focus{
    background:#990000;
    color:#ffffff;

    text-decoration:none;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(153,0,0,.2);
}


/* =====================================================
   PENTA SECTION
===================================================== */

.penta-section{
    padding:75px 0;
}

.timeline-section{
    /*background:#F8F9FA;*/
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.50),
        rgba(255,255,255,0.10)
    );
}

.penta-section-heading{
    margin-bottom:40px;
    text-align:center;
}

.penta-section-heading .section-label{
    display:inline-block;

    padding:7px 16px;
    margin-bottom:15px;

    background:rgba(135,0,0,.12);
    border:1px solid rgba(135,0,0,.35);

    border-radius:30px;

    color:#870000;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.penta-section-heading h2{
    margin:0 0 12px;

    font-family:'Poppins',sans-serif;

    font-size:32px;
    font-weight:700;

    color:#7A0019;
}

.penta-section-heading p{
    margin:0 auto;

    max-width:600px;

    font-size:15px;
    line-height:1.7;

    color:#111111;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline-list{
    max-width:900px;

    margin:0 auto;

    display:flex;
    gap:20px;
}

.timeline-item{
    position:relative;

    flex:1;

    padding:28px 25px;

    background:#ffffff;

    border:2px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    transition:all .25s ease;
}

.timeline-item:hover{
    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.09);
}

.timeline-item.active{
    border:2px solid #990000;

    box-shadow:0 10px 25px rgba(153,0,0,.12);
}

.timeline-number{
    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

    font-size:13px;
    font-weight:700;

    color:#D4AF37;
}

.timeline-content h3{
    margin:0 0 10px;

    font-family:'Poppins',sans-serif;

    font-size:19px;
    font-weight:700;

    color:#7A0019;
}

.timeline-content p{
    margin:0;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .penta-navigation{
        position:sticky !important;
        top:43px !important;
        z-index:1000 !important;
    }

    .penta-nav-list{
        gap:8px;
    }

    .penta-nav-item{
        min-height:25px;
        padding:5px 9px;
        font-size:12px;
    }

    .penta-nav-item .glyphicon{
        margin-right:6px;
    }

    .penta-section{
        padding:60px 0;
    }

    .penta-section-heading h2{
        font-size:28px;
    }

    .timeline-list{
        display:block;
    }

    .timeline-item{
        margin-bottom:15px;
    }

}

/* =====================================================
   ALUR PENDAFTARAN
===================================================== */

.alur-section{
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.50),
        rgba(255,255,255,0.10)
    );
}

.alur-list{
    max-width:1000px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.alur-item{
    position:relative;

    padding:25px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    transition:all .25s ease;
}

.alur-item:hover{
    transform:translateY(-4px);

    border-color:#990000;

    box-shadow:0 10px 25px rgba(153,0,0,.08);
}

.alur-number{
    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

    font-size:13px;
    font-weight:700;

    color:#D4AF37;
}

.alur-content h3{
    margin:0 0 10px;

    font-family:'Poppins',sans-serif;

    font-size:18px;
    font-weight:700;

    color:#7A0019;
}

.alur-content p{
    margin:0 0 15px;

    font-size:14px;
    line-height:1.6;

    color:#111111;
}

.alur-link{
    display:inline-block;

    color:#990000;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.alur-link .glyphicon{
    margin-left:5px;

    font-size:10px;
}

.alur-link:hover,
.alur-link:focus{
    color:#D4AF37;

    text-decoration:none;
}

.alur-note{
    margin:10px 0;

    padding:12px 14px;

    background:#F8F9FA;

    border-left:3px solid #870000;

    border-radius:0 8px 8px 0;

    color:#111111;

    font-size:13px;
    line-height:1.25;
}

.alur-note strong{
    color:#7A0019;
}

.alur-note ul{
    margin:0;
    padding-top:10px;
    padding-left:20px;
}

.alur-note li{
    margin-bottom:7px;

    font-size:13px;
    line-height:1.25;

    color:#111111;
}

.alur-payment{
    margin:15px 0;

    padding:12px 14px;

    background:#F8F9FA;

    border-radius:10px;

    font-size:13px;
    line-height:1.5;

    color:#111111;
}

.alur-payment div{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.alur-payment strong{
    color:#990000;
    white-space:nowrap;
}

.alur-notes{
    max-width:1000px;

    margin:35px auto 0;

    padding:20px 25px;

    background:#F8F9FA;

    border-radius:14px;

    border:1px solid #E5E5E5;
}

.alur-notes h3{
    margin:0 0 12px;

    font-family:'Poppins',sans-serif;

    font-size:17px;
    font-weight:700;

    color:#7A0019;
}

.alur-notes ul{
    margin:0;
    padding-left:20px;
}

.alur-notes li{
    margin-bottom:7px;

    font-size:13px;
    line-height:1.6;

    color:#111111;
}

.alur-notes li:last-child{
    margin-bottom:0;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .alur-list{
        display:block;
    }

    .alur-item{
        margin-bottom:15px;
    }

    .alur-payment div{
        display:block;
    }

    .alur-payment strong{
        display:block;
    }

    .alur-notes{
        padding:18px;
    }

}


/* =====================================================
   TAHAP & BERKAS
===================================================== */

.tahap-berkas-section{
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.50),
        rgba(255,255,255,0.10)
    );
}

.tahap-list{
    max-width:1000px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.tahap-item{
    position:relative;

    padding:28px 25px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    transition:all .25s ease;
}

.tahap-item:hover{
    transform:translateY(-4px);

    border-color:#990000;

    box-shadow:0 10px 25px rgba(153,0,0,.08);
}

.tahap-number{
    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

    font-size:13px;
    font-weight:700;

    color:#D4AF37;
}

.tahap-content h3{
    margin:0 0 7px;

    font-family:'Poppins',sans-serif;

    font-size:19px;
    font-weight:700;

    color:#7A0019;
}

.tahap-content h4{
    margin:0 0 15px;

    font-size:15px;
    font-weight:700;

    color:#990000;
}

.tahap-content p{
    margin:0 0 15px;

    font-size:14px;
    line-height:1.7;

    color:#111111;
}

.tahap-detail{
    margin-top:18px;

    padding:15px;

    background:#F8F9FA;

    border-left:3px solid #870000;

    border-radius:0 10px 10px 0;

    font-size:13px;
    line-height:1.5;

    color:#111111;
}

.tahap-detail > strong{
    color:#7A0019;
}

.tahap-detail ol{
    margin:10px 0 0;
    padding-left:20px;
}

.tahap-content ul{
    padding-left:20px;
    line-height:1.75;
}

.tahap-detail li{
    margin-bottom:7px;
}

.tahap-detail li:last-child{
    margin-bottom:0;
}

.tahap-note{
    margin-top:15px;
    padding:10px 13px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-left:3px solid #AAAAAA;

    border-radius:0 8px 8px 0;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}

.tahap-note strong{
    color:#444444;
}

.tahap-download{
    display:flex;
    flex-direction:column;

    gap:6px;

    margin-top:10px;
}

.tahap-download-link{
    display:inline-flex;
    align-items:center;

    color:#990000;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.tahap-download-link .glyphicon{
    margin-right:7px;
}

.tahap-download-link:hover,
.tahap-download-link:focus{
    color:#D4AF37;

    text-decoration:none;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .tahap-list{
        display:block;
    }

    .tahap-item{
        margin-bottom:15px;
    }

    .tahap-item:last-child{
        margin-bottom:0;
    }

}

/* Catatan */
.tahap-general-note{
    max-width:1000px;

    margin:25px auto 0;
    padding:18px 20px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-left:3px solid #870000;

    border-radius:10px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    font-size:14px;
    line-height:1.5;

    color:#111111;
}


/* =====================================================
   PENGUMUMAN
===================================================== */

.pengumuman-section{
    background:#ffffff;
}

.pengumuman-box{
    max-width:800px;

    margin:0 auto;

    display:flex;
    align-items:center;

    padding:30px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.pengumuman-icon{
    flex-shrink:0;

    width:60px;
    height:60px;

    margin-right:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#990000;

    color:#ffffff;

    font-size:22px;
}

.pengumuman-content h3{
    margin:0 0 8px;

    font-family:'Poppins',sans-serif;

    font-size:20px;
    font-weight:700;

    color:#7A0019;
}

.pengumuman-content p{
    margin:0 0 18px;

    font-size:14px;
    line-height:1.6;

    color:#111111;
}

.pengumuman-button{
    display:inline-flex;
    align-items:center;

    padding:8px 16px;

    background:#990000;
    color:#ffffff;

    border-radius:30px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.pengumuman-button .glyphicon{
    margin-left:8px;
    font-size:10px;
}

.pengumuman-button:hover,
.pengumuman-button:focus{
    background:#D4AF37;
    color:#7A0019;

    text-decoration:none;

    transform:translateY(-2px);

    box-shadow:0 6px 15px rgba(212,175,55,.2);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .pengumuman-box{
        display:block;

        padding:25px;

        text-align:center;
    }

    .pengumuman-icon{
        margin:0 auto 18px;
    }

}


/* =====================================================
   DAFTAR ULANG
===================================================== */

.daftar-ulang-section{
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.50),
        rgba(255,255,255,0.10)
    );
}

.daftar-ulang-grid{
    max-width:1000px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.daftar-ulang-box{
    padding:28px 25px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    transition:all .25s ease;
}

.daftar-ulang-box:hover{
    transform:translateY(-4px);

    border-color:#990000;

    box-shadow:0 10px 25px rgba(153,0,0,.08);
}

.daftar-ulang-box h3{
    margin:0 0 20px;

    font-family:'Poppins',sans-serif;

    font-size:19px;
    font-weight:700;

    color:#7A0019;
}


/* =====================================================
   TABLE
===================================================== */

.daftar-ulang-table-wrapper{
    width:100%;

    overflow-x:auto;
}

.daftar-ulang-table{
    width:100%;

    border-collapse:collapse;

    font-size:14px;

    color:#111111;
}

.daftar-ulang-table th,
.daftar-ulang-table td{
    padding:10px 12px;

    border-bottom:1px solid #E5E5E5;
}

.daftar-ulang-table thead th{
    background:#F8F9FA;

    font-weight:700;

    color:#444444;
}

.daftar-ulang-table th:first-child,
.daftar-ulang-table td:first-child{
    width:50px;

    text-align:center;
}

.daftar-ulang-table th:last-child,
.daftar-ulang-table td:last-child{
    width:150px;

    text-align:right;

    white-space:nowrap;
}

.daftar-ulang-table tbody tr:last-child td{
    border-bottom:0;
}

.daftar-ulang-table tfoot th{
    padding-top:13px;

    border-top:2px solid #E5E5E5;
    border-bottom:0;

    color:#990000;
}


/* =====================================================
   KETENTUAN
===================================================== */

.daftar-ulang-rules{
    margin:0;

    padding-left:23px;

    font-size:14px;
    line-height:1.7;

    color:#111111;
}

.daftar-ulang-rules li{
    padding-left:5px;

    margin-bottom:12px;
}

.daftar-ulang-rules li:last-child{
    margin-bottom:0;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .daftar-ulang-grid{
        display:block;
    }

    .daftar-ulang-box{
        margin-bottom:15px;
    }

    .daftar-ulang-box:last-child{
        margin-bottom:0;
    }

}


/* =====================================================
   NARAHUBUNG
===================================================== */

.narahubung-section{
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.50),
        rgba(255,255,255,0.10)
    );
}

.narahubung-list{
    max-width:1000px;

    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);

    gap:20px;
}

.narahubung-item{
    display:flex;
    align-items:center;

    padding:28px 30px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-radius:16px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    transition:all .25s ease;
}

.narahubung-item:hover{
    transform:translateY(-4px);

    border-color:#990000;

    box-shadow:0 10px 25px rgba(153,0,0,.08);
}

.narahubung-icon{
    flex-shrink:0;

    width:55px;
    height:55px;

    margin-right:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#990000;

    color:#ffffff;

    font-size:20px;
}

.narahubung-content{
    min-width:0;
}

.narahubung-label{
    display:block;

    margin-bottom:5px;

    color:#777777;

    font-size:11px;
    font-weight:700;

    letter-spacing:1.5px;
}

.narahubung-content h3{
    margin:0 0 5px;

    font-family:'Poppins',sans-serif;

    font-size:19px;
    font-weight:700;

    color:#7A0019;
}

.narahubung-content p{
    margin:0 0 12px;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}

.narahubung-link{
    display:inline-flex;
    align-items:center;

    color:#990000;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.narahubung-link .glyphicon{
    margin-left:8px;
    font-size:10px;
}

.narahubung-link:hover,
.narahubung-link:focus{
    color:#D4AF37;

    text-decoration:none;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .narahubung-list{
        display:block;
    }

    .narahubung-item{
        margin-bottom:15px;
    }

    .narahubung-item:last-child{
        margin-bottom:0;
    }

}

/* =====================================================
   PENGUMUMAN SELEKSI
===================================================== */

.penta-announcement{
    padding:30px 0;
}

.penta-announcement-box{
    max-width:800px;

    margin:0 auto;
    padding:25px 50px;

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.penta-announcement-heading{
    margin-bottom:25px;

    text-align:center;
}

.penta-announcement-heading h1{
    margin:0 0 12px;

    font-family:'Poppins',sans-serif;

    font-size:25px;
    font-weight:700;

    color:#990000;
}

.penta-announcement-heading p{
    margin:0 0 5px;

    font-size:15px;
    line-height:1.25;

    color:#111111;
}

.penta-announcement-heading span{
    display:block;
    
    font-size:14px;
    line-height:1.25;

    color:#555555;
}


/* FORM */

.penta-form-group{
    margin-bottom:20px;
}

.penta-form-group label{
    display:block;

    margin-bottom:5px;

    font-size:14px;
    font-weight:700;

    color:#111111;
}

.penta-form-group input{
    width:100%;
    height:48px;

    padding:10px 14px;

    border:1px solid #D5D5D5;
    border-radius:10px;

    background:#ffffff;

    font-size:15px;
    color:#111111;

    box-sizing:border-box;

    transition:all .25s ease;
}

.penta-form-group input:focus{
    outline:none;

    border-color:#990000;

    box-shadow:0 0 0 3px rgba(153,0,0,.08);
}


/* BUTTON */

.penta-announcement-button{
    width:100%;

    height:35px;

    border:0;
    border-radius:10px;

    background:#990000;
    color:#ffffff;

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    transition:all .25s ease;
}

.penta-announcement-button:hover,
.penta-announcement-button:focus{
    background:#D4AF37;
    color:#7A0019;

    outline:none;
}


/* PASSWORD INFO */

.penta-password-info{
    margin-top:15px;

    text-align:center;

    color:#555555;
}

.penta-password-info p{
    margin:0 0 4px;

    font-size:14px;
}

.penta-password-info span{
    font-size:13px;
}


/* ERROR */

.penta-announcement-error{
    margin-bottom:20px;
    padding:12px 15px;

    background:#F8F9FA;

    border:1px solid #DDDDDD;
    border-left:3px solid #AAAAAA;
    border-radius:0 8px 8px 0;

    font-size:14px;
    line-height:1.5;

    color:#444444;
}


/* MOBILE */

@media (max-width:767px){

    .penta-announcement{
        padding:30px 0;
    }

    .penta-announcement-box{
        margin:0 15px;
        padding:35px 25px;
    }

    .penta-announcement-heading h1{
        font-size:25px;
    }

    .penta-announcement-heading p{
        font-size:15px;
    }

}


/* =====================================================
   HASIL PENGUMUMAN
===================================================== */

.penta-result-content{
    max-width:800px;

    margin:0 auto;
    padding:25px 25px;

    background:#ffffff;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.penta-result-heading{
    margin-bottom:25px;
}

.penta-result-heading h1{
    margin:0 0 20px;

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:25px;
    font-weight:700;
    
    letter-spacing:5px;

    color:#990000;
}

.penta-result-heading p{
    text-align: center;
    line-height:1;
    font-size:14px;
    font-style:italic;
    
    color:#555555;
}

.penta-student-info{
    max-width:800px;

    margin-top:20px;
    padding:25px 25px;

    background:#F8F9FA;

    border:1px solid #E5E5E5;
    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.penta-info-row{
    display:flex;

    padding:6px 0;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}

.penta-info-row span{
    width:180px;

    flex-shrink:0;

    color:#555555;
}

.penta-info-row strong{
    color:#111111;
}


/* =====================================================
   HASIL
===================================================== */

.penta-result{
    padding:25px 28px;

    border-radius:12px;

    font-size:14px;
    line-height:1.6;

    color:#111111;
}

.penta-result.success{
    background:#F8F9FA;

    border-left:4px solid #990000;
}

.penta-result.failed{
    background:#F8F9FA;

    border-left:4px solid #AAAAAA;
}

.penta-result.pending{
    background:#F8F9FA;
    border-left:4px solid #D4AF37;
}

.penta-result.pending h2{
    margin:0 0 18px;

    font-family:'Poppins',sans-serif;

    font-size:21px;
    font-weight:700;

    color:#D4AF37;
}

.penta-result.isiPending{
    margin-top:20px;
    padding:10px 13px;

    background:#ffffff;

    border:1px solid #E5E5E5;

    border-radius:0 8px 8px 0;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}

.penta-result.isiPending p{
    margin:0 0 10px;
}

.penta-result.isiPending p:last-child{
    margin-bottom:0;
}

.penta-result h2{
    margin:0 0 18px;

    font-family:'Poppins',sans-serif;

    font-size:21px;
    font-weight:700;

    color:#990000;
}

.penta-result.failed h2{
    color:#444444;
}

.penta-result p{
    margin:0 0 15px;
}

.penta-result ol{
    margin:0 0 20px;

    padding-left:22px;

    line-height:1.7;
}


/* =====================================================
   CATATAN HASIL
===================================================== */

.penta-result-note{
    margin-top:20px;
    padding:10px 13px;

    background:#ffffff;

    border:1px solid #E5E5E5;
    border-left:3px solid #AAAAAA;

    border-radius:0 8px 8px 0;

    font-size:14px;
    line-height:1.5;

    color:#111111;
}

.penta-result-note strong{
    color:#444444;
}

.penta-result-note p{
    margin:4px 0 0;
}


/* =====================================================
   TOMBOL HASIL
===================================================== */

.penta-result-button{
    display:inline-flex;
    align-items:center;

    margin-top:5px;
    padding:8px 16px;

    background:#990000;
    color:#ffffff;

    border-radius:10px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:all .25s ease;
}

.penta-result-button .glyphicon{
    margin-left:8px;

    font-size:10px;
}

.penta-result-button:hover,
.penta-result-button:focus{
    background:#D4AF37;
    color:#7A0019;

    text-decoration:none;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:767px){

    .penta-announcement-box{
        margin:0 15px;
        padding:35px 25px;
    }

    .penta-info-row{
        display:block;
    }

    .penta-info-row span{
        display:block;

        width:auto;

        margin-bottom:2px;

        font-size:13px;
    }

    .penta-info-row strong{
        display:block;
    }

    .penta-result{
        padding:20px;
    }

    .penta-result h2{
        font-size:19px;
    }

}