/*------------------------------------------------------------------
provider.css
Last edited: 8/26/22

[Table of contents]

1. LAYOUT 1 

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)

[Notes]



-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. LAYOUT 1
-------------------------------------------------------------------*/
/*.band-provider .provider-wrapper {
  border-bottom: 1px solid #e3e3e3;
  margin: 0 0 25px;
  padding: 0 0 25px;
}*/
.band-provider .provider-item {
  align-items: center;
  border: 1px solid #e3e3e3;
  background-color: #FAFAFA;
  display: flex; 
  flex-direction:  row;
  justify-content: space-between;
  margin-bottom: 8px;
  min-height: 150px;
  padding: 0 20px;
}
.band-provider .provider-item:hover {
	background-color: #00669A;
}
.band-provider .provider-item:hover p{
	color: #fff;
}

/*.band-provider .provider-item .detail-items {
	padding-left: 15px;
}*/
.band-provider .provider-item .detail-items p{
	margin: 0px 0px 0.3em;
}
.band-provider .provider-item .detail-items .item a:hover{
	color: #fff;
}

.band-provider .provider-item img{
	height: 125px;
	border: 1px solid #e3e3e3;
	margin: 10px -10px 10px 10px;
}



/* add mobile CSS here */

/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {

}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {
	.band-provider [class*="gutter-"].row [class^="col"]:nth-of-type(odd)
   {
		padding-left: 15px;
	}
	.band-provider [class*="gutter-"].row [class^="col"]:nth-of-type(even) {
		padding-right: 15px;
	}  
  .band-provider [class*="gutter-"].row [class^="col"]:last-of-type:nth-of-type(odd) {
    padding-right: 30px;
  }     
}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}