/* ====== FONTS ======= */

// color: #ff4800;

/* ==================== 01. Basics ==================== */
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  color: #393939;
}

p {
  margin-bottom: 8px !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

h1, .h1 {
  font-size: 30px;
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-top: 10px;
  text-transform: uppercase !important;
}

h2, .h2 {
  font-size: 24px;
  line-height: 1.5em;
  margin-bottom: 10px;
  margin-top: 10px;
  text-transform: capitalize !important;
}

h3, .h3 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
    text-transform: capitalize !important;
}

h4, .h4 {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
    text-transform: capitalize !important;
}

h5, .h5 {
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 0;
    text-transform: capitalize !important;
}

h6, .h6 {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

/* Responsive headings */
.bigtext h1, h1.bigtext,
.bigtext h2, h2.bigtext,
.bigtext h3, h3.bigtext,
.bigtext h4, h4.bigtext,
.bigtext h5, h5.bigtext,
.bigtext h6, h6.bigtext {
  margin-bottom: 10px;
}

.bigtext h1, h1.bigtext {
  font-size: 90px;
  line-height: 1em;
}

.bigtext h2, h2.bigtext {
  font-size: 75px;
  line-height: 1em;
}

.bigtext h3, h3.bigtext {
  font-size: 60px;
  line-height: 1em;
}

.bigtext h4, h4.bigtext {
  font-size: 48px;
  line-height: 1.25em;
}

.bigtext h5, h5.bigtext {
  font-size: 36px;
  line-height: 1.25em;
}

.bigtext h6, h6.bigtext {
  font-size: 24px;
  line-height: 1.5em;
}

.badge-btn {
  height: 53px;
  width: 180px;
}

@media only screen and (max-width: 1000px) {

  /* Responsive headings */
  .bigtext h1, h1.bigtext {
    font-size: 60px;
  }

  .bigtext h2, h2.bigtext {
    font-size: 48px;
  }

  .bigtext h3, h3.bigtext {
    font-size: 36px;
  }

  .bigtext h4, h4.bigtext {
    font-size: 30px;
  }

  .bigtext h5, h5.bigtext {
    font-size: 24px;
  }

  .bigtext h6, h6.bigtext {
    font-size: 18px;
  }

  .badge-btn {
    margin-bottom: 8px;
  }

  #fb-img-id {
    display:       block !important;
    margin-top:    0px   !important;
    margin-bottom: 24px  !important;
    margin-left:   24px  !important;
  }

  .page-builder-row-section.page-builder-row-section-3 {
    background: url('https://iagsdc.org/sites/iagsdc.org/files/iagsdc-home-01.jpg') 50% 50% no-repeat fixed !important;
    background-size: 999px 666px !important;
  }

}

@media only screen and (max-width: 479px) {

  /* Responsive headings */
  .bigtext h1, h1.bigtext {
    font-size: 36px;
  }

  .bigtext h2, h2.bigtext {
    font-size: 30px;
  }

  .bigtext h3, h3.bigtext {
    font-size: 24px;
  }

  .bigtext h4, h4.bigtext {
    font-size: 18px;
  }

  .bigtext h5, h5.bigtext {
    font-size: 16px;
  }

  .bigtext h6, h6.bigtext {
    font-size: 14px;
  }

  .badge-btn {
    margin-bottom: 8px;
  }

  #logo-block-id {
    height:268px !important;
    width:347px !important;
  }

  .page-builder-row-section.page-builder-row-section-3 {
    background: url('https://iagsdc.org/sites/iagsdc.org/files/iagsdc-home-01.jpg') 50% 50% no-repeat fixed !important;
    background-size: 477px 318px !important;
  }

}

/* Links */
a {
  color: #E33D00;
  font-weight: bold;
  text-decoration: none;
}


a:hover {
  transition: all 0.3s ease 0s !important;
  color: #ff4800;
  text-decoration: underline !important;
}

