.section_offerings {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding-top: 100px;
}
.offerings_title {
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    margin: 10px 0;
}
.offerings_text {
    font-size: 20px;
    line-height: 25px;
    margin: 10px 0;
}
.section_offerings_half {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.section_offerings_half img {
    width: 100%;
    height: auto;
}

/*--- basic info ---*/
#offerings_inperson_no {
    display: none;
}

/*--- pricing ---*/
#offerings_person_fee_show {
    display: none;
}

/*--- table ---*/
#offerings_table {
    margin: 0 0 20px 0;
}
.dataTable_offerings tr td:first-child {
    border-left: 1px solid #dedee2;
}
.dataTable_offerings tr td:last-child {
    border-right: 1px solid #dedee2;
}
.dataTable_offerings tr.odd td {
    background: #F2EFFE;
}
.dataTable_offerings tr td,
.dataTable_offerings tr th {
    vertical-align: middle;
    border-bottom: 1px solid #dedee2;
}
.offering_img {
    width: 100px;
    height: auto;
    float: left;
}
.offering_status {
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
}
.offering_status_public {
    background-color: #6E6EEF;
    text-align: center;
}
.offering_status_private {
    background-color: #FFB226;
    text-align: center;
}
.offering_name_title {
    font-size: 15px;
    line-height: 19px;
    font-weight: bold;
    margin-bottom: 5px;
    min-width: 200px;
}
.offering_name_text {
    font-size: 13px;
    line-height: 17px;
}
.offering_name_more:hover {
    cursor: pointer;
    text-decoration: underline;
}
.offering_name_more_text {
    display: none;
}
.offerings_options {
    width: 154px;
    padding: 5px !important;
}
.offering_optional_fee {
    display: table;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
}
.offering_optional_fee_left {
    float: left;
    margin-right: 10px;
}
.offering_optional_fee_right {
    float: right;
}
.offerings_options img {
    display: inline-block;
    width: 18px;
    height: auto;
    margin: 0 0 0 1px;
    padding: 3px;
    border-radius: 5px;
}
.dataTable_offerings tr.odd .offerings_options img {
    background: #FFFFFF;
}
.dataTable_offerings tr.even .offerings_options img {
    background: #F2EFFE;
}
.offerings_options img:hover {
    cursor: pointer;
    background: rgba(110, 110, 239, 0.2) !important;
}
#offerings_filter {    
    display: table;
    float: right;
    border: 2px solid #DDE2EF;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    color: #333;
	background: #fff;
    margin-bottom: 20px;
}
#offerings_filter:hover {
    cursor: pointer;
    border: 2px solid #6E6EEF;
}
#offerings_filter img {
    float: left;
}
#offerings_filter span {
    float: left;
    padding: 3px 0 0 5px;
}
#offerings_filter_container {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px #ccc;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* So it doesnt overlap on datatable*/
    z-index: 5;
}
#offerings_filter_container .button {
    font-weight: bold;
}
.round_button {
    display: table;
    font-size: 13px;
    font-weight: bold;
    padding: 7px 20px;
    border-radius: 20px;
    border: 2px solid #DDE2EF;
}
.round_button_active,
.round_button:hover {
    cursor: pointer;
    color: #6E6EEF;
    background: #F2EFFE;
    border: 2px solid #6E6EEF;
}
.round_button_inline {
    display: table;
    float: left;
    margin-right: 10px;
}

/* select pure style */
.select-wrapper {
    margin: auto;
    max-width: 600px;
    width: calc(100% - 40px);
  }
  
  .select-pure__select {
    align-items: center;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    justify-content: left;
    min-height: 44px;
    padding: 5px 10px;
    position: relative;
    transition: 0.2s;
    width: 100%;
  }
  .select-pure__options {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: #363b3e;
    display: none;
    left: 0;
    max-height: 221px;
    overflow-y: scroll;
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 5;
  }
  
  .select-pure__select--opened .select-pure__options {
    display: block;
  }
  
  .select-pure__option {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    box-sizing: border-box;
    height: 44px;
    line-height: 25px;
    padding: 10px;
  }
  
  .select-pure__option--selected {
    color: #e4e4e4;
    cursor: initial;
    pointer-events: none;
  }
  
  .select-pure__option--hidden {
    display: none;
  }
  
  .select-pure__selected-label {
    padding: 7px 15px;
    background: #6E6EEF;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
    cursor: initial;
    display: inline-block;
    margin: 5px 10px 5px 0;
  }
  
  .select-pure__selected-label:last-of-type {
    margin-right: 0;
  }
  
  .select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
  }
  
  .select-pure__selected-label i:hover {
    color: #e4e4e4;
  }

  .genre-remove-i::before {
    content: '✕'; 
    color: #fff;
    font-weight: 300;
  }
  
  .select-pure__autocomplete {
    background: #f9f9f8 !important;
    border: 1px solid #e4e4e4 !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 1px !important;
    border-top: none !important;
    box-sizing: border-box !important;
    font-size: 13px;
    outline: none;
    padding: 10px;
    width: 100%;
  }

/* Dropdown Button */
.dropbtn {
	cursor: pointer;
    height: auto;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
	background-color: #4749A3;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
      background-color: #ddd;
      cursor: pointer;
}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}

/*--------------- MEDIA QUERIES ---------------------*/
@media only screen and (max-width: 600px) {
    .section_offerings {
        padding-top: 20px;
    }
    .section_offerings_half {
		display: block;
		width: 100%;
	}


    /*--- CUSTOM DATA TABLES ---*/    
	.dataTable_offerings, table, thead, tbody, th, td, tr { 
		display: block; 
	}
	.dataTable_offerings thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.dataTable_offerings tr { border: 1px solid #ccc; }
	.dataTable_offerings td { 
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 40% !important; 
	}
	
	.dataTable_offerings td:before { 
		position: absolute;
        top: 50%;
        left: 10px;
        transform: translate(0, -50%);
        padding-right: 10px;
        white-space: nowrap;
	}
	
	/*
	Label the data
	*/
	.dataTable_offerings td:nth-of-type(1):before { content: "Offerings"; }
	.dataTable_offerings td:nth-of-type(2):before { content: "Status"; }
	.dataTable_offerings td:nth-of-type(3):before { content: "Name"; }
	.dataTable_offerings td:nth-of-type(4):before { content: "Fee"; }
	.dataTable_offerings td:nth-of-type(5):before { content: "Duration"; }
	.dataTable_offerings td:nth-of-type(6):before { content: "Promotion"; }
	.dataTable_offerings td:nth-of-type(7):before { content: "Last modified"; }
	.dataTable_offerings td:nth-of-type(8):before { content: "Actions"; }

    .dataTable tbody tr,
     .dataTable_offerings td {
        background: #F2EFFE !important;
    }
    .offering_img {
        margin: 0;
        display: table;
        float: none;
    }
    .dataTable_offerings tr td {
        text-align: left !important;
    }
    .offerings_options {
        width: auto;
    }

}