/*==========================================

2. Border styling and Border Color
3. Box shadow styling




============================================= */









/*+++++++++++++++++++++++++++++++++++++ 

1. Border styling and Border Color

+++++++++++++++++++++++++++++++++++++ */
.h1{
	font-size: 2.5rem;
}
.h2{
	font-size: 2rem;
}
.h3{
	font-size: 2.5rem;
}
.h3{
	font-size: 1.75rem;
}
.h4{
	font-size: 1.5rem;
}
.h5{
	font-size: 1.25rem;
}
.h6{
	font-size: 1rem;
}

/*++++++++++++++++++ List bullest ++++++++++++++++++++ */

/*
1. list-bullet-eye
2. list-bullet-arrow
3. list-target-arrow
4. list-bullet-cirle
5. list-bullet-thumb
6. list-bullet-plane
7. list-bullet-double caret


*/



.list-unstyled li{
	padding-top:5px;
	padding-bottom:5px;
	padding-left:10px;
}
.list_bullet_red li:before{
	color: red;
	transition: all 0.4s ease-in-out;
}
.list_bullet_red li:hover::before {
	color: blue;
	cursor:pointer;
	font-size: 18px;
}

.list_bullet_green li:before{
	color: green;
}
.list_bullet_purple li:before{
	color: #C207CD;
}


/*----list-bullet-eye-- */

.list_bullet{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.list_bullet li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
	cursor:pointer;
}

.list_bullet li:before{
	 font-family: 'fontello';
	content: "\eb04";
	position: absolute;
	left:0;
	font-size: 16px;
   
	
}

/*----list-bullet-arrow-- */

.list_arrow{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_arrow li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
	cursor:pointer;
}
.list_arrow li:before{
	 font-family: 'fontello';
	content: "\f101";
	position: absolute;
	left:0;
	font-size: 16px;
   
	
}

/*----list-target-arrow-- */

.list_target{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_target li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
	cursor:pointer;
}
.list_target li:before{
	 font-family: 'fontello';
	content: "\eb4e";
	position: absolute;
	left:0;
	font-size: 16px;
   
	
}

/*----list-bullet-circle-- */

.list_bullet_cicle{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_bullet_cicle li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
}
.list_bullet_cicle li:before{
	 font-family: 'fontello';
	content: "\f111";
	position: absolute;
	left:0;
	font-size: 16px;
	cursor:pointer;
   
	
}

/*----list-bullet-thumb-- */

.list_bullet_thumb{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_bullet_thumb li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
	cursor:pointer;
}
.list_bullet_thumb li:before{
	 font-family: 'fontello';
	content: "\f164";
	position: absolute;
	left:0;
	font-size: 16px;
   
	
}



/*----list-bullet-plane-- */

.list_bullet_plane{
	padding-left:20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_bullet_plane li{
	padding-left:25px;
	position: relative;
	line-height: 26px;
	cursor:pointer;
}
.list_bullet_plane li:before{
	 font-family: 'fontello';
	content: "\f1d8";
	position: absolute;
	left:0;
	font-size: 16px;
   
	
}


/*----list-bullet-angle-- */

.list_bullet_angle{
	padding-left:10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_bullet_angle li{
	padding-left:25px;
	position: relative;
	line-height: 33px;
	cursor:pointer;
	
}
.list_bullet_angle li:hover{
	color: black;
}
.list_bullet_angle li:before{
	 font-family: 'fontello';
    content: "\e8cf";
    position: absolute;
    left: 0;
    font-size: 20px;
    border-radius: 60px;
    color: #8c8989;
    font-weight: bold;
}



/*----list-bullet-double caret-- */

.list_bullet_double_caret{
	padding-left:10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.list_bullet_double_caret li{
	padding-left:25px;
	position: relative;
	line-height: 33px;
	cursor:pointer;
	
}
.list_bullet_double_caret li:hover{
	color: black;
}
.list_bullet_double_caret li:before{
	 font-family: 'fontello';
    content: "\f101";
    position: absolute;
    left: 0;
    font-size: 20px;
    border-radius: 60px;
    color: #8c8989;
    font-weight: bold;
}






/*+++++++++++++++++++++++++++++++++++++ 

2. Border styling and Border Color

+++++++++++++++++++++++++++++++++++++ */

.border{
	border: 1px solid;
}
.border-top{
	border: 1px solid;
}
.border-bottom{
	border: 1px solid;
}
.border-left{
	border: 1px solid;
}
.border-right{
	border: 1px solid;
}




.border-color{
	border-color: green;
}
.border-top-color{
	border-color: grey;
}
.border-bottom-color{
	border-color: red;
}
.border-left-color{
	border-color: blue;
}
.border-right-color{
	border-color: black;
}


.border-radius{
	border-radius: 50%;
}
.border-radius-4{
	border-radius: 4px;
}
.border-radius-6{
	border-radius: 6px;
}
.border-radius-8{
	border-radius: 8px;
}
.border-radius-10{
	border-radius: 10px;
}



/*+++++++++++++++++++++++++++++++++++++ 

3. Box shadow styling

+++++++++++++++++++++++++++++++++++++ */

.box-shadow{
	box-shadow: 0 0 5px #00000099;
}