/* Smooth hover effects */
a,
a i,
button,
input[type="submit"] {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

a:hover,
a i:hover,
button:hover,
input[type="submit"]:hover {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

/* Cursor styling for icons */
i {
  cursor: default;
}

a i {
  cursor: pointer;
}

/* Lists */
.ol {
  list-style-type: decimal-leading-zero;
  list-style-position: outside;
  margin-left: 2em;
  margin-bottom: 25px;
}

.ol ol,
.ul ol {
  list-style-type: decimal-leading-zero;
  list-style-position: outside;
}

.ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1em;
  margin-bottom: 25px;
}

.ol ul,
.ul ul {
  list-style-type: disc;
  list-style-position: outside;
}

.ol ol,
.ol ul,
.ul ol,
.ul ul {
  margin-left: 2em;
}

/* Typographic styles */
.italic, em {
  font-style: italic;
}

.bold, b, strong {
  font-weight: 600;
}

.thin {
  font-weight: 300;
}

.x-thin {
  font-weight: 100;
}

.serif {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.uber {
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Text colors */
.text-color {
  color: #ff4800;
}

.text-light {
  color: #bbbbbb;
}

.text-dark {
  color: #111111;
}

.text-white {
  color: #ffffff;
}

/* Dropcap */
.dropcap {
  float: left;
  color: #111111;
  font-size: 50px;
  line-height: 50px;
  padding-right: 8px;
  padding-left: 3px;
}

/* Quotes */
blockquote {
  font-style: italic;
  font-weight: 400;
  padding: 25px;
  background: #fafafa;
  border-left: 5px solid #eeeeee;
  margin-bottom: 35px;
}

blockquote small {
  display: block;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  font-style: normal;
}

blockquote small:before {
  content: '\2014 \00A0';
}


q:before {
  content: '\201C';
}

q:after {
  content: '\201D';
}

/* Buttons */
/* Reset */
button,
input[type="submit"] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
}

input[type="submit"] {
  border: 0;
  width: auto;
}

/* Fixing the broken lineheight model in FF */
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Buttons styling */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 25px;
  padding: 12px 25px;
  color: #ffffff;
  background: #111111;
  text-decoration: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

a.btn:hover,
button:hover,
input[type="submit"]:hover,
a .icon:hover {
  color: #ffffff;
  background: #ff4800;
  text-decoration: none;
}

button:hover,
input[type="submit"]:hover,
a i:hover {
  cursor: pointer;
}

/* Icon inside a button */
.btn > i {
  font-size: 14px;
  margin-right: 0.5em;
}

/* Button outline style */
.btn.outline, .btn-primary, .btn-default {
  color: #111111;
  background: none;
  border: 2px solid #111111;
  padding: 0px 7px;
}

a.btn.outline:hover,
button.outline:hover,
input[type="submit"].outline:hover, .btn-primary:hover,
.btn-default:hover, .option-set .btn.btn-primary {
  color: #ffffff;
  background: #ff4800;
  border: 2px solid #ff4800;
  border: 2px solid rgba(255,72,0,1);
}

/* Button colors */
.btn.color {
  background: #ff4800;
}

.btn.outline.color,.btn-primary.color {
  color: #ff4800;
  background: none;
  border: 2px solid #ff4800;
}

.btn.light {
  color: #ffffff;
  background: #cccccc;
  background: rgba(255,255,255,0.3);
}

.btn.outline.light, .btn-primary.light {
  color: #ffffff;
  background: none;
  border: 2px solid #cccccc;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn.dark {
  color: #111111;
  background: #aaaaaa;
  background: rgba(17,17,17,0.3);
}

.btn.outline.dark,
.btn-primary.dark {
  color: #111111;
  background: none;
  border: 2px solid #aaaaaa;
  border: 2px solid rgba(17,17,17,0.3);
}

.btn.white {
  color: #111111;
  background: #ffffff;
  border: 2px solid;
}

.btn.outline.white,.btn-primary.white {
  color: #ffffff;
  background: none;
  border: 2px solid #ffffff;
}

/* Headers */
.header {
  position: relative;
  display: block;
  width: 100%;
  height: 640px;
}

.header.large {
  height: 745px;
}

.header.medium {
  height: 480px;
}

.header.small {
  height: 320px;
}


@media only screen and (max-width: 1000px) {

  .header,
  .header.large {
    height: 480px;
  }

  .header.medium {
    height: 320px;
  }

}

/* Header with centered content */
.header-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 740px;
  min-width: 300px;
  text-align: center;
  z-index: 60; /* Should be 50+ because of the bxSlider */
}

/* Background image */
.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Fixed backgrounds only on non-touch devices */
.bg-img.fixed {
  background-attachment: scroll;
}

.no-touch .bg-img.fixed {
  background-attachment: fixed;
}

/* Background images */
.background-one {
  background-image: url('../images/bg-1.jpg');
}

.background-two {
  background-image: url('../images/bg-2.jpg');
}

.background-three {
  background-image: url('../images/bg-3.jpg');
}

.background-four {
  background-image: url('../images/bg-4.jpg');
}

.background-five {
  background-image: url('../images/bg-5.jpg');
}

/* Title */
.title ,.page-builder-row-title{
  text-align: center;
}

.title h1,
.title h2,.page-builder-row-title h2 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
}

.title hr, .page-builder-row-title hr {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #cccccc;
  margin-bottom: 75px;
}

.title.title-light h1,
.title.title-light h2 {
  color: #ffffff;
}

.title.title-light hr {
  background: #555555;
}

/* Title on headers */
.header hr {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  filter: alpha(opacity=50);
  opacity: 0.5;
  margin-bottom: 25px;
}

/* Underline link */
a.underline {
  padding-bottom: 1px;
  border-bottom: 1px dotted #cccccc;
}

a.underline:hover {
  border-bottom: 1px dotted #111111;
}

/* Links for dark backgrounds */
a.inverted:hover {
  color: #ffffff;
}

a.inverted.underline {
  padding-bottom: 1px;
  border-bottom: 1px dotted #555555;
}

a.inverted.underline:hover {
  border-bottom: 1px dotted #ffffff;
}

