@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

::selection,
.etouches-bootstrap ::selection {
  background: rgb(97.3, 177.8641304348, 255);
  color: #101820;
  text-shadow: none;
}

@media only screen and (max-width: 991px) {
  header .navbar-header {
    float: none;
  }
  header .navbar-left,
  header .navbar-right {
    float: none !important;
  }
  header .navbar-toggle {
    display: block;
  }
  header .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  header .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  header .navbar-collapse.collapse {
    display: none !important;
  }
  header .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }
  header .navbar-nav > li {
    float: none;
  }
  header .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .collapse.in {
    display: block !important;
  }
}
/* $PLACEHOLDERS
============= */
body td,
body th,
body div,
body font,
body p,
body a,
body li,
body input,
body label,
body select,
body [id=inner_content] td,
body [id=inner_content] th,
body [id=inner_content] div,
body [id=inner_content] font,
body [id=inner_content] p,
body [id=inner_content] a,
body [id=inner_content] li,
body [id=inner_content] input,
body [id=inner_content] label,
body [id=inner_content] select,
body .ipWidget td,
body .ipWidget th,
body .ipWidget div,
body .ipWidget font,
body .ipWidget p,
body .ipWidget a,
body .ipWidget li,
body .ipWidget input,
body .ipWidget label,
body .ipWidget select,
body .etouches-bootstrap td,
body .etouches-bootstrap th,
body .etouches-bootstrap div,
body .etouches-bootstrap font,
body .etouches-bootstrap p,
body .etouches-bootstrap a,
body .etouches-bootstrap li,
body .etouches-bootstrap input,
body .etouches-bootstrap label,
body .etouches-bootstrap select {
  font-family: "Open Sans", Arial, sans-serif !important;
  color: #101820;
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
  font-size: 16px;
}

body p,
body [id=inner_content] p,
body .ipWidget p,
body .etouches-bootstrap p {
  margin: 0.5em 0 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body [id=inner_content] h1,
body [id=inner_content] h2,
body [id=inner_content] h3,
body [id=inner_content] h4,
body [id=inner_content] h5,
body [id=inner_content] h6,
body .ipWidget h1,
body .ipWidget h2,
body .ipWidget h3,
body .ipWidget h4,
body .ipWidget h5,
body .ipWidget h6,
body .etouches-bootstrap h1,
body .etouches-bootstrap h2,
body .etouches-bootstrap h3,
body .etouches-bootstrap h4,
body .etouches-bootstrap h5,
body .etouches-bootstrap h6 {
  font-family: "Open Sans", Arial, sans-serif !important;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #101820;
}
body h1 .highlight,
body h2 .highlight,
body h3 .highlight,
body h4 .highlight,
body h5 .highlight,
body h6 .highlight {
  color: #005EB8;
  font-size: inherit !important;
}

body h1, body .h1,
body [id=inner_content] h1,
body [id=inner_content] .h1,
body .ipWidget h1,
body .ipWidget .h1,
body .etouches-bootstrap h1,
body .etouches-bootstrap .h1 {
  font-size: 42px !important;
}
@media only screen and (min-width: 992px) {
  body h1, body .h1,
  body [id=inner_content] h1,
  body [id=inner_content] .h1,
  body .ipWidget h1,
  body .ipWidget .h1,
  body .etouches-bootstrap h1,
  body .etouches-bootstrap .h1 {
    font-size: 64px !important;
  }
}

body h2, body .h2,
body [id=inner_content] h2,
body [id=inner_content] .h2,
body .ipWidget h2,
body .ipWidget .h2,
body .etouches-bootstrap h2,
body .etouches-bootstrap .h2 {
  font-size: 36px !important;
}
@media only screen and (min-width: 992px) {
  body h2, body .h2,
  body [id=inner_content] h2,
  body [id=inner_content] .h2,
  body .ipWidget h2,
  body .ipWidget .h2,
  body .etouches-bootstrap h2,
  body .etouches-bootstrap .h2 {
    font-size: 40px !important;
  }
}

body h3, body .h3,
body [id=inner_content] h3,
body [id=inner_content] .h3,
body .ipWidget h3,
body .ipWidget .h3,
body .etouches-bootstrap h3,
body .etouches-bootstrap .h3 {
  font-size: 28px !important;
}

body h4, body .h4,
body [id=inner_content] h4,
body [id=inner_content] .h4,
body .ipWidget h4,
body .ipWidget .h4,
body .etouches-bootstrap h4,
body .etouches-bootstrap .h4 {
  font-size: 20px !important;
}

body h5, body .h5,
body [id=inner_content] h5,
body [id=inner_content] .h5,
body .ipWidget h5,
body .ipWidget .h5,
body .etouches-bootstrap h5,
body .etouches-bootstrap .h5 {
  font-size: 18px !important;
}

body h6, body .h6,
body [id=inner_content] h6,
body [id=inner_content] .h6,
body .ipWidget h6,
body .ipWidget .h6,
body .etouches-bootstrap h6,
body .etouches-bootstrap .h6 {
  font-size: 16px !important;
}

body .lead-section p {
  font-size: 20px;
}

body a,
body [id=inner_content] a,
body .ipWidget a,
body .etouches-bootstrap a {
  color: #005EB8;
  text-decoration: underline;
  outline-offset: 1px;
}
body a:focus, body a:hover {
  text-decoration: none;
}

/* $TYPOGRAPHY
============= */
body .highlight,
body [id=inner_content] .highlight,
body .ipWidget .highlight,
body .etouches-bootstrap .highlight {
  background: #fee64a;
}

main ._nestedContainer.blue-bg .ipWidget-Buttons button, .btn:not(.form-control),
.ipWidget .btn:not(.form-control),
.btn.more-btn,
.more-link,
.button,
.r-reg-buttons a,
[id=inner_content] input.button.r-button,
.cc-btn,
.btn.btn-primary,
.eh_outer_div input[type=submit], #custom .active-filters .filter-group .button-link, #custom .reset-button, #custom .accordion-trigger, .ipWidget .btn.btn-secondary,
.button.btn-secondary,
input.btn.btn-cancel.btn-sm.ng-scope {
  font-family: "Open Sans", Arial, sans-serif !important;
  color: #fff !important;
  background: #005EB8 !important;
  border: 1px solid #005EB8 !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  text-decoration: none;
  transition: background-color 0.4s, color 0.4s, text-shadow 0.4s;
  display: inline-block;
  line-height: 1.5;
  height: auto;
  width: 100%;
  padding: 10px 20px !important;
  margin-top: 16px;
  margin-bottom: 5px;
  font-weight: normal !important;
  appearance: none;
}
@media only screen and (min-width: 768px) {
  main ._nestedContainer.blue-bg .ipWidget-Buttons button, .btn:not(.form-control),
  .ipWidget .btn:not(.form-control),
  .btn.more-btn,
  .more-link,
  .button,
  .r-reg-buttons a,
  [id=inner_content] input.button.r-button,
  .cc-btn,
  .btn.btn-primary,
  .eh_outer_div input[type=submit], #custom .active-filters .filter-group .button-link, #custom .reset-button, #custom .accordion-trigger, .ipWidget .btn.btn-secondary,
  .button.btn-secondary,
  input.btn.btn-cancel.btn-sm.ng-scope {
    width: auto;
  }
}
main ._nestedContainer.blue-bg .ipWidget-Buttons button:hover, .btn:hover:not(.form-control),
.btn.more-btn:hover,
.more-link:hover,
.button:hover,
.r-reg-buttons a:hover,
[id=inner_content] input.button.r-button:hover,
.cc-btn:hover,
.btn.btn-primary:hover,
.eh_outer_div input[type=submit]:hover, #custom .active-filters .filter-group .button-link:hover, #custom .reset-button:hover, #custom .accordion-trigger:hover, .ipWidget .btn.btn-secondary:hover,
input.btn.btn-cancel.btn-sm.ng-scope:hover, main ._nestedContainer.blue-bg .ipWidget-Buttons button:active, .btn:active:not(.form-control),
.btn.more-btn:active,
.more-link:active,
.button:active,
.r-reg-buttons a:active,
[id=inner_content] input.button.r-button:active,
.cc-btn:active,
.btn.btn-primary:active,
.eh_outer_div input[type=submit]:active, #custom .active-filters .filter-group .button-link:active, #custom .reset-button:active, #custom .accordion-trigger:active, .ipWidget .btn.btn-secondary:active,
input.btn.btn-cancel.btn-sm.ng-scope:active, main ._nestedContainer.blue-bg .ipWidget-Buttons button:focus, .btn:focus:not(.form-control),
.btn.more-btn:focus,
.more-link:focus,
.button:focus,
.r-reg-buttons a:focus,
[id=inner_content] input.button.r-button:focus,
.cc-btn:focus,
.btn.btn-primary:focus,
.eh_outer_div input[type=submit]:focus, #custom .active-filters .filter-group .button-link:focus, #custom .reset-button:focus, #custom .accordion-trigger:focus, .ipWidget .btn.btn-secondary:focus,
input.btn.btn-cancel.btn-sm.ng-scope:focus {
  color: #fff !important;
  background: #0B56B1 !important;
  border-color: #0B56B1 !important;
  text-decoration: none !important;
}

#custom .active-filters .filter-group .button-link, #custom .reset-button, #custom .accordion-trigger, .ipWidget .btn.btn-secondary,
.button.btn-secondary,
input.btn.btn-cancel.btn-sm.ng-scope {
  color: #005EB8 !important;
  background: transparent !important;
  border-color: #005EB8 !important;
}
#custom .active-filters .filter-group .button-link:hover, #custom .reset-button:hover, #custom .accordion-trigger:hover, .ipWidget .btn.btn-secondary:hover,
.button.btn-secondary:hover,
input.btn.btn-cancel.btn-sm.ng-scope:hover, #custom .active-filters .filter-group .button-link:active, #custom .reset-button:active, #custom .accordion-trigger:active, .ipWidget .btn.btn-secondary:active,
.button.btn-secondary:active,
input.btn.btn-cancel.btn-sm.ng-scope:active, #custom .active-filters .filter-group .button-link:focus, #custom .reset-button:focus, #custom .accordion-trigger:focus, .ipWidget .btn.btn-secondary:focus,
.button.btn-secondary:focus,
input.btn.btn-cancel.btn-sm.ng-scope:focus {
  color: #fff !important;
  background: #0B56B1 !important;
  border-color: #0B56B1 !important;
  text-decoration: none !important;
}

/* $PRIMARY BUTTONS
============= */
/* SECONDARY BUTONS
============= */
footer .ipWidget .btn.btn-primary {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 16px !important;
}

main ._nestedContainer.blue-bg .ipWidget-Buttons button {
  color: #fff !important;
  border-color: #fff !important;
  background: #041e42 !important;
}
main ._nestedContainer.blue-bg .ipWidget-Buttons button:hover, main ._nestedContainer.blue-bg .ipWidget-Buttons button:active, main ._nestedContainer.blue-bg .ipWidget-Buttons button:focus {
  color: #041e42 !important;
  border-color: #fff !important;
  background: #fff !important;
}

.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:link,
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:visited {
  padding: 8px 8px;
  font-size: 15px;
  background: transparent !important;
  color: #101820 !important;
  text-transform: none !important;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: normal;
  text-decoration: none;
}
@media only screen and (min-width: 1200px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:link,
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:visited {
    padding: 8px 10px;
  }
}

.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:hover,
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:focus, .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.active a {
  color: #fff !important;
  text-decoration: none;
  background: #0B56B1 !important;
}

/* $HEADER
============= */
.website header {
  display: block;
}

header,
#outer_table .branding-hdr {
  padding: 0;
  z-index: 2;
  width: 100%;
  background-color: #fff;
  transition: height 0.5s, background-color 0.5s;
}
header img,
#outer_table .branding-hdr img {
  transition: height 0.5s, width 0.5s;
  width: auto !important;
  height: 46px !important;
}

