/* UPDATED STYLESHEET 2017 TO BE USED FOR ALL FUTURE CSS 
 FRONT END */
/* BREAKPOINTS */
/* COLORS */
/* light */
/* medium */
/* dark */
/* TYPOPGRAHY */
.typography-header {
  font-family: "Rokkitt", serif;
  text-transform: uppercase;
}
.typography-button, a.button, .pmpro_actionlinks a {
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
}
/* SWATCHES */
a {
  color: #a12641;
}
.swatch1 {
  background-color: #fff;
  color: #787878;
}
.swatch1 p {
  color: #787878;
}
.swatch1 h1, .swatch1 h2, .swatch1 h3, .swatch1 h4, .swatch1 h5, .swatch1 h6 {
  color: #a12641;
}
.swatch2 {
  background-color: #24262b;
  color: #fff;
}
.swatch2 p {
  color: #fff;
}
.swatch2 h1, .swatch2 h2, .swatch2 h3, .swatch2 h4, .swatch2 h5, .swatch2 h6 {
  color: #fff;
}
/* INPUT HEIGHTS */
/* RESPONSIVE UTILITIES */
.hidden-xs {
  display: inherit;
}
@media screen and (max-width: 320px) {
  .hidden-xs {
    display: none;
  }
}
.hidden-sm {
  display: inherit;
}
@media screen and (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}
.hidden-md {
  display: inherit;
}
@media screen and (max-width: 992px) {
  .hidden-md {
    display: none;
  }
}
.hidden-lg {
  display: inherit;
}
@media screen and (min-width: 992px) {
  .hidden-lg {
    display: none;
  }
}
.hidden-xl {
  display: inherit;
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.text-center {
  text-align: center;
}
/* HEADER */
#masthead {
  background-color: #fff;
}
#masthead .primary-menu-toggle {
  color: #a12641;
}
#masthead .nav-menu-primary li a, #masthead .nav-menu-primary ul li a {
  color: #a12641;
}
a.button {
  background-color: #a12641;
  color: #fff;
  display: block;
  margin-bottom: 1em;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  a.button {
    display: inline-block;
  }
}
/* PAGINATION */
/* .paginationDiv { border: 1px solid #ccc; border-left: none; border-right: none; padding: 1rem; }
 .paginationDiv a, .paginationDiv span { display: inline-block; padding: 5px 10px; }
 .paginationDiv a.active, .paginationDiv span.current { background: #900; color: #fff; float: left;}
 */
.paginationDiv {
  padding: 2em 0;
}
.paginationDiv a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #adadad;
  background-color: #fff;
  margin-right: -1px;
}
.paginationDiv a:hover, .paginationDiv a.active {
  background-color: #a12641;
  color: #fff;
}
/* STRUCTURE */
.footer-social a {
  color: #adadad;
}
.footer-social a:hover {
  color: #fff !important;
}
/* The switch - the box around the slider */
.switch, .checkbox-slider--b label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
  /* Hide default HTML checkbox */
  /* Rounded sliders */
}
.switch input, .checkbox-slider--b label input {
  display: none;
}
.switch span, .checkbox-slider--b label span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a12641;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 28px;
}
.switch span:before, .checkbox-slider--b label span:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}
.switch input:checked + span, .checkbox-slider--b label input:checked + span {
  background-color: #68a025;
}
.switch input:focus + span, .checkbox-slider--b label input:focus + span {
  box-shadow: 0 0 1px #68a025;
}
.switch input:checked + span:before, .checkbox-slider--b label input:checked + span:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}
.switch .slider.round, .checkbox-slider--b label .slider.round {
  border-radius: 28px;
}
.switch .slider.round:before, .checkbox-slider--b label .slider.round:before {
  border-radius: 50%;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a12641;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #68a025;
}
input:focus + .slider {
  box-shadow: 0 0 1px #68a025;
}
input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 28px;
}
.slider.round:before {
  border-radius: 50%;
}
/* PAID MEMBERSHIP PRO */
.pmpro_box {
  margin-bottom: 2em;
}
.pmpro_box table {
  background-color: #fff;
}
.pmpro_box table th {
  font-weight: 700;
  background-color: #ddd;
  padding: 10px;
}
.pmpro_box table td {
  padding: 10px;
  vertical-align: top;
}
.pmpro_box table td .pmpro_actionlinks {
  border-top: 1px solid #787878;
}
.pmpro_actionlinks {
  padding-top: 1em;
  margin-top: 1em;
}
.pmpro_actionlinks a {
  background-color: #a12641;
  color: #fff;
  margin-bottom: 1em;
  border-radius: 6px;
  padding: 7px 15px;
}
.pmpro_box > h3 {
  position: relative;
  padding: 0 0 8px;
  text-align: left;
  text-transform: none;
  margin: 0 0 15px;
  display: block;
  border-bottom: 1px solid #fff;
  overflow: visible;
}
.pmpro_box > h3:before {
  position: absolute;
  width: 54px;
  bottom: -1px;
  left: 0;
  content: '';
  height: 1px;
  background: #983421;
}
/**** MODALS ****/
.modal-body {
  background: #fefefe;
}
.modal-dialog .absolutely_free_popup.pop-eye h3 {
  margin-top: 0;
  padding-top: 0;
  text-align: left;
}
.modal-dialog .absolutely_free_popup .popup_logo {
  padding-left: 25px;
  width: 150px;
  margin-top: -10px;
}
/* PAGE SPECIFIC */
.jobdetail_list h4 {
  text-transform: none;
  font-size: 20px;
  color: #a12641;
  margin: 0;
  padding: 12px 0;
}
.jobdetail_list ul {
  list-style-type: disc;
  padding-left: 28px;
  margin-bottom: 30px;
}
.page-id-2330 ul.logos {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-id-2330 ul.logos li {
  display: inline;
  padding-right: 0.5em;
}
.page-id-2330 ul.logos li img {
  height: 95px;
  width: auto;
}
.page-id-2666 .small-block-grid-1 li {
  background-repeat: no-repeat;
  background-size: 128px;
  background-position: center top;
  padding-top: 128px;
}
.page-id-2666 .small-block-grid-1 li#chu {
  background-image: url(../../images/icon-chu.png);
}
.page-id-2666 .small-block-grid-1 li#gi {
  background-image: url(../../images/icon-gi.png);
}
.page-id-2666 .small-block-grid-1 li#jin {
  background-image: url(../../images/icon-jin.png);
}
.page-id-2666 .small-block-grid-1 li#makoto {
  background-image: url(../../images/icon-makoto.png);
}
.page-id-2666 .small-block-grid-1 li#meiyo {
  background-image: url(../../images/icon-meiyo.png);
}
.page-id-2666 .small-block-grid-1 li#rei {
  background-image: url(../../images/icon-rei.png);
}
.page-id-2666 .small-block-grid-1 li#yu {
  background-image: url(../../images/icon-yu.png);
}