/* Arrow link */
a.arrow-link {
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

a.arrow-link:before {
  font-family: 'FontAwesome';
  content: '\f054';
  color: #aaaaaa;
  margin-right: 7px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

a.arrow-link:hover,
a.arrow-link:hover:before {
  color: #ff4800;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

/* Positioning for the owlCarousel controls (oc) */
.oc-left,
.oc-right {
  position: absolute;
  top: 50%;
  margin-top: -30px;
}

.oc-left {
  left: 0;
  margin-left: -60px;
}

.oc-right {
  right: 0;
  margin-right: -60px;
}

@media only screen and (max-width: 1220px) {

  .oc-left,
  .oc-right {
    top: 100%;
    margin-top: 20px;
  }

  .oc-left {
    left: 50%;
    margin-left: -40px;
  }

  .oc-right {
    right: 50%;
    margin-right: -40px;
  }

}

/* Styling for the owlCarousel icon controls */
.oc-left i,
.oc-right i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 42px;
  text-align: center;
  color: #cccccc;
}

.oc-left i:hover,
.oc-right i:hover {
  color: #aaaaaa;
}

@media only screen and (max-width: 1220px) {

  .oc-left i,
  .oc-right i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
  }

}

/* Overlay item that is used for portfolio thumbnails and employee images */
.overlay-item {
  position: relative;
  color: #ffffff;
  line-height: 0;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

/* The hover effect */
.o-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: rgba(255,255,255,0.0);
  background: rgba(0,0,0,0.0);
  visibility: visible;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.overlay-item:hover > .o-hover,
.overlay-item a:hover > .o-hover {
  color: rgba(255,255,255,1);
  background: rgba(0,0,0,0.5);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

/* The information inside the hover */
.o-hover span {
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.o-hover em {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0);
  display: inline-block;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.overlay-item:hover > .o-hover em,
.overlay-item a:hover > .o-hover em {
  color: rgba(255,255,255,1);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.o-hover i {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.overlay-item:hover > .o-hover i,
.overlay-item a:hover > .o-hover i {
  color: rgba(255,255,255,1);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.overlay-item:hover > .o-hover i:hover,
.overlay-item a:hover > .o-hover i:hover {
  color: #111111;
  background: #ffffff;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.o-hover i.fa-2x {
  font-size: 2em;
}

.overlay-item:hover > .o-hover i.fa-2x:hover,
.overlay-item a:hover > .o-hover i.fa-2x:hover {
  color: #ffffff;
  background: none;
}

/* Extra info below images used for portfolio thumbnails and employee images */
.e-info {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 15px 15px 25px;
  text-align: center;
}

.e-info h3 {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.e-info p {
  color: #aaaaaa;
  line-height: 20px;
  margin-bottom: 0;
}


/* ==================== 02. Top bar ==================== */
.top-bar {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  background: #111111;
  background: rgba(7,7,7,0.9);
  z-index: 99;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

/* Typographic logo for the top bar */
.tb-logo {
  margin-left: 20px;
}

.tb-logo h1 {
  float: left;
  text-align: left;
  font-size: 13px;
  line-height: 25px;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 0;
}

.tb-logo h1 a {
  text-decoration: none;
  color: #ffffff;
}

.tb-logo h1 a:hover {
  color: #ffffff;
}

/* Image logo for the top bar */
.tb-logo img {
  float: left;
  text-align: left;
  width: auto;
  max-height: 30px;
  margin: 10px 10px 0 0;
}

/* Hiding the the toggle */
.top-bar #toggle,
top-bar .toggle {
  display: none;
}

/* Hiding and showing the submenu items */
.main-navigation ul ul {
  display: none;
}

.main-navigation ul li:hover > ul {
  display: block;
}


/* Styling for the main menu items */
.main-navigation-wrapper {
  float: right;
  text-align: left;
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 25px;
  margin-right:55px;
}

.main-navigation ul {
  position: relative;
  display: table-cell;
  list-style: none;
}

.main-navigation ul:after {
  content: "";
  clear: both;
  display: block;
}

.main-navigation ul li {
  float: left;
}

/* Hover effect */
.main-navigation ul li:hover a {
  color: #ffffff;
}

.main-navigation ul li a {
  display: block;
  padding: 15px 20px;
  color: #777777;
  text-decoration: none;
}
/* Less padding on smaller screens */
@media only screen and (max-width: 1200px){

  .main-navigation ul li a {
    padding: 15px 10px;
  }

}

/* Styling for the sub menu items */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  background: #111111;
  background: rgba(7,7,7,0.9);
  padding: 0 0 10px 0;
  min-width: 170px;
}

.main-navigation ul li.last {
  min-width: 240px;
}

.main-navigation ul ul li {
  float: none;
  position: relative;
}

.main-navigation ul ul li a {
  padding: 0 7px 3px 0 !important;
  color: rgba(255,255,255,0.8)!important;
}

.main-navigation ul ul li a:hover {
  color: #ffffff!important;
}

.main-navigation ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
}

/* Responsive settings for the menu */
@media only screen and (max-width: 1000px) {

  .top-bar {
    padding-top: 0;
  }

  /* The toggle */
  .toggle {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    color: #777777;
    float: right;
    font-family: 'FontAwesome';
    text-align: center;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    overflow: scroll;
    overflow-x: visible;
    overflow-y: visible;
  }

  .toggle:hover {
    color: #ffffff;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }

  .toggle:before {
    color: rgba(255,255,255,0.8);
    font-family: 'Raleway';
    font-style: normal;
    font-size: .7em;
    padding-right: 3px;
    content: 'MENU';
  }

  .toggle:after {
    color: rgba(255,255,255,0.8);
    content: '\f0c9';
  }
/*
  .toggle::after {
    content: "Menu";
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.3em;
    padding-left: 10px;
    position: relative;
    top:-13px;
  }
*/ 
  #toggle:checked ~ .main-navigation-wrapper {
    display: block;
    filter: alpha(opacity=100);
    opacity: 1;
    overflow: scroll;
    position:relative;
    height: 600px;
    margin-top: 0 !important;
  }

   #toggle:checked ~ .main-navigation-wrapper ul.menu > li.last.expanded.padforphone {
	   margin-bottom: 140px;
   }

  #toggle:checked + .toggle:after {
    content: '\f077';
  }

  /* The menu items */
  .main-navigation-wrapper {
    display: none;
    filter: alpha(opacity=0);
    opacity: 0;
    margin-top: 50px;
    width: 100%;
    position: relative;
    right: 0;
    height: auto;
    text-align: left;
    background: #111111;
    background: rgba(7,7,7,0.9);
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .main-navigation ul li {
    display: block;
    width: 100%;
    line-height: 30px;
    margin: 0;
  }

  .main-navigation ul li a {
    display: block;
    width: 100%;
    padding: 0;
  }

  /* Styling for the sub menu items */
  .main-navigation ul ul {
    display: block;
    position: relative;
    top: 0;
    background: none;
    padding: 0;
  }

  .main-navigation ul ul li a {
    padding: 0;
  }

  .main-navigation ul ul ul {
    position: relative;
    top: 0;
    left: 0;
  }

}

@media only screen and (max-width: 480px) {

  .tb-logo {
    margin-left: 5px;
  }

  .toggle {
    margin-right: -10px;
  }

  .main-navigation-wrapper {
    padding-left: 15px;
  }

}

/* Dynamic height of the menu */
.tb-large {
  padding-top: 25px;
  padding-bottom: 25px;
}

.tb-small {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 1000px){

  .tb-large {
    padding-top: 0;
    padding-bottom: 0;
  }

}

/* Transparent top bar */
.top-bar.tb-transp {
  background: none;
  background: rgba(7,7,7,0.0);
}

.tb-transp .main-navigation ul li a {
  color: #ffffff;
  color: rgba(255,255,255,0.8);
  font-weight:700;
}

.tb-transp .main-navigation ul li:hover a {
  color: #ffffff;
}

.tb-small.tb-transp {
  background: #111111;
  background: rgba(7,7,7,0.9);
}

/* Responsive settings for the transparent top bar */
@media only screen and (max-width: 1000px) {

  .top-bar.tb-transp {
    background: #111111;
    background: rgba(7,7,7,0.9);
  }

}


/* ==================== 03. Home ==================== */
.home {
  z-index: 1;
}

.topspace {
  padding-top: 105px;
  background: #111111;
}

@media only screen and (max-width: 1000px) {

  .topspace {
    padding-top: 50px;
  }

  .home .bx-wrapper .bx-controls-direction a {
    top: 100%;
    margin-top: -53px;
  }

}


/* ==================== 04. Introduction ==================== */
.intro {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Icon navigation */
.icon-nav {
  text-align: center;
  margin-bottom: 25px;
}

.icon-nav a {
  display: inline-block;
}

.icon-nav i {
  display: block;
  margin: 0 auto 10px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 36px;
  color: #cccccc;
  background: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

@media only screen and (max-width: 1000px) {

  .icon-nav i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 24px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
  }

}

.icon-nav a:hover > i {
  color: #ffffff;
  background: #ff4800;
}

.icon-nav b {
  font-family: 'Raleway', 'Open Sans', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 20px;
  color: #111111;
  display: block;
}

.icon-nav em {
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #aaaaaa;
  display: block;
}


/* ==================== 05. Work ==================== */
.work {
  background: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Positioning for the arrow controls for the work slider */
.work .oc-left,
.work .oc-right {
  margin-top: -65px;
}

@media only screen and (max-width: 1220px) {

  .work .oc-left,
  .work .oc-right {
    margin-top: 20px;
  }

}


/* ==================== 06. Call to action ==================== */
.cta {
  padding-top: 100px;
  padding-bottom: 100px;
}


/* ==================== 07. Services ==================== */
.services {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Service item */
.service-item {
  position: relative;
  display: block;
  text-align: center;
  background: #ffffff;
  padding-bottom: 35px;
}

.service-item .subline {
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #aaaaaa;
}

.service-item .serif {
  color: #aaaaaa;
}

.service-item hr {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #cccccc;
  margin-bottom: 20px;
}

.service-item ul {
  margin-bottom: 25px;
}

.service-item i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 48px;
  color: #cccccc;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.service-item:hover > i {
  color: #ff4800;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.service-item:hover > a.arrow-link:before {
  color: #ff4800;
}

/* Positioning for the arrow controls for the services slider */
.services .oc-left,
.services .oc-right {
  top: 70px;
  margin-top: 0;
}

@media only screen and (max-width: 1220px) {

  .services .oc-left,
  .services .oc-right {
    top: 100%;
    margin-top: 0;
  }

}


/* ==================== 08. Process ==================== */
.process {
  background: #222222;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Icon circles */
.icon-circle {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.icon-circle i {
  display: block;
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 36px;
  color: #555555;
  background: none;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.icon-circle:hover > i {
  font-size: 48px;
  color: #ffffff;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.icon-circle p {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.icon-circle:hover > p {
  color: #aaaaaa;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


/* ==================== 09. About ==================== */
.about {
  background: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-white {
  background: #ffffff;
}

.bg-padding {
  padding: 75px 20px;
}

/* Quote slider */
.qs-wrap p {
  color: #aaaaaa;
}

.qs-wrap {
  margin-top: 2px;
}

.qs-wrap .bx-wrapper .bx-pager {
  bottom: -25px;
}

/* Styling for the pagination for the quote slider */
.qs-wrap .bx-wrapper .bx-pager.bx-default-pager a {
  border: 1px solid #cccccc;
  filter: alpha(opacity=100);
  opacity: 1;
}

.qs-wrap .bx-wrapper .bx-pager.bx-default-pager a.active,
.qs-wrap .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #cccccc;
  filter: alpha(opacity=100);
  opacity: 1;
}

/* Positioning for the arrow controls for the employee slider */
.about .oc-left,
.about .oc-right {
  margin-top: -50px;
}

@media only screen and (max-width: 1220px) {

  .about .oc-left,
  .about .oc-right {
    margin-top: 20px;
  }

}


/* ==================== 10. Contact ==================== */
.contact {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Contact form */
.c-form {
  margin-top: -15px;
  text-align: left;
}

/* Contact form feedback messages */
.c-message {
  text-align: left;
}

.error_message {
  text-align: left;
  color: tomato;
  margin-bottom: 10px;
}

/* Loader image */
.loader {
  margin-left: 10px;
}

/* Contact details */
.c-details a {
  color: #777777;
  display: inline-block;
}

.c-details a:hover,
.c-details a:hover i {
  color: #ff4800;
}

.c-details i {
  float: left;
  width: 15px;
  line-height: 25px;
  font-size: 14px;
  text-align: center;
  color: #111111;
}

.c-details span {
  display: block;
  width: auto;
  margin-top: 3px !important;
  margin-left: 30px !important;
}


/* ==================== 11. Footer ==================== */
/* Back to top button */
.back-top-wrap {
  text-align: center;
  height: 0;
}

.back-top {
  position: relative;
  top: -25px;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background: #ff4800;
  background: rgba(255,72,0,0.9);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  z-index: 2;
}

.back-top:hover {
  background: rgba(255,72,0,1);
}

/* Social footer */
.social-footer {
  background: #111111;
  padding-top: 75px;
  padding-bottom: 50px;
  text-align: center;
  border-bottom: 1px solid #292929;
}

/* Social icons */
.sf-icons {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.sf-icons i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 28px;
  color: #888888;
  margin: 10px;
}

.sf-icons i:hover {
  color: #ffffff;
}

.sf-icons p {
  margin-top: 15px;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #111111;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

/* Footer promo */
.footer-promo {
  display: none;
  background: #111111;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

.promo-control {
  position: relative;
  top: -25px;
  text-align: center;
  height: 0;
}

.promo-control a {
  padding-top: 10px;
  cursor: pointer;
  color: #333333;
}

.promo-control a:hover {
  color: #777777;
}


/* ==================== 12. 404 Page ==================== */
.fourofour {
  height: 100%;
}

.fourofour .header {
  height: 100%;
}

.error-circle {
  display: inline-block;
  margin: 0 auto;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  background: #ffffff;
  padding: 25px;
}

.error-circle h1 {
  font-size: 90px;
  line-height: 1em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.error-circle h5 {
  margin-bottom: 15px;
}

.error-circle hr {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #cccccc;
  margin-bottom: 10px;
}

/* ==================== 14. BGT settings ==================== */


.front.logged-in .webmaster-menu {
	display: none;
}


.webmaster-menu {
	margin-top: 55px;
}

.page-node-add-event .help-block {
	width: inherit;
}


.page-builder-column h4 {
    color: red;
    text-transform: uppercase !important ;
    font-size: 17px;
}

.logged-in .user-login-page {
	display: none;
}

.address-indented {
	margin-left: 36px;
}

.view-news .views-row {
	width: 250px;
	float: left;
	margin-right:20px;
	min-height: 365px;
}
/*
.nolink, .webmester-menu .nolink {
   pointer-events: none !important;
   cursor: default !important;
}
*/
li.mnulvl1 > ul.menu, li.mnulvl1.menu > ol {
	padding-left: 10px !important;
}
li.mnulvl2 > ul.menu, li.mnulvl2.menu > ol {
	padding-left: 10px !important;
}
ul, ol {
	padding-left: 25px !important;
}
/*

ul.menu {
	padding-left: 0 !important;
}
*/

.view-blog .view-content {
	float: left;
}

.view-blog .views-row {
	width: 250px;
	float: left;
	padding: 5px;
	margin: 0 10px 0 0;
}


.iagsdc-table tr.odd {
	background-color: #FFF !important;
}
.iagsdc-table tr.even {
	background-color: #FFF !important;
}

.view-event-status .views-field-amount,
.view-event-status .views-field-refund,
.view-event-status .views-field-total,
.view-event-status .views-field-count,
.view-event-status .views-field-name,
.view-event-status .views-field-reg-type,
.view-event-status .views-field-reg-status,
.view-event-status .views-field-count {
	text-align: right;
	padding-right: 6px;
}

.view-all-payments .views-field-fee,
.view-all-payments .views-field-amt-paid,
.view-all-payments .views-field-count {
	text-align: right;
	padding-right: 6px;
}

.views-field-field-dancers {
	text-align: right !important;
}

.front-page-news .node-header h2 {
	text-transform: uppercase !important;
	line-height: 21px;
}

.front-page-news p, {
	margin-bottom: 0 !important;
}


.front-page-news p, .front-page-news li {
	line-height: 21px !important;
}

.views-field-field-venue-1 .field-label {
	display:none;
}

/* begin BGT */

.view-id-list_events .views-field-field-event-date {
	text-align: left;
	width: 12%;
}

.view-id-list_events .views-field-title {
	font-weight: bold;
	text-transform: capitalize;
	width: 22%;
}
.view-id-list_events .views-field-field-callers {
	width: 20%;
}
.view-id-list_events .views-field-php-1 {
	width: 17%;
}
.view-id-list_events .views-field-field-event-website {
	width: 17%;
}
.view-id-list_events .views-field-php-2 {
	white-space:nowrap;
	width: 6%;
}
.view-id-list_events .views-field-php {
	width: 6%;
}

.node-type-event .nav-tabs li:nth-child(2) a {
	color: red !important;
	font-weight: bold;
}

.page-callers .views-exposed-form .form-item-sort-order {
	text-transform: lowercase;
}



.page-convention-medallion-recipients tr.even, .page-convention-medallion-recipients tr.odd {
	background-color: transparent;
}

#block-views-iagsdc-officers-block-1 {
	margin-bottom: 35px;
}

#block-views-iagsdc-officers-block-1 .views-row-first {
	float: left;
	clear: left;
	margin: 0 10px 10px 0;
}

#block-views-iagsdc-officers-block-1 .views-row {
	float: left;
	margin: 0 10px 10px 0;
}

#block-views-iagsdc-officers-block-1 .views-row-last {
	float: left;
	clear: right;
	margin: 0 0 10px 0;
}

#block-views-contact-officers-intro-block {
	float: left;
	clear: both;
}

#block-webform-client-block-10 {
	float: left;
	clear: both;
}

.iagsdc-officer-name, .iagsdc-officer-title {
	text-align: center;
	line-height: 15px;
	margin: 10px 0 0 0 !important;
}



.page-node-add-payment .vertical-tabs-panes {
	display: none;
}

.page-node-add-payment.admin-menu .vertical-tabs-panes {
	display: block;
}

.page-user-edit-redhen-contact .form-item-field-legacy-dancernum-und-0-value {
	display: none;
}

.page-user-edit-redhen-contact.admin-menu .form-item-field-legacy-dancernum-und-0-value {
	display: block;
}

#field-legacy-eventnum-add-more-wrapper {
	display: none;
}

.admin-menu #field-legacy-eventnum-add-more-wrapper {
	display: block;
}

.page-node-add-event .group-paypal {
	display: none;
}

.page-node-add-event.admin-menu .group-paypal {
	display: block;
}

/*
.page-node-add-tour #edit-field-registration-und-0-registration-type option:nth-child(3) {
	display: none;
}
.page-node-add-tour.admin-menu  #edit-field-registration-und-0-registration-type option:nth-child(3) {
	display: block;
}
*/

.page-node-add-tour  #edit-field-tour-fees-und-0-field-fee-valid-until-und-0-value p.help-block {
	display: none;
}

.page-node-add-tour.admin-menu   #edit-field-tour-fees-und-0-field-fee-valid-until-und-0-value p.help-block {
	display: block;
}

.page-user-edit-redhen-contact .form-item-field-dancer-address-und-0-re-geocode-location {
	display: none !important;
}

.page-user-edit-redhen-contact.admin-menu  .form-item-field-dancer-address-und-0-re-geocode-location {
	display: block !important;
}

.page-user-edit-redhen-contact .form-item-field-dancer-address-und-0-delete-location {
	display: none !important;
}

.page-user-edit-redhen-contact.admin-menu  .form-item-field-dancer-address-und-0-delete-location {
	display: block !important;
}

#edit-field-legacy-tournum, #edit-field-tour-code, #edit-field-legacy-tour-id, #edit-revision-information {
	display: none;
}

.admin-menu #edit-field-legacy-tournum, #edit-field-tour-code, #edit-field-legacy-tour-id, #edit-revision-information {
	display: block;
}

#edit-field-legacy-tournum, #edit-field-tour-code,  #edit-field-legacy-tour-id,  #edit-revision-information {
	display: none;
}

.admin-menu #edit-field-legacy-tournum, .admin-menu  #edit-field-tour-code, .admin-menu  #edit-field-legacy-tour-id, .admin-menu #edit-revision-information {
	display: block;
}

.form-type-date-popup label {
	display: block;
	float: left;
	clear: both;
}

#edit-field-event-date-und-0-value2 {
	float: left;
	clear: both;
}

.form-textarea, .form-text {
	padding: 0 !important;
}

#event-node-form .group-add-event-form .group-event-fees div.panel-heading, #event-node-form .group-add-event-form .group-catered-meals div.panel-heading  {
	display: none;
}


