/* ===================================================================
   UTILITIES/BORDERS.CSS
   Border and Corner Utilities
   =================================================================== */
/* ===== 9. BORDERS & CORNERS ===== */

/* ----- 9.1 Border Radius ----- */
.rounded {
    border-radius: 5px !important;
}

/* ----- 9.2 Border Sides ----- */
.border-top {
    border-top: 1px solid #DADADA !important;
}

.border-bottom {
    border-bottom: 1px solid #DADADA !important;
}

.border-left {
    border-left: 1px solid #DADADA !important;
}

.border-right { 
    border-right: 1px solid #DADADA; 
}

/* ----- 9.3 Special Border Cases ----- */
.header-no-border-bottom {
    border-bottom: none !important;
}


/* ===== 114. BORDER UTILITIES ===== */

/* ----- 114.1 Border Base ----- */
.border {
    border: 1px solid #dee2e6 !important;
}

/* ----- 114.2 Border Sides ----- */
.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

/* ----- 114.3 Border Radius ----- */
.rounded {
    border-radius: 0.25rem !important;
}




/* ===== BOOTSTRAP BORDER REPLACEMENTS ===== */

/* Border */
.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.border-top-0 { border-top: 0 !important; }
.border-end { border-right: 1px solid #dee2e6 !important; }
.border-end-0 { border-right: 0 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.border-bottom-0 { border-bottom: 0 !important; }
.border-start { border-left: 1px solid #dee2e6 !important; }
.border-start-0 { border-left: 0 !important; }

/* Border Radius */
.rounded { border-radius: 0.25rem !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-1 { border-radius: 0.2rem !important; }
.rounded-2 { border-radius: 0.25rem !important; }
.rounded-3 { border-radius: 0.3rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }
.rounded-top { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; }
.rounded-end { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; }
.rounded-bottom { border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }
.rounded-start { border-bottom-left-radius: 0.25rem !important; border-top-left-radius: 0.25rem !important; }
