/* make items in columns vertically center, put this in the row css */
@media only screen and (min-width: 981px) {
	.vertical-center-row {
	  display: flex;
	  align-items: center;
	}
}
/* if you have background color set to the column, above vertical-center-row won't work.  Use this in the col you want to center and set equal column height in divi's row */
@media only screen and (min-width: 981px) {
	.vertical-center-col {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}
}
/* Put it in the row css */
@media only screen and (max-width: 980px) {
  .rev-order-2col-row {
    display: flex;
    flex-wrap: wrap;
  }

  .rev-order-2col-row .et_pb_column:nth-child(2) {
    order: 1;
  }

  .rev-order-2col-row .et_pb_column:nth-child(1) {
    order: 2;
  }
}

/* for row that you want to make all height of blur the same, make sure you have also set the qualize height setting in the row module */
.equal_height_blur_row .et_pb_column {
  display: flex;
}

/* auto layout  -- Put it in the row css */
.flex-wrap .et_pb_column{    
    display: flex;
    flex-wrap: wrap;  
	justify-content:center;
    gap: 1rem;
}
.flex-wrap .et_pb_module{
    display: inline-block;
}

/* table overflow -- Put it in the module css */
@media all and (max-width:980px){
	.overflow-table .et_pb_text_inner{
		overflow: scroll;
		width: 88vw;
		max-width: none;
		overflow: auto;    
	}

	.overflow-table table{
		width: 800px; 
	}
}

/* width */
.et_pb_section > ::-webkit-scrollbar {
  width: 2px;
  height: 8px;
}
.et_pb_section > ::-webkit-scrollbar:hover {
  width: 3px;
  height: 3px;
}

/* Track */
.et_pb_section > ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #999999; 
  border-radius: 10px;
}
 
/* Handle */
.et_pb_section > ::-webkit-scrollbar-thumb {
  background: #5f82fa; 
  border-radius: 10px;
}