/* $LANGUAGE SELECT
============= */
.language-selector-container,
#outer_table .language-selector-container {
  display: block;
  position: absolute;
  z-index: 9;
  right: 15px;
  top: 83px;
  width: auto !important;
}
@media only screen and (min-width: 992px) {
  .language-selector-container,
  #outer_table .language-selector-container {
    top: 83px;
  }
}
.language-selector-container select,
#outer_table .language-selector-container select {
  box-sizing: border-box;
  text-transform: uppercase;
  color: #101820 !important;
  background-color: #fff !important;
  border-radius: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -webkit-border-radius: 0px !important;
  border: 0 !important;
  padding: 10px 30px 10px 20px !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: bold;
  width: auto !important;
  background: linear-gradient(45deg, #fff 50%, #101820 50%), linear-gradient(135deg, #101820 50%, #fff 50%);
  background-position: calc(100% - 17px) calc(1em + 4px), calc(100% - 12px) calc(1em + 4px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  background-color: #101820;
  min-width: 110px;
}
.language-selector-container select::-ms-expand,
#outer_table .language-selector-container select::-ms-expand {
  display: none;
}

/* $FOOTER
============= */
footer .footer {
  background-color: #fff !important;
  padding-top: 40px;
  padding-bottom: 40px;
  /* $SOCIAL NAV */
}
@media only screen and (max-width: 767px) {
  footer .footer {
    text-align: center;
  }
}
footer .footer h2 {
  font-size: 20px;
  color: #005EB8;
}
footer .footer ul.social-nav {
  padding: 30px 0 10px;
  margin: 0;
  list-style-type: none !important;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  footer .footer ul.social-nav {
    padding: 0px 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer ul.social-nav {
    margin-top: 10px;
  }
}
footer .footer ul.social-nav li {
  float: left;
  padding-left: 0;
  margin: 0 5px;
}
footer .footer ul.social-nav li a {
  background-color: rgba(16, 24, 32, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  padding-top: 10px;
}
footer .footer ul.social-nav li a i {
  color: #101820;
  font-size: 24px;
  text-align: center;
  transition: all 500ms ease-in-out;
  position: relative;
  padding: 0;
  width: 32px;
  height: 32px;
}
footer .footer ul.social-nav li a i:before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
footer .footer ul.social-nav li a:hover {
  background-color: rgba(16, 24, 32, 0.3);
}
@media only screen and (min-width: 768px) {
  footer .footer .row {
    display: flex;
    align-items: center;
  }
}
footer .footer .row .column.left {
  text-align: left;
}
@media only screen and (max-width: 991px) {
  footer .footer .row .column.left {
    text-align: center !important;
  }
}
footer .footer .row .column.center {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  footer .footer .row .column.center {
    text-align: center !important;
  }
}
footer .footer .row .column.right {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  footer .footer .row .column.right {
    text-align: center !important;
  }
}

/* $COMMON HELPERS
============= */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* $Countdown
============= */
body.website:not(.ipHasAdminNavbar.ipHasAdminPanel) .countdown .ipWidget-CKEditor {
  display: none;
  margin-top: 65px;
}

.countdown {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-content: space-around;
  align-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  min-height: 115px !important;
}
@media only screen and (max-width: 991px) {
  .countdown {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.countdown h1,
.countdown h2,
.countdown h3,
.countdown h4,
.countdown h5,
.countdown h6 {
  color: #101820 !important;
}
@media only screen and (max-width: 991px) {
  .countdown {
    height: auto;
  }
}
.countdown ul.countdown-clock {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: space-around;
  align-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
.countdown ul.countdown-clock li.clock-col {
  margin: 15px;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: space-around;
  align-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
  border: 1px solid #005EB8;
  min-width: 120px;
  height: 120px;
  border-radius: 10px;
  position: relative;
}
.countdown ul.countdown-clock li.clock-col.space {
  font-size: 28px;
  margin: 0 15px;
  border: none;
  min-width: unset;
  min-height: unset;
}
@media only screen and (max-width: 991px) {
  .countdown ul.countdown-clock li.clock-col.space {
    margin: 0 15px;
  }
}
.countdown ul.countdown-clock li.clock-col:after {
  content: ":";
  font-size: 28px;
  position: absolute;
  right: -20px;
}
.countdown ul.countdown-clock li.clock-col:last-child:after {
  display: none;
}
.countdown ul.countdown-clock li.clock-col .count {
  color: #101820 !important;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 100% !important;
  font-weight: bold;
}
.countdown ul.countdown-clock li.clock-col .clock-label {
  color: #101820;
  text-transform: capitalize;
  font-size: 16px;
  margin-top: 5px;
  clear: both;
  display: block;
}

/* $Slider
============= */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  height: auto !important;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.bx-wrapper .bx-loading {
  min-height: 50px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: bold;
  color: #6e7275;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: rgba(0, 94, 184, 0.3);
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #005EB8;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
.bx-wrapper .bx-prev {
  left: 15px;
  color: #101820;
  font-size: 30px;
  font-family: "Font Awesome 6 Free" !important;
}
.bx-wrapper .bx-next {
  right: 15px;
  color: #101820;
  font-size: 30px;
  font-family: "Font Awesome 6 Free" !important;
}
.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
  display: none;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: 0;
  width: 32px;
  height: 40px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  content: "\f054";
  color: #101820;
  font-size: 30px;
  font-family: "Font Awesome 6 Free" !important;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls-auto.bx-has-pager .bx-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
.bx-wrapper:hover .bx-prev,
.bx-wrapper:hover .bx-next {
  display: block;
}

/* $LAYOUT
============= */
._nestedContainer > .row,
.ipWidget > .row {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.row .row > div[class^=col-] {
  padding: 0;
}

/* $NAVIGATION
============= */
.ipWidget-MenuWidget nav.menu-widget.navbar {
  min-height: auto !important;
  border: 0 !important;
  background-color: transparent !important;
  z-index: 10;
}
.ipWidget-MenuWidget nav.menu-widget.navbar .container-fluid {
  max-width: 1170px;
}
.ipWidget-MenuWidget nav.menu-widget.navbar .navbar-header {
  margin: 0;
}
.ipWidget-MenuWidget nav.menu-widget.navbar a.navbar-brand {
  min-height: 50px !important;
  max-height: 50px !important;
  height: 50px;
  line-height: 0 !important;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar a.navbar-brand {
    min-height: 80px !important;
    max-height: 80px !important;
    height: 80px;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar .navbar-collapse {
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar .navbar-collapse {
    height: 100vh !important;
    max-height: none !important;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 50px;
    right: -100%;
    transition: all 0.25s;
    display: block !important;
    padding-top: 20px;
    margin: 0 !important;
    text-align: center;
  }
  .ipWidget-MenuWidget nav.menu-widget.navbar .navbar-collapse .nav {
    overflow-y: auto;
    padding-bottom: 200px;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar .navbar-collapse.in, .ipWidget-MenuWidget nav.menu-widget.navbar .navbar-collapse.collapsing {
  right: 0;
}
@media only screen and (min-width: 992px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
    -webkit-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    min-height: 84px;
    width: 100%;
    max-width: 662px;
  }
}
@media only screen and (min-width: 1200px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav {
    max-width: 760px;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li {
  padding: 0;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
  margin-right: 1%;
}
@media only screen and (min-width: 1200px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li {
    margin-right: 1%;
  }
}
@media only screen and (max-width: 767px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:link,
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li a:visited {
    line-height: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register {
    margin-left: auto;
    margin-right: 0;
    background: #005EB8;
    border-radius: 4px;
  }
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register a:link,
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register a:visited {
    color: #fff !important;
    transition: all 0.5s;
    padding: 14px 20px;
    border-radius: 4px;
  }
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register a:link:after,
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register a:visited:after {
    display: none;
  }
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register:hover, .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register:focus, .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.register.sel_top {
    background-color: #0B56B1;
  }
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.dropdown span.caret {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.dropdown.mobile-open > ul.dropdown-menu {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav li.dropdown.mobile-open.open > ul.dropdown-menu {
    display: block;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu {
  background: transparent;
  right: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0 0 0 25px;
}
@media only screen and (min-width: 992px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu {
    background: #fff;
    padding-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu {
    box-shadow: none;
    background: #F5F7FA;
    position: static;
    float: none;
    -webkit-box-shadow: inset 0px 0px 19px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 0px 19px -11px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 0px 19px -11px rgba(0, 0, 0, 0.75);
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu li {
  border-color: #eceff1;
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu li {
    border: 0;
  }
}
@media only screen and (min-width: 992px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu li {
    margin: 0 !important;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu a {
  position: relative;
  line-height: 17px;
  font-size: 16px;
  padding: 20px 30px !important;
}
@media only screen and (max-width: 991px) {
  .ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu a {
    text-align: center;
  }
}
.ipWidget-MenuWidget nav.menu-widget.navbar ul.navbar-nav ul.dropdown-menu a:after {
  display: none;
}

/* $HEADER
============= */
nav.menu-widget.navbar .navbar-header {
  margin: 0;
  /* $MOBILE-TOGGLE */
}
nav.menu-widget.navbar .navbar-header a.navbar-brand,
nav.menu-widget.navbar .navbar-header .logo-wrap {
  padding: 0 !important;
}
nav.menu-widget.navbar .navbar-header a.navbar-brand img,
nav.menu-widget.navbar .navbar-header .logo-wrap img {
  height: 46px !important;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover {
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus, nav.menu-widget.navbar .navbar-header .navbar-toggle:focus-within,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus:focus,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus:focus-within,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover:focus,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover:focus-within {
  outline: 2px solid #005EB8 !important;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle i,
nav.menu-widget.navbar .navbar-header .navbar-toggle i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i:after {
  transition: all 0.15s;
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 30px;
  background: #101820;
  position: absolute;
  display: block;
  content: "";
  margin: 0;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i {
  background-color: transparent;
  top: 50%;
  left: 5px;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i:before {
  transform: rotate(45deg);
}
nav.menu-widget.navbar .navbar-header .navbar-toggle i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover i:after {
  transform: rotate(-45deg);
}
nav.menu-widget.navbar .navbar-header .navbar-toggle.collapsed i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus.collapsed i,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover.collapsed i {
  background-color: #101820;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle.collapsed i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus.collapsed i:before,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover.collapsed i:before {
  transform: rotate(0);
  top: -10px;
}
nav.menu-widget.navbar .navbar-header .navbar-toggle.collapsed i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:focus.collapsed i:after,
nav.menu-widget.navbar .navbar-header .navbar-toggle:hover.collapsed i:after {
  transform: rotate(0);
  bottom: -10px;
}

/* $SECTIONS
============= */
main ._nestedContainer {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  main ._nestedContainer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
main ._nestedContainer .gallery_item {
  margin: 10px;
}
main ._nestedContainer.off-white {
  background: #F5F7FA;
}
main ._nestedContainer.featured-speakers .ipWidget-Speaker {
  padding: 30px 0;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor ul li table {
  border: 0 !important;
  margin-left: 0px;
  width: 100% !important;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor ul li table td {
  border: 0 !important;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor ul li table td:nth-child(odd) {
  padding: 10px;
  width: 140px;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor ul li table td:nth-child(odd) img {
  width: 100% !important;
  height: auto !important;
  max-width: 140px;
  min-width: 120px;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor ul li table td h2 {
  font-size: 24px !important;
  font-weight: normal !important;
  margin: 0 !important;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table {
  border: 0 !important;
  margin-left: 62px;
  width: calc(100% - 62px) !important;
}
@media only screen and (max-width: 767px) {
  main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr td {
  border: 0 !important;
}
@media only screen and (max-width: 767px) {
  main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr td {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    align-self: auto;
  }
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr td:nth-child(odd) {
  padding: 10px;
  width: 140px;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr td:nth-child(odd) img {
  width: 100% !important;
  height: auto !important;
  max-width: 140px;
  min-width: 120px;
}
main ._nestedContainer.agenda-section .agenda-content .ipWidget-CKEditor table tr td h2 {
  font-size: 24px !important;
  font-weight: normal !important;
  margin: 0 !important;
}
main ._nestedContainer.flex-row .row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: space-around;
  align-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
main ._nestedContainer.flex-row .row .column {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
}
main ._nestedContainer.register-container h3 {
  color: #6e7275 !important;
}
main ._nestedContainer.register-container.blue-bg h3 {
  color: #fff !important;
}
main ._nestedContainer.button-arrow .ipWidget-Buttons button:after {
  content: "\f178";
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 600 !important;
  padding-left: 8px;
  font-size: 14px;
  line-height: 16px;
}
main ._nestedContainer.package-container .column > .ipBlock {
  box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.2);
  padding: 24px 32px;
}
main ._nestedContainer.custom-agenda-1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  main ._nestedContainer.custom-agenda-1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
main ._nestedContainer.mb-0 {
  margin-bottom: 0 !important;
}
main ._nestedContainer.pb-0 {
  padding-bottom: 0 !important;
}
main ._nestedContainer.pb-10 {
  padding-bottom: 10px !important;
}
main ._nestedContainer.pb-15 {
  padding-bottom: 15px !important;
}
main ._nestedContainer.pb-30 {
  padding-bottom: 30px !important;
}
main ._nestedContainer.map-section {
  padding: 0 !important;
  margin: 0 !important;
}
main ._nestedContainer.map-section .row {
  max-width: unset !important;
  width: 100%;
}
main ._nestedContainer.map-section .row .column {
  padding: 0 !important;
}
main ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div {
  height: 450px;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div {
    height: 250px;
  }
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div iframe {
    height: 250px;
  }
}
main ._nestedContainer.video-section {
  padding-top: 0;
}
main ._nestedContainer.video-section .ipWidget-EImage {
  margin: 0 !important;
}
main ._nestedContainer.video-section img {
  border-radius: 30px;
}
main ._nestedContainer.video-section a {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
}
main ._nestedContainer.video-section a:after {
  content: "\f04b";
  color: #fff;
  font-size: 60px;
  position: absolute;
  z-index: 98;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  background: #005EB8;
  padding: 35px;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  text-align: center;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.video-section a:after {
    padding: 20px 0;
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}
main ._nestedContainer.video-section a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 160px;
  width: 160px;
  background: rgba(255, 255, 255, 0.479);
  z-index: 99;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.video-section a:before {
    width: 100px;
    height: 100px;
  }
}
main ._nestedContainer.blue-bg {
  background: #041e42;
}
main ._nestedContainer.blue-bg * {
  color: #fff !important;
}
main ._nestedContainer.secondary-bg {
  background: #041E42;
}
main ._nestedContainer.secondary-bg * {
  color: #fff !important;
}
main ._nestedContainer.flex-column .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
main ._nestedContainer.flex-column .container .row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  -webkit-align-self: auto;
  align-self: auto;
  margin: 0 !important;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
main ._nestedContainer.flex-column .container .row.bubble {
  display: -webkit-flex;
  display: block;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row.bubble {
    display: flex;
  }
}
main ._nestedContainer.flex-column .container .row.bubble .column {
  position: absolute;
  border-radius: 50%;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row.bubble .column {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    margin: 10px !important;
  }
}
main ._nestedContainer.flex-column .container .row.bubble .column h3 {
  padding: 0 !important;
  margin: 0 !important;
}
main ._nestedContainer.flex-column .container .row.bubble .column p {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 18px !important;
}
main ._nestedContainer.flex-column .container .row.bubble .column:first-child {
  width: 250px;
  height: 250px;
  position: absolute;
  background: rgba(83, 178, 255, 0.5);
  padding: 72px 0;
  z-index: 1;
  border-radius: 50%;
  top: 0;
}
main ._nestedContainer.flex-column .container .row.bubble .column:first-child h3 {
  font-size: 60px !important;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row.bubble .column:first-child {
    padding: 60px 0;
    width: 200px;
    height: 200px;
  }
  main ._nestedContainer.flex-column .container .row.bubble .column:first-child h3 {
    font-size: 50px !important;
  }
}
main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(2) {
  width: 325px;
  height: 325px;
  position: absolute;
  background: rgba(52, 51, 200, 0.5);
  padding: 112px 0;
  border-radius: 50%;
  top: 111px;
  left: 30%;
  z-index: 0;
}
main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(2) h3 {
  font-size: 80px !important;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(2) {
    padding: 60px 0;
    width: 200px;
    height: 200px;
  }
  main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(2) h3 {
    font-size: 50px !important;
  }
}
main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(3) {
  width: 180px;
  height: 180px;
  position: absolute;
  background: rgba(38, 50, 56, 0.5);
  padding: 40px 0;
  left: 66%;
  border-radius: 50%;
  top: 0;
}
main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(3) h3 {
  font-size: 40px !important;
  padding-top: 20px !important;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(3) {
    padding: 60px 0;
    width: 200px;
    height: 200px;
  }
  main ._nestedContainer.flex-column .container .row.bubble .column:nth-child(3) h3 {
    font-size: 50px !important;
    padding-top: 0px !important;
  }
}
main ._nestedContainer.flex-column-grid .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: rap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column-grid .container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
main ._nestedContainer.flex-column-grid .container .row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  -webkit-align-self: auto;
  align-self: auto;
  margin: 0 !important;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column-grid .container .row {
    width: 100%;
  }
}
main ._nestedContainer.flex-column-grid .container .row.flex-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  main ._nestedContainer.flex-column-grid .container .row.flex-grid {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
main ._nestedContainer.flex-column-grid .container .row.flex-grid .column {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
}
main ._nestedContainer.flex-column-grid .container .row.flex-grid .column.col-md-3 {
  width: 50%;
  padding: 5px 20px;
  margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
  main .ipWidget-EImage {
    margin-top: 40px;
  }
}

footer ._nestedContainer.map-section {
  padding: 0 !important;
  margin: 0 !important;
}
footer ._nestedContainer.map-section .row {
  max-width: unset !important;
  width: 100%;
}
footer ._nestedContainer.map-section .row .column {
  padding: 0 !important;
}
footer ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div {
  height: 450px;
}
@media only screen and (max-width: 991px) {
  footer ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div {
    height: 250px;
  }
}
@media only screen and (max-width: 991px) {
  footer ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div iframe {
    height: 250px;
  }
}

body.ipHasAdminNavbar.ipHasAdminPanel footer ._nestedContainer.map-section .row .column .ipWidget-CKEditor > div {
  height: unset !important;
}

div[id][tabindex="-1"]:focus {
  outline: 0;
}

/* $HERO
============= */
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #F5F7FA;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section .row {
  max-width: unset !important;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  align-items: center;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section .row .column {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  align-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section .row .column.slideInLeft {
  animation-delay: 0.5s;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section .row .column.slideInRight {
  animation-delay: 1s;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section.slider .inner-slider {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section.slider .inner-slider .text-left {
  padding-left: 0 !important;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section.slider > .row {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #F5F7FA;
  min-height: 556px;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section.slider > .row .column.slideInLeft {
  animation-delay: 0.5s;
}
body.website:not(.ipHasAdminPanel) ._nestedContainer.hero-section.slider > .row .column.slideInRight {
  animation-delay: 1s;
}
/* $COLOUR SECTIONS
============= */
._nestedContainer {
  background-color: #fff;
}
.ipWidget ._nestedContainer.colour-section {
  background-color: #005EB8;
}
.ipWidget ._nestedContainer.colour-section * {
  color: #fff;
}

/* $WIDGETS
============= */
.ipWidget-Agenda,
.ipWidget-Sponsor {
  margin-top: 40px;
}

/* $CUSTOM SPEAKERS
============= */
.custom-speakers {
  max-width: 1170px;
  margin: 0 auto 80px;
}
.custom-speakers .row {
  margin: 0;
}
.custom-speakers .speaker {
  margin-bottom: 30px;
  border-bottom: 1px solid #6e7275;
  padding-bottom: 30px;
  min-height: 190px;
}
@media only screen and (min-width: 768px) {
  .custom-speakers .speaker .content-wrap {
    margin-left: 200px;
  }
}
.custom-speakers .speaker img {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid #005EB8;
}
@media only screen and (min-width: 768px) {
  .custom-speakers .speaker img {
    float: left;
    margin: 0 30px 0 0;
  }
}
.custom-speakers .speaker span {
  display: block;
  text-decoration: none !important;
}
.custom-speakers .speaker .speaker-name {
  font-size: 20px;
  font-weight: bold;
  color: #005EB8;
}
.custom-speakers .speaker .speaker-title {
  color: #005EB8;
}
.custom-speakers li {
  color: #101820;
}

/* $SPONSORS
============= */
.primary-icon i[class*=fa-] {
  color: #005EB8;
}

body .lg-heading .col-md-6 {
  padding-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  body .lg-heading .col-md-6 {
    min-height: 500px;
  }
}
body .lg-heading .ipWidget h2 {
  font-size: 52px !important;
  padding-bottom: 15px;
}

.blurb {
  margin: 10px 0;
}
.blurb > .ipBlock {
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0px 8px 16px 0px rgba(171, 190, 209, 0.4);
}

/* $SKIP LINK
============= */
.skiplink {
  position: absolute;
  left: 0;
  top: -200px;
  z-index: 99999;
  background-color: #fff;
  color: #101820 !important;
  padding: 10px;
}

.skiplink:focus {
  top: 0;
  clip-path: auto;
}

/* $WEBSITE HELPERS
============= */
.no-pad {
  padding: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.center * {
  text-align: center;
}

/* $CUSTOM ACCORDION
==================== */
body.website:not(.ipHasAdminPanel) .content-heading h2 {
  margin-bottom: 15px !important;
}
body.website:not(.ipHasAdminPanel) .content-heading h3 {
  margin-bottom: 0px !important;
}
body.website:not(.ipHasAdminPanel) .slide-details {
  display: none;
}
body.website:not(.ipHasAdminPanel) .accordion-container .button-group {
  padding: 0 40px 10px;
  text-align: right;
}
body.website:not(.ipHasAdminPanel) .accordion-container .button-group a {
  margin: 0 !important;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  body.website:not(.ipHasAdminPanel) .accordion-container .button-group a {
    width: auto !important;
  }
}
body.website:not(.ipHasAdminPanel) .accordion-container .button-group a.active {
  display: inline-block;
}
body.website:not(.ipHasAdminPanel) .accordion-container .accordion-error {
  padding: 10px 20px;
  color: #E53835;
  text-align: center;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section {
  padding: 0;
  margin: 0;
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  -webkit-align-self: stretch;
  align-self: stretch;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column > .ipBlock {
  border-bottom: 1px solid #6e7275;
  padding: 0;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column .ipWidget-Buttons {
  padding-top: 0 !important;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column.content-heading > .ipBlock {
  border: none !important;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column.content-heading > .ipBlock h2 {
  font-size: 24px !important;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column {
  margin-bottom: 5px;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget:first-child div {
  cursor: pointer;
  padding: 0;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget:first-child div:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free" !important;
  position: absolute;
  top: 15%;
  display: block;
  right: 30px;
  color: #005EB8;
  font-size: 30px;
  line-height: 100%;
  font-weight: 900 !important;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget:first-child div:before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  right: 0;
  background: transparent;
  font-size: 20px;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget:first-child div h3 {
  margin: 0;
  padding: 0 90px 0 0;
  font-size: 24px;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget:first-child div .accordion-button {
  display: block;
  width: 100%;
  color: #101820;
  font-size: 24px !important;
  padding: 10px 0;
  text-decoration: none !important;
  cursor: pointer;
  background: transparent;
  text-align: left;
  border: none;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column.active:not(.content-heading) .ipBlock > .ipWidget:first-child div .accordion-button {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  text-align: left;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column.active:not(.content-heading) .ipBlock > .ipWidget:first-child div:after {
  content: "\f077";
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column.active > .ipBlock {
  border-bottom: 1px solid #6e7275;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget + .ipWidget {
  padding: 0px 0px 10px;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget ~ .ipWidget {
  display: none;
  padding: 0px 0px 10px;
}
body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget + .ipWidget-EImage {
  padding-bottom: 0px !important;
  margin-top: 0 !important;
}
@media only screen and (max-width: 767px) {
  body.website:not(.ipHasAdminPanel) .accordion-container .flex-grid .accordion-section .column:not(.content-heading) .ipBlock > .ipWidget + .ipWidget-EImage img {
    width: 100% !important;
  }
}

@media only screen and (max-width: 991px) {
  #custom .no-pad + .col-md-6 {
    padding: 0;
  }
}
#custom .status {
  padding: 0 40px 15px;
}
#custom .accordion-trigger i {
  margin-right: 8px;
  transition: transform 0.4s;
  transform: rotate(90deg);
}
#custom .accordion-trigger.collapsed i {
  transform: rotate(0deg);
}
#custom .accordion-trigger:hover, #custom .accordion-trigger:active, #custom .accordion-trigger:focus {
  color: #fff !important;
  background: #0B56B1 !important;
  border-color: #0B56B1 !important;
  text-decoration: none !important;
}
#custom .search-container {
  margin-bottom: 20px;
}
#custom .search-container input {
  width: 100%;
  height: 40px;
  padding: 4px 10px 4px 34px;
  border: 0;
  border-radius: 4px;
  background-color: #fff !important;
  border: 1px solid #474c50;
}
#custom .search-container input:focus {
  font-weight: 600 !important;
}
#custom .search-container i.fa-search {
  color: #757575;
  font-size: 16px;
  position: absolute;
  left: 31px;
  top: 14px;
}
#custom .search-container .form-group {
  margin-bottom: 10px !important;
}
#custom .active-filters {
  display: block;
}
#custom .active-filters .filter-group {
  padding: 0 20px 20px 20px;
  border: 2px solid #101820;
  background: #fff;
  margin-bottom: 25px;
  overflow: hidden;
}
#custom .active-filters .filter-group .col-md-6 {
  padding: 0 !important;
}
#custom .active-filters .filter-group .button-link {
  margin-top: 10px !important;
}
#custom .active-filters .filter-group .filters-list {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 992px) {
  #custom .agenda-filter .inner-wrapper {
    width: 220px;
  }
}
@media only screen and (min-width: 1200px) {
  #custom .agenda-filter .inner-wrapper {
    width: 260px;
  }
}
@media only screen and (min-width: 992px) {
  #custom .agenda-filter .inner-wrapper.affix {
    top: 10px;
    max-height: calc(100vh - 10px);
    overflow-y: auto;
    padding-right: 5px;
    min-width: 220px;
  }
}
@media only screen and (min-width: 1200px) {
  #custom .agenda-filter .inner-wrapper.affix {
    min-width: 275px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 991px) {
  #custom .agenda-filter .inner-wrapper.affix {
    min-width: unset !important;
    position: static !important;
    overflow-y: none !important;
    max-height: unset !important;
  }
}
#custom .agenda-filter .filter-wrapper {
  margin-bottom: 20px;
  box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.2);
}
#custom .agenda-filter .filter-wrapper h4 {
  background: #F5F7FA !important;
  font-size: 18px !important;
  color: #005EB8 !important;
  padding: 0px;
  margin: 0;
  font-weight: bold !important;
}
#custom .agenda-filter .filter-wrapper h4 a.accordion-trigger,
#custom .agenda-filter .filter-wrapper h4 a:link.accordion-trigger,
#custom .agenda-filter .filter-wrapper h4 a:visited.accordion-trigger {
  padding: 20px;
  width: 100%;
  font-size: inherit !important;
  color: inherit !important;
  display: block !important;
  font-weight: inherit !important;
}
#custom .agenda-filter .filter-wrapper h4 a:focus, #custom .agenda-filter .filter-wrapper h4 a:hover,
#custom .agenda-filter .filter-wrapper h4 a:link:focus,
#custom .agenda-filter .filter-wrapper h4 a:link:hover,
#custom .agenda-filter .filter-wrapper h4 a:visited:focus,
#custom .agenda-filter .filter-wrapper h4 a:visited:hover {
  text-decoration: none !important;
  color: #fff !important;
}
#custom .agenda-filter .filter-wrapper .filter-container {
  background: #fff;
  padding: 20px;
}
#custom .agenda-filter .filter-wrapper .filter-container .checkbox {
  margin: 0 !important;
}
#custom .session {
  padding: 30px;
  border: 1px solid #0B56B1;
  background: #fff;
  margin-bottom: 25px;
}
#custom .session .session-heading {
  padding-bottom: 15px;
}
#custom .session h4.session-name {
  font-size: 21px !important;
  margin: 0 !important;
}
#custom .session .description-content {
  padding: 15px 0;
}
#custom .session .button-link {
  margin-bottom: 0 !important;
  font-weight: bold;
}
#custom .session .speaker-list {
  border-top: 1px solid #0B56B1;
  margin-top: 10px;
}
#custom .session .speaker-list .speaker {
  padding: 0 !important;
}
#custom .session .speaker-list .speaker .speaker-details {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.agenda .controls {
  text-align: center;
  display: flex;
}
.agenda .controls a {
  font-size: 18px !important;
  font-weight: 600;
  color: #101820;
  flex-basis: 100%;
  display: inline-block;
  border: 4px solid #101820;
  background-color: #005EB8;
  padding: 10px;
  text-decoration: none !important;
}
.agenda .controls a + a {
  border-left: 0;
}
.agenda .controls .active {
  cursor: initial;
  background-color: #041E42;
  position: relative;
}
.agenda .controls .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid #041E42;
}

/* $Custom Agenda
============= */
body.advanceagenda .agenda-container {
  background: #F5F7FA;
  overflow: hidden;
}
body.advanceagenda .agenda-container .agenda-filter-option {
  border-bottom: 1px solid #abbed1;
  background: #005EB8 !important;
  margin: 0;
  padding-bottom: 10px;
}
body.advanceagenda .agenda-container .agenda-filter-option ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
body.advanceagenda .agenda-container .agenda-filter-option ul li {
  display: inline-block;
  padding: 0 5px;
  text-align: center;
}
body.advanceagenda .agenda-container .agenda-filter-option ul li:last-child {
  border: none !important;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .agenda-filter-option ul li {
    width: 100%;
    padding: 5px;
    border: none;
  }
}
body.advanceagenda .agenda-container .agenda-filter-option ul li a.agenda-filter {
  background: #005EB8 !important;
  border: 1px solid #abbed1 !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  color: #fff !important;
  white-space: inherit !important;
  padding: 14px 32px !important;
  text-align: center;
  margin: 10px 0 0;
}
body.advanceagenda .agenda-container .agenda-filter-option ul li a.agenda-filter .tab-day {
  display: block;
  clear: both;
  width: 100%;
  font-size: 12px !important;
  font-weight: 300;
}
body.advanceagenda .agenda-container .agenda-filter-option ul li a.agenda-filter .tab-date {
  display: block;
  clear: both;
  width: 100%;
  font-weight: 900;
}
body.advanceagenda .agenda-container .agenda-filter-option ul li a.agenda-filter.active, body.advanceagenda .agenda-container .agenda-filter-option ul li a.agenda-filter:hover {
  background: #fff !important;
  color: #005EB8 !important;
  box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.2);
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .agenda-session {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
body.advanceagenda .agenda-container .session {
  border-bottom: 1px solid #abbed1;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
body.advanceagenda .agenda-container .session .speaker-column {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
  text-align: center;
  padding: 0 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: space-around;
  align-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 975px) {
  body.advanceagenda .agenda-container .session .speaker-column {
    padding: 0 40px 0 0;
  }
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column {
    padding-left: 0 !important;
    padding-right: 0 !important;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
body.advanceagenda .agenda-container .session .speaker-column .profile-icon {
  border: 10px solid rgba(171, 190, 209, 0.5);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  padding: 18px 15px;
}
body.advanceagenda .agenda-container .session .speaker-column .profile-icon img {
  width: 50px;
  height: 50px;
}
body.advanceagenda .agenda-container .session .speaker-column figure {
  border-radius: 100%;
  overflow: hidden;
  text-align: center;
  max-width: 155px;
  max-height: 155px;
  background: transparent;
  margin: 0 auto 20px;
  cursor: pointer;
}
body.advanceagenda .agenda-container .session .speaker-column figure:not(:first-child) {
  margin-top: -70px;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column figure:not(:first-child) {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column figure {
    cursor: inherit;
  }
}
body.advanceagenda .agenda-container .session .speaker-column figure:hover {
  position: relative;
  overflow: visible;
  z-index: 99;
}
body.advanceagenda .agenda-container .session .speaker-column figure img {
  max-width: 100%;
  height: auto;
  border: 10px solid rgba(171, 190, 209, 0.5);
  border-radius: 100%;
  display: inline-block;
}
body.advanceagenda .agenda-container .session .speaker-column figure figcaption {
  position: absolute;
  padding: 0 5px;
  text-align: center;
  left: 0;
  right: 0;
  display: none;
  cursor: pointer;
  z-index: 9999;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column figure figcaption {
    cursor: inherit;
  }
}
body.advanceagenda .agenda-container .session .speaker-column figure figcaption:after {
  content: "\f0d8";
  font-family: "Font Awesome 6 Free";
  display: block;
  color: #fff;
  top: -22px;
  font-weight: 600;
  position: absolute;
  font-size: 26px;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column figure figcaption:after {
    display: block !important;
  }
}
body.advanceagenda .agenda-container .session .speaker-column figure figcaption p {
  padding: 5px 15px;
  margin: 0;
  border: none;
  background: #fff;
  color: #101820;
  display: inline-block;
  border-radius: 15px;
  -webkit-box-shadow: 0px 8px 6px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 8px 6px -6px rgba(0, 0, 0, 0.5);
}
body.advanceagenda .agenda-container .session .speaker-column figure:hover figcaption {
  display: block;
}
body.advanceagenda .agenda-container .session .speaker-column p {
  border-top: 1px solid #abbed1;
  padding: 20px 0 0;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .speaker-column p {
    border: none;
    padding: 0 0 10px;
    margin-top: 50px;
  }
}
body.advanceagenda .agenda-container .session .speaker-column p a {
  color: #101820;
  font-size: 14px;
  margin: 0 2px 5px 0;
  transition: font-size 0.35s ease;
  border: 1px solid #abbed1;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 4px;
}
body.advanceagenda .agenda-container .session .speaker-column p a:hover {
  background: #fff;
  color: #f25421;
}
body.advanceagenda .agenda-container .session .session-content {
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
  border-left: 1px solid #abbed1;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .session-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: none;
    border-top: none;
    padding-top: 30px;
  }
}
body.advanceagenda .agenda-container .session .session-content h3 {
  color: #101820;
  margin: 0 !important;
  font-weight: bold;
  padding: 0 0 15px;
}
body.advanceagenda .agenda-container .session .session-content .session-description .description-content {
  font-size: 16px;
  color: #101820;
  line-height: 1.8;
}
body.advanceagenda .agenda-container .session .session-content .session-description .description-content.collapse[aria-expanded=false] {
  display: block;
  height: 0rem !important;
  overflow: hidden;
}
body.advanceagenda .agenda-container .session .session-content .session-description .description-content.collapsing[aria-expanded=false] {
  height: 0rem !important;
}
body.advanceagenda .agenda-container .session .session-content .session-description a,
body.advanceagenda .agenda-container .session .session-content .session-description a:visited,
body.advanceagenda .agenda-container .session .session-content .session-description a:link {
  color: #005EB8 !important;
  text-decoration: underline !important;
}
body.advanceagenda .agenda-container .session .session-content .session-description a:hover,
body.advanceagenda .agenda-container .session .session-content .session-description a:visited:hover,
body.advanceagenda .agenda-container .session .session-content .session-description a:link:hover {
  color: #101820 !important;
}
body.advanceagenda .agenda-container .session .session-content .session-description a.collapsed:after {
  content: "+ Show More";
}
body.advanceagenda .agenda-container .session .session-content .session-description a:not(.collapsed)::after {
  content: "- Show Less";
}
body.advanceagenda .agenda-container .session .session-content .session-details {
  padding: 0 18px;
  color: #101820;
  clear: both;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .session-content .session-details {
    border-top: 1px dotted #abbed1;
    padding-top: 15px;
    margin-top: 15px;
    float: none;
    display: inline-block;
    width: 100%;
  }
}
body.advanceagenda .agenda-container .session .session-content .session-details [class*=col-] {
  border-top: 1px solid #abbed1;
  font-size: 17px;
  margin-top: 15px;
  padding-top: 22px;
  padding-bottom: 22px;
  padding: 22px 0 12px;
}
@media only screen and (max-width: 752px) {
  body.advanceagenda .agenda-container .session .session-content .session-details [class*=col-] {
    border: none;
    margin: 0;
    padding: 0;
  }
}
body.advanceagenda .agenda-container .session .session-content .session-details p {
  padding: 0;
  margin: 0;
}
body.advanceagenda body.ipHasAdminNavbar.ipHasAdminPanel .speaker-modal,
body.advanceagenda body.ipHasAdminNavbar.ipHasAdminPanel .modal {
  display: none !important;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) {
  /* //////////////////////////////////////////////////// */
  /* Custom Modal */
  /* //////////////////////////////////////////////////// */
  /*  ====================== Modal Default ====================== */
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
  z-index: 999999;
  -webkit-box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 768px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
    right: -640px;
  }
}
@media only screen and (min-width: 1024px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
    right: -880px;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.right.fade.in {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.right.fade.in .modal-dialog {
  right: 0;
  left: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
  z-index: 999999;
}
@media only screen and (min-width: 768px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
    left: -640px;
  }
}
@media only screen and (min-width: 1024px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
    left: -880px;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.left.fade.in .modal-dialog {
  left: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-dialog {
  background: #fff;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  z-index: 999999;
  top: 10%;
}
@media (max-width: 576px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-dialog {
    top: 5%;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-body {
  padding: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-body .modal-profile-image {
  padding: 15px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-body .modal-profile-image .profile-image {
  margin: 0 auto;
  border-radius: 100%;
  position: relative;
  width: 240px;
  height: 240px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-body .modal-profile-image .profile-image {
    width: 240px;
    height: 240px;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .modal-body .modal-profile-image .profile-image img {
  width: 100%;
  height: auto;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .social-media {
  padding: 10px 0;
  margin: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .social-media li {
  display: inline-block;
  padding-right: 10px;
  padding-bottom: 0;
  margin: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .social-media li:last-child {
  padding-right: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .social-media li a {
  font-size: 16px;
  background: #fff;
  color: #041E42 !important;
  border: 1px solid #041E42 !important;
  display: inline-block;
  padding: 4px 9px;
  border-radius: 50%;
  width: 35px;
  text-align: center;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .social-media li a:hover {
  background: #041E42 !important;
  color: #fff !important;
  border: 1px solid #041E42;
  padding: 4px 9px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal h5 {
  color: #101820;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 16px;
  margin: 0;
}
@media (min-width: 991px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-details.col-md-6 {
    height: 400px;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions {
  padding: 30px;
  overflow: hidden;
  position: relative;
  top: 0;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: inset 0px 5px 9px -5px rgb(0, 0, 0);
  -moz-box-shadow: inset 0px 5px 9px -5px rgb(0, 0, 0);
  box-shadow: inset 0px 5px 9px -5px rgb(0, 0, 0);
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .container {
  background: #fff;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions h5 {
  font-size: 18px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details {
  border-bottom: 1px dotted #041E42;
  padding: 10px 0;
  overflow: visible;
  display: inline-block;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details .col-md-3 {
  padding: 0;
}
@media (min-width: 576px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details .col-md-6 {
    padding: 0;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details h4 {
  font-size: 18px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details:last-child {
  padding-bottom: 10px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details p {
  padding: 0;
  margin: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .speaker-title {
  font-size: 16px !important;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .bio {
  height: 240px;
  font-size: 14px !important;
  overflow-y: auto;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .bio {
    height: auto;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .bio p {
  font-size: 14px !important;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .bio a {
  color: #041E42;
  font-size: inherit !important;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal .name-speaker {
  padding-top: 20px;
  margin-top: 0;
  color: #041E42 !important;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .close-col {
  padding-left: 0;
  position: relative;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .close-col button.close {
  border: 2px solid #eceff1;
  padding: 16px 20px;
}
body.advanceagenda body.website:not(.ipHasAdminPanel).modal-open {
  overflow: hidden;
}
body.advanceagenda body.website:not(.ipHasAdminPanel).modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media screen and (prefers-reduced-motion: reduce) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.fade .modal-dialog {
    transition: none;
  }
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.3rem;
  outline: 0;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #101820;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-backdrop.fade {
  opacity: 0.5;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-backdrop.show {
  opacity: 0.5;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #eceff1;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #eceff1;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-lg,
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  body.advanceagenda body.website:not(.ipHasAdminPanel) .modal-xl {
    max-width: 1140px;
  }
}

/* $Custom Speakers
============= */
body.customspeakers:not(.ipHasAdminPanel) {
  /* //////////////////////////////////////////////////// */
  /* Custom Modal */
  /* //////////////////////////////////////////////////// */
  /*  ====================== Modal Default ====================== */
}
body.customspeakers:not(.ipHasAdminPanel) .img-responsive {
  width: 100%;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content {
  background: #fff;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  margin: 15px 0;
  box-shadow: 0px 8px 16px 0px rgba(171, 190, 209, 0.4);
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper .speaker-details {
  padding: 10px 15px 15px;
  background: #F5F7FA;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper .speaker-details h4 {
  margin: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper .speaker-details .speaker-name a {
  text-decoration: none;
  color: #101820;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper .speaker-details .speaker-title,
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker .content-wrapper .speaker-details .speaker-company {
  color: #6e7275;
  font-size: 14px;
  margin: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker figure {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  -webkit-transform: translateZ(0px);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  border-radius: 12px 12px 0 0;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker figure img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
body.customspeakers:not(.ipHasAdminPanel) .speaker-content .speaker figure:hover img {
  -webkit-transform: scale3d(1.4, 1.4, 1) translate3d(0, 0, 0);
  transform: scale3d(1.4, 1.4, 1) translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
body.customspeakers:not(.ipHasAdminPanel) .keyspeaker {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #005EB8;
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  border-radius: 12px 0 12px 0;
  padding: 8px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
  border-radius: 12px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
  z-index: 999999;
  -webkit-box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 3px 22px -4px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 768px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
    right: -640px;
  }
}
@media only screen and (min-width: 1024px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal.right.fade .modal-dialog {
    right: -880px;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal.right.fade.in {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
}
body.customspeakers:not(.ipHasAdminPanel) .modal.right.fade.in .modal-dialog {
  right: 0;
  left: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
  border-radius: 12px;
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
  z-index: 999999;
}
@media only screen and (min-width: 768px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
    left: -640px;
  }
}
@media only screen and (min-width: 1024px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal.left.fade .modal-dialog {
    left: -880px;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal.left.fade.in .modal-dialog {
  left: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .modal-dialog {
  border-radius: 12px;
  background: #fff;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  z-index: 999999;
  top: 10%;
}
@media (max-width: 576px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal .modal-dialog {
    top: 5%;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal .modal-body {
  padding: 0;
  border-radius: 12px 12px 0 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .modal-body .modal-profile-image {
  padding: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .social-media {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal .social-media {
    padding: 5px 0;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal .social-media li {
  display: inline-block;
  padding-right: 5px;
  padding-bottom: 0;
  margin: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .social-media li:last-child {
  padding-right: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .social-media li a {
  font-size: 20px;
  background-color: rgba(171, 190, 209, 0.4);
  color: #005EB8;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 50%;
  width: 40px;
  text-align: center;
  height: 40px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .social-media li a:hover {
  background: #abbed1;
  color: #fff;
}
body.customspeakers:not(.ipHasAdminPanel) .modal h5 {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #abbed1;
  padding-bottom: 10px;
  margin: 0;
}
@media (min-width: 991px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-details.col-md-6 {
    height: 400px;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions {
  padding: 30px 30px 20px;
  overflow: hidden;
  position: relative;
  top: 0;
  background: #F5F7FA;
  width: 100%;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions h5 {
  font-size: 18px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details {
  border-bottom: 2px dotted #abbed1;
  padding: 10px 0;
  overflow: visible;
  display: inline-block;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details .col-md-3 {
  padding: 0;
}
@media (min-width: 576px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details .col-md-6 {
    padding: 0;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details h4 {
  font-size: 18px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details:last-child {
  border-bottom: 1px solid #abbed1;
  padding-bottom: 10px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-sessions .session-details p {
  padding: 0;
  margin: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .speaker-title {
  font-size: 13px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .bio {
  height: 266px;
  overflow-y: auto;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal .bio {
    height: auto;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal .bio p {
  font-size: 14px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal .name-speaker {
  padding-top: 20px;
  margin-top: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .close-col {
  padding-left: 0;
  position: relative;
  right: -20px;
}
body.customspeakers:not(.ipHasAdminPanel) .close-col button.close {
  border: 1px solid #abbed1;
  padding: 15px 20px;
}
body.customspeakers:not(.ipHasAdminPanel).modal-open {
  overflow: hidden;
}
body.customspeakers:not(.ipHasAdminPanel).modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
body.customspeakers:not(.ipHasAdminPanel) .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
  border-radius: 12px;
}
body.customspeakers:not(.ipHasAdminPanel) .modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@media screen and (prefers-reduced-motion: reduce) {
  body.customspeakers:not(.ipHasAdminPanel) .modal.fade .modal-dialog {
    transition: none;
  }
}
body.customspeakers:not(.ipHasAdminPanel) .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}
body.customspeakers:not(.ipHasAdminPanel) .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
body.customspeakers:not(.ipHasAdminPanel) .modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 12px;
  outline: 0;
  overflow: hidden;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #474c50;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-backdrop.fade {
  opacity: 0.5;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-backdrop.show {
  opacity: 0.5;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #abbed1;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #abbed1;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
body.customspeakers:not(.ipHasAdminPanel) .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  body.customspeakers:not(.ipHasAdminPanel) .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  body.customspeakers:not(.ipHasAdminPanel) .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  body.customspeakers:not(.ipHasAdminPanel) .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal-lg,
  body.customspeakers:not(.ipHasAdminPanel) .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  body.customspeakers:not(.ipHasAdminPanel) .modal-xl {
    max-width: 1140px;
  }
}

body.ipHasAdminNavbar.ipHasAdminPanel main .modal {
  display: none !important;
}
body.website:not(.ipHasAdminPanel) .multiple-images {
  position: relative;
}
body.website:not(.ipHasAdminPanel) .multiple-images > .ipBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: -100px;
}
body.website:not(.ipHasAdminPanel) .multiple-images > .ipBlock .ipWidget-EImage {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  align-self: auto;
}
body.website:not(.ipHasAdminPanel) .multiple-images > .ipBlock .ipWidget-EImage img {
  border: 10px solid #fff;
  box-shadow: 0px 8px 16px 0px rgba(171, 190, 209, 0.7);
}
body.website:not(.ipHasAdminPanel) .multiple-images > .ipBlock .ipWidget-EImage img:first-child {
  max-width: 450px;
}
body.website:not(.ipHasAdminPanel) .multiple-images > .ipBlock .ipWidget-EImage:not(:first-child) {
  z-index: 1;
  bottom: 100px;
  right: -90px;
}

.ipWidget-CKEditor p + ul,
.ipWidget-CKEditor p + ol {
  margin-top: 0 !important;
}
.ipWidget-CKEditor ul {
  list-style-type: disc !important;
}

.pricing-section,
.tickets-section {
  background: #fff;
  padding: 80px 15px;
}
.pricing-section .column:not(.section-heading),
.tickets-section .column:not(.section-heading) {
  padding: 60px 20px;
}
.pricing-section .column:not(.section-heading) .ipBlock,
.tickets-section .column:not(.section-heading) .ipBlock {
  border: 1px solid #abbed1;
  border-radius: 25px;
  padding: 30px 0;
  box-shadow: 0px 8px 16px 0px rgba(171, 190, 209, 0.4);
  text-align: center;
}
.pricing-section .column:not(.section-heading) .ipBlock h2,
.tickets-section .column:not(.section-heading) .ipBlock h2 {
  font-size: 60px;
  padding: 15px 0;
  margin: 0;
  color: #0B56B1;
}
.pricing-section .column:not(.section-heading) .ipBlock h3,
.tickets-section .column:not(.section-heading) .ipBlock h3 {
  padding: 0;
  margin: 0;
}
.pricing-section .column:not(.section-heading) .ipBlock h4,
.tickets-section .column:not(.section-heading) .ipBlock h4 {
  padding: 0 0 15px;
}
.pricing-section .column:not(.section-heading) .ipBlock hr,
.tickets-section .column:not(.section-heading) .ipBlock hr {
  border-top: 1px solid #6e7275;
  margin-bottom: 30px;
  margin-top: 30px;
}
.pricing-section .column:not(.section-heading) .ipBlock ul,
.tickets-section .column:not(.section-heading) .ipBlock ul {
  list-style-type: none;
  margin: auto;
  padding: 0 20px;
}
.pricing-section .column:not(.section-heading) .ipBlock ul li,
.tickets-section .column:not(.section-heading) .ipBlock ul li {
  padding-bottom: 10px;
}
.pricing-section .column:not(.section-heading) .ipBlock ul li:last-child,
.tickets-section .column:not(.section-heading) .ipBlock ul li:last-child {
  padding-bottom: 0;
}
.pricing-section .column:not(.section-heading) .ipBlock .ipWidget,
.tickets-section .column:not(.section-heading) .ipBlock .ipWidget {
  padding: 15px;
}
.pricing-section .column:not(.section-heading) .ipBlock .ipWidget-Buttons .row,
.tickets-section .column:not(.section-heading) .ipBlock .ipWidget-Buttons .row {
  margin: 0;
  padding: 15px 0 0 0;
}
.pricing-section .column:not(.section-heading) .ipBlock .ipWidget-Buttons .row button,
.tickets-section .column:not(.section-heading) .ipBlock .ipWidget-Buttons .row button {
  margin: 0;
}
.pricing-section .column:not(.section-heading).active,
.tickets-section .column:not(.section-heading).active {
  padding: 30px 20px 0;
}
.pricing-section .column:not(.section-heading).active .ipBlock,
.tickets-section .column:not(.section-heading).active .ipBlock {
  padding: 60px 0;
}

#colorbox,
#cboxWrapper,
#cboxContent {
  overflow: visible !important;
}

#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight,
#cboxMiddleRight,
#cboxMiddleLeft,
#cboxTopCenter,
#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight {
  display: none !important;
}

div#cboxOverlay {
  background: #101820;
}
div#cboxOverlay::before {
  content: "";
  position: absolute;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  top: 15%;
  bottom: 15%;
  left: 0;
  right: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

#cboxContent {
  background: #abbed1 !important;
  padding: 25px 25px 0;
  border-radius: 12px;
}
#cboxContent p {
  font-size: 20px;
  margin-bottom: 1em;
}
#cboxContent h2 {
  color: #005EB8;
}
#cboxContent p,
#cboxContent a:hover,
#cboxContent a:focus {
  color: #fff;
}
#cboxContent #cboxClose {
  color: #F5F7FA;
  width: 50px;
  height: 50px;
  right: -50px;
  top: -25px;
  transform: translateX(-50%);
  background: #005EB8 !important;
  border-radius: 50%;
  font-size: 24px;
}
#cboxContent #cboxClose:before {
  content: "\f057";
  font-family: "Font Awesome 6 Free" !important;
  font-size: 40px;
  color: #fff !important;
  font-weight: 400 !important;
  text-indent: 0;
  position: absolute;
  left: 0;
  top: -5px;
  right: 0;
  text-decoration: none;
}
#cboxContent #cboxClose:hover, #cboxContent #cboxClose:focus {
  color: #fff !important;
  background: #0B56B1 !important;
}
#cboxContent #cboxClose .close-icon {
  background-color: transparent;
}
#cboxContent #cboxClose .close-icon::before {
  font-size: 50px;
}

/*# sourceMappingURL=master-website.css.map */