.page-node-add-tour .group-create-tour-form > .panel-heading {
	display: none;
}

/*
.page-node-add-tour #edit-field-registration-und-0-registration-type option:nth-child(3) {
	display: none !important;
}
*/

#event-node-form .group-add-event-form > .panel-heading {
	display: none;
}

.page-node-add-event #event-paypal-fieldset {
	display: none;
}

.page-members-faq #edit-field-faq-category-tid option:nth-child(1) {
	display: none;
}

.view-my-events .views-field-field-venue table.sticky-enabled thead {
	display: none;
}



.field-name-field-club-officers field-name-field-first-name {
	display: inline;
	width: auto;
	float: left;
	clear: left;
}

.field-name-field-club-officers field-name-field-last-name {
        display: inline;
        width: auto;
        float: left;
        clear: right;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	border: none !important;
}

 .ui-widget-content {
	border: none !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	background: none !important;
	border: none !important;
}

.ui-accordion .ui-accordion-header {
	font-weight: bold;
	font-size: 17px;
}
/*	border: none !important; */


/* add Tour form changes */

.page-node-add-event  #edit-revision-information, .page-node-add-tour  #edit-revision-information {
	display: none;
}

/*
.page-node-add-event   #edit-field-registration-und-0-registration-type option:nth-child(2) {
	display: none;
}
*/

