/****** MYLISTING PRICING TABLE SWITCHER ******/
/**** MAIN CONTAINER ****/
.job_listing_packages>.row>div {
    margin-bottom: unset !important;
}
/** SWITCHER TABS **/
.row.selection-buttons {
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
}
/**** SWITCH ****/
.packageswitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-bottom:1px;
}
/** HIDE THE DEFAULT HMTL CHECKBOX **/
.packageswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/**** SLIDER ****/
.packageslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--accent);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50px;
}
/** SWITCHER ICON COLOR **/
.packageslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius:50%;
}
/** ACTIVE SWITCHER **/
/* BACKGROUND */
input:checked + .packageslider {
  background-color: #b8545575;
}
/* BOX SHADOW */
input:focus + .packageslider {
  box-shadow: 0 0 1px #000;
}
/* ACTIONS */
input:checked + .packageslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