.page-node-add-event .vertical-tabs-panes #edit-path, .page-node-add-event .vertical-tabs-panes #edit-author, .page-node-add-event .vertical-tabs-panes  #edit-options {
	display: none;
}


.admin-menu .page-node-add-event  #edit-revision-information, .admin-menu .page-node-add-tour  #edit-revision-information {
	display: block;
}

/*
.admin-menu .page-node-add-event   #edit-field-registration-und-0-registration-type option:nth-child(2) {
	display: block;
}
*/

.admin-menu .page-node-add-event .vertical-tabs-panes #edit-path, .page-node-add-event .vertical-tabs-panes #edit-author, .page-node-add-event .vertical-tabs-panes  #edit-options {
	display: block;
}

.form-item-field-venue-und-0-field-venue-url-und-0-title p.help-block {
	display:none;
}

/* end BGT */



/* ==================== 15. Responsive settings ==================== */
/* Tablet portrait - Medium */
@media only screen and (max-width: 1000px) {

  .title hr, .page-builder-row-title hr {
    margin-bottom: 50px;
  }

  .bg-padding {
    padding: 50px 15px;
  }

  .intro,
  .work,
  .cta,
  .services,
  .process,
  .about,
  .contact,
  .social-footer {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .process,
  .social-footer {
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .footer,
  .footer-promo {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-slider {
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .c-form {
    margin-bottom: 25px;
  }

}

/* Smartphone landscape - Small */
@media only screen and (max-width: 480px) {

  .title hr, .page-builder-row-title hr {
    margin-bottom: 25px;
  }

  .bg-padding {
    padding: 25px 10px;
  }

  .intro,
  .work,
  .cta,
  .services,
  .process,
  .about,
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .social-footer {
    padding-top: 50px;
    padding-bottom: 25px;
  }

  .footer,
  .footer-promo {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .section-slider {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .error-circle {
    width: 220px;
    height: 220px;
    border-radius: 110px;
    padding: 15px;
  }

  .error-circle h1 {
    font-size: 60px;
    line-height: 1em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .error-circle h5 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .error-circle hr {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #cccccc;
    margin-bottom: 5px;
  }

}

.views-row-odd {
  background-color: #ccc;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

.views-row-even {
  background-color: #eee !important;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

.regpayments {
  background-color: #eee;
  margin-top:10px;
}

.regpaymentsgap {
  background-color: #fff;
  height: 10px;
}

.regtotrow { line-height: 4px; }

/*
  border:1px solid black !important;
*/
/*
div.single-reg-accordion {
  height:480px;
}
*/
#autocomplete {
  background-color: #FFF;
}

th.field_registration_fee,
th.field_fee_valid_until {
  width:15%;
}
th.field_fee_description {
  width:70%;
}

div.form-type-textfield.form-item-captcha-response {

  font-weight: bold;
  font-size: large;
}

.front .header-inner h2, .front .header-inner h6, .front .header-inner p {
  text-shadow: 5px 5px 3px #222;

}
/*
.node-type-tour #edit-field-registration select#edit-field-registration-und-0-registration-type option:nth-child(3) {
	display: none;
}

.node-type-event #edit-field-registration select#edit-field-registration-und-0-registration-type option:nth-child(2) {
	display: none;
}
*/
.front .front-page-news .views-row {
	min-height: 350px;
	margin-top: 10px;
}

.page-event-calendar .multi-day a, .page-event-calendar-month .multi-day a, .page-event-calendar-week .multi-day a, .page-event-calendar-day .multi-day a {
	color: #FFF !important;

}

.calendar-calendar .month-view .full td.multi-day div.monthview, .calendar-calendar .week-view .full td.multi-day div.weekview, .calendar-calendar .day-view .full td.multi-day div.dayview {
	height: 2.3em !important;
}


.page-resources-executive-board-minutes li.views-row, .page-resources-general-meeting-minutes li.views-row, .page-resources-newsletter li.views-row {
	background-color: transparent !important;
	border-bottom: none !important;
}

td.active {
	background-color: #eee !important;
}

.page-registrations .view-registrations table {
	margin-bottom: 50px;
}

.page-node-9810 .views-row {
	background-color: transparent !important;
	border-bottom: none !important;
}

.view-list-clubs-for-public-intro .view-content .views-row {
	background-color: transparent !important;
		border-bottom: none !important;
}

.region-footer .content {
	background-color: #111;
	color: #FFF;
	border-bottom: none;
}

.page-about-convention-history .view-content .views-row {
	background-color: transparent !important;
		border-bottom: none !important;
}

.page-convention-medallion-recipients .view-content .views-row {
	background-color: transparent !important;
		border-bottom: none !important;
}

.page-resources-callers .view-content .views-row {
	background-color: transparent !important;
		border-bottom: none !important;
}

.page-resources-callers .views-exposed-widgets {
	margin-bottom: 20px !important;
}

.page-resources-bylaws .view-content .views-row {
	background-color: transparent !important;
		border-bottom: none !important;
}

.node-type-tour .tabs--primary li:nth-child(3) {
	display: none;
}

.node-type-tour .views-row {
	background-color: transparent !important;
}

.node-type-tour .view-tour-eva .views-row .views-field:nth-child(1) span.field-content {
	font-weight: bold;
}

.page-club-details .view-club-details .views-row .views-field-label {
	font-size: 16px;
	font-weight: bold;
}

.page-club-details .view-club-details .views-row  .views-field-field-club-officers {
	font-weight: bold;
	margin-bottom: 8px;
	display: block;
}

.page-club-details .view-club-details .views-row-even, .page-club-details .view-club-details .views-row-odd {
	background-color: transparent !important;
}

.page-club-details .view-club-details .views-row .item-list ul {
	list-style-type: none;
	margin-top: 8px;
}

.page-redhen-org .field-name-field-club-officers .field .field-item,  .page-redhen-org .field-name-field-club-officers .field .field-items,  .page-redhen-org .field-name-field-club-officers .field .field-item {
	display: inline-block;
	width: auto;
	float: left;
	margin-left: 3px;

}

.page-redhen-org .field-collection-view {
	border-bottom: 0;
	padding-bottom: 0;
	padding-top: 0;
}

.page-redhen-org .field-collection-item-field-club-officers .field-item {
	line-height: 16px;
}

.page-redhen-org .field-name-field-club-officers .field-label {
	margin-bottom: 7px;
}

.page-redhen-org .field-name-field-role .field-item {
	font-weight: bold;
}

 .page-redhen-org .field-name-field-club-officers .field-name-field-last-name .field-item:after {
	 content: ",";
 }

 .page-redhen-org .field-name-field-club-officers .field-name-field-last-name .field-item {
	 margin-left: 0 !important;
 }

.page-redhen-org .field-name-field-dance-hours .field-name-field-dance-level {
	float: left;
	clear: left;
}

.page-redhen-org .field-name-field-dance-hours .field-name-field-day-of-week {
	float: left;
	clear: none;
}

.page-redhen-org .field-name-field-legacy-clubnum {
	display: none;
}


/*
.page-redhen-org  .field-name-field-dancer.field-type-entityreference {
	display: block;
}
*/



.page-redhen-org .field-name-field-dance-hours div:nth-child(1), .page-redhen-org .field-name-field-dance-level div:nth-child(1), .page-redhen-org .field-name-field-day-of-week div:nth-child(1)  {
	display: inline-block;
	width: auto;
	float: left;
	clear: left;
}

.page-redhen-org .field-name-field-dance-hours div:nth-child(2), .page-redhen-org .field-name-field-dance-level div:nth-child(2), .page-redhen-org .field-name-field-day-of-week div:nth-child(2)  {
	display: inline-block;
	width: auto;
	float: left;
	clear: right;
	margin-left: 5px;
}

.page-redhen-org .tabs--primary li:nth-child(2), .page-redhen-org .tabs--primary li:nth-child(3) {
	display: none;
}

.view-my-registrations-intro .views-row, .page-user-profile-links .views-row, .view-faq .views-row {
	background-color: #FFF !important;
	border-bottom: 0 !important;
}

.view-registrations .views-field-title-1 {
  width: 36%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.view-registrations .views-field-nothing-1,
.view-registrations .views-field-php-1 {
  width: 14%;
}
.view-registrations .views-field-php,
.view-registrations .views-field-received,
.view-registrations .views-field-php-2 {
  width: 4%;
}
.view-registrations .views-field-state {
  width: 8%;
}
.view-registrations .views-field-field-event-date {
  width: 10%;
}
.view-registrations .views-field-nothing {
  width: 6%;
}
.view-registrations td.views-field-field-event-date div:nth-child(1) {
    width: auto !important;
}

.page-registrations td, .page-registrations th {
	text-align: center !important;
}

.view-list-tours .views-field-title {
  width: 25%;
}
.view-list-tours .views-field-field-tour-description {
  width: 45%;
}
.view-list-tours .views-field-field-tour-date {
  width: 15%;
}
.view-list-tours .views-field-php {
  width: 15%;
}

div.page-builder-element a.btn {
  border: 2px solid;
  margin-top: 0px;
}

#page-builder-section-1 {
  background: #ffffff;
  padding: 20px 0 20px;
}

/*
div.page-builder-column {
  float: none;
}

  background-attachment: scroll !important;
  background-position: center top !important;
*/

.view-convention-history-intro .views-row-odd {
  background: #ffffff;
}

li.iagsdc-no-admin-link {
  display: none;
}

#switch_edit-field-callers-und-0-value, #switch_edit-field-callers-und-0-value, #edit-field-callers-und-0-format, #switch_edit-field-event-description-und-0-value, #edit-field-event-description-und-0-format {
   display: none !important;
}

.iagsdc_href_btn {
  background-color: white;
  color: #E33D00;
  border-radius: 5px;
  height: 25px;
  font-weight: bold;
}

.iagsdc_pb_background {
  background: url('http://iagsdc.org/sites/iagsdc.org/files/spiral-rainbow-bkg-with-logo-02_0.jpg') no-repeat fixed;
}

/*
#home {
  height:648px !important;
  background-position: 46% -268px !important;
}

#home {
  height:648px !important;
  background-position: 50% 0!important;
}


#page-builder-page-1 .page-builder-row-section {
  padding: 6px 0 6px;
}
    background-position: 50% 0px !important;
*/

#page-builder-section-9 {
    background-color: darkgrey;
    height:  65px;
}
#convention-banner-id {
    background-color: darkgrey;
    height:  65px;
    margin-top: 0px;
}
/*
#block-views-short-events-list-block-2 {
    margin-top: 40px;
}

#main-page-content::after {
    content: "";
    clear: both;
    display: table;
}

#block-block-3, #block-views-short-events-list-block-2 {
    float: left;
    width: 50%;
    padding: 5px;
}

#block-block-4 {
    width: 100%;
    background-color: gray;
    height: 40px;
}

.front-page-btn {
    float: left;
    width: 50%;
    padding: 5px;
}

@media only screen and (max-width: 1000px) {
    #block-block-3, #block-views-short-events-list-block-2 {
        width: 100%;
    }
    #logo-block-id {
        display: block;
        margin: 0 auto;
    }
}

section#page-builder-section-1 div.page-builder-column {
  background-color: gray;
}
*/

section#page-builder-section-0 div.page-builder-row-inner {
  margin-top: 60px;
}

#fb-img-id {
  display:      block;
  margin-top:     0px;
  margin-left:   24px;
  margin-bottom:  0px;
}

div.view-list-dancers .views-field-first-name {
  width: 15%;
}
div.view-list-dancers .views-field-last-name {
  width: 20%;
}
div.view-list-dancers .views-field-php {
  width: 15%;
}
div.view-list-dancers .views-field-club-affiliation {
  width: 50%;
}

#badge-btn-1-id {
  color: black;
  border: 6px solid blue;
}
#badge-btn-2-id {
  color: black;
  border: 6px solid orange;
}
#badge-btn-3-id {
  color: black;
  border: 6px solid red;
}
#badge-btn-4-id {
  color: black;
  border: 6px solid green;
}

/*
#badge-btn-1-id {
  background: blue;
  color: white;
  border: 2px solid black;
}
#badge-btn-2-id {
  background: yellow;
  color: black;
}
#badge-btn-3-id {
  background: red;
  color: black;
}
#badge-btn-4-id {
  background: green;
  color: white;
  border: 2px solid black;
}
*/

#privatemsg-new div.form-item-recipient {
    display : none;
}
