@charset "UTF-8";
/* ==========================================================================
   #MAIN
   ========================================================================== */
/**
 * Main project CSS.
 */
/**
 * LIBS
 * mq: https://github.com/sass-mq/sass-mq
 */
/**
 * TOOLS
 * Site-wide mixins and functions.
 */
/* ==========================================================================
   #MIXINS
   ========================================================================== */
/**
 * A collection of generic/handy(!) mixins.
 */
/**
 * Generate a font size in rem units from a given pixel value.
 *
 * This is a bit of a cut down version of the inuit font-size mixin:
 * https://github.com/inuitcss/inuitcss/blob/develop/tools/_tools.font-size.scss
 *
 * 1. Old IE fallback. Maybe not necessary but we'll leave this in for now (stylint doesn't
 *    like it though).
 * 2. Font size in rem units.
 *
 * @param $font-size   [size of font needed in pixels. E.g. 16px]
 */
/* stylelint-disable */
/* stylelint-enable */
/**
 * Display related mixins.
 *
 * 1. Visually hide an element. This is an accessibile way of "hiding" an element from view
 *    while keeping it focusable (http://snook.ca/archives/html_and_css/hiding-content-for-accessibility)
 *
 * 2. Hide the text in an element.
 *
 * 3. http://www.cssmojo.com/the-very-latest-clearfix-reloaded/
 *
 */
/**
 * Function to get a colour value from the map defined in
 * `settings.colours`.
 *
 * Example usage:
 *
 * Default colour:  colour(red);
 * Shade selection: colour(red, light);
 */
/**
 * Webfont `font-family` declaration.
 *
 * If the webfont is loaded (see `fonts.scss`), use the webfont family
 * decaration defined in `settings.global`.
 */
/**
 * SETTINGS
 * Global config files.
 */
/* ==========================================================================
   #COLOURS
   ========================================================================== */
/**
 * Define frequently used project level (e.g. brand) colours.
 *
 * Use the `colour()` function to retrieve a value from this
 * map. Function defined in (`tools.mixins`).
 *
 * All hex values taken from Gymnation brand guidelines v3.
 */
/* ==========================================================================
   #GLOBAL
   ========================================================================== */
/**
 * Project level generic configuration settings.
 *
 * This should include configuration for values such as base type styles,
 * UI config values (e.g. for consistent styling of components).
 *
 * These values should be updated on a per project basis.
 */
/* ==========================================================================
   #MQ
   ========================================================================== */
/**
 * Configuration for the mq() sass mixin lib:
 * https://github.com/sass-mq/sass-mq
 */
/**
 * GENERIC
 * Base/reset or globally available generic styles.
 */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: "Montserrat", sans-serif;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
  font-family: "Montserrat", sans-serif;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: "Montserrat", sans-serif;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Montserrat", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * Some futher generic global resets to extend normalize.
 *
 * 1. See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 * 2. inuitcss: Ensure the page always fills at least the entire height of the viewport.
 * 3. Remove default margins. We'll redeclare them in `generic.global`.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* stylelint-disable */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* stylelint-enable */
/**
 * <nav /> element resets.
 * 1. Remove spacing from any <ul /> elements inside a <nav /> element.
 */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
}

/**
 * <img /> element resets.
 * Credit: https://github.com/inuitcss/inuitcss/blob/develop/elements/_elements.images.scss
 *
 * 1. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/**
 * <form /> element resets.
 * 1. To override _normalize.css setting.
 */
form input[type=search] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * <a /> element resets.
 *
 * 1. Force long email addresses to fall onto multiple lines.
 */
a[href^="mailto:"] {
  word-break: break-all;
}

/* ==========================================================================
   #GLOBAL
   ========================================================================== */
/**
 * Global level styles.
 * These should be styles that affect elements site wide (sort of like a project
 * specific reset).
 *
 * Base font sizes, colours or any other default styles for the project should be
 * defined in here.
 *
 * Global config defined in: settings/_global.scss
 *
 * 1. Always declare margins in the same direction:
 *    csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**/
html {
  font-size: 1em;
  letter-spacing: 0.075em;
  line-height: 1.5;
}

body {
  background-color: #fff;
  color: #022a3a;
  -webkit-tap-highlight-color: transparent;
}

/* stylelint-disable */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 21px;
}

/* stylelint-enable */
a {
  color: #022a3a;
  text-decoration: none;
}

b {
  font-weight: 700;
}

#UmbErrorMsgCustom {
  display: none;
}

/**
 * ELEMENTS.
 * HTML element specific (headings, images etc) default styles.
 */
/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Default styles for headings 1 - 6.
 *
 * Anything more specific than the font family, weight and size or heading
 * variations should be applied via targeted classes, rather than the default.
 *
 * The $project-heading-sizes should be configured on a per-project basis
 * but these will make an ok default.
 */
h1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* ==========================================================================
   #FORMS
   ========================================================================== */
/**
 * Default styles for <form /> and <input /> elements. All elements of
 * this type will inherit these styles.
 */
label {
  cursor: pointer;
}

input[type=button],
input[type=submit],
input[type=reset],
button[type=submit] {
  cursor: pointer;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Montserrat", sans-serif;
}

/**
 * OBJECTS.
 * Abstracted object styles (design patterns etc).
 */
/* ==========================================================================
   #ICON
   ========================================================================== */
/**
 * SVG icons are part of the SVG spritesheet automatically generated by the
 * `gulp icons` task from any .svg files in ./svg.
 *
 * If no icons will be used in this project, you can safely remove this file.
 *
 * 1. Setting a default size incase the viewbox is massive.
 */
.o-icon {
  display: inline-block;
  height: 40px;
  width: 40px;
}

.instagram-detail .o-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
}

/**
 * Icon contain.
 */
.o-icon-contain {
  border: 3px solid #022a3a;
  border-radius: 50%;
  display: block;
  height: 65px;
  line-height: 54px;
  outline: 0;
  text-align: center;
  vertical-align: middle;
  width: 65px;
}
.o-icon-contain > .o-icon {
  vertical-align: middle;
}
@media (max-width: 580px) {
  .o-icon-contain {
    height: 50px;
    line-height: 41px;
    width: 50px;
  }
}

.o-icon-contain:hover {
  background: #022a3a;
}

.app-img {
  margin-bottom: 10px;
  max-height: 57px;
  max-width: 200px;
}
@media (max-width: 580px) {
  .app-img {
    max-width: 150px;
  }
}

.o-icon-contain:hover svg {
  fill: #f4cd00;
}

.o-icon-contain--fill {
  background-color: #022a3a;
  border: 0;
}

.app-btn img:hover {
  background-color: black;
  border-radius: 11px;
  -webkit-box-shadow: 1px 3px 10px black;
          box-shadow: 1px 3px 10px black;
}

.app-btn img {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* ==========================================================================
   #PACK
   ========================================================================== */
/**
 * Source: inuitcss (https://github.com/inuitcss/inuitcss)
 *
 * The pack object simply causes any number of elements pack up horizontally to
 * automatically fill an equal, fluid width of their parent.
 *
 * 1. Fill all available space.
 * 2. Remove any leftover styling from lists.
 * 3. Cause children to be automatically equally sized.
 */
.o-pack {
  display: table;
  margin-left: 0;
  /* [2] */
  table-layout: fixed;
  /* [3] */
  width: 100%;
  /* [1] */
}

/**
* 1. Cause children to adopt table-like structure.
* 2. Default item alignment is with the tops of each other.
*/
.o-pack__item {
  display: table-cell;
  /* [1] */
  vertical-align: top;
  /* [2] */
}
.o-pack--middle > .o-pack__item {
  vertical-align: middle;
}
.o-pack--bottom > .o-pack__item {
  vertical-align: bottom;
}

/**
 * Unequal-width items.
 */
.o-pack--auto {
  table-layout: auto;
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system from inuitcss: https://github.com/inuitcss/inuitcss
 *
 * The layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width utilities, for example:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-width-1/2">
 *     </div>
 *     <div class="o-layout__item  u-width-1/2">
 *     </div>
 *   </div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-width-1/1  u-width-1/3@tablet">
 *     </div>
 *     <div class="o-layout__item  u-width-1/2  u-width-1/3@tablet">
 *     </div>
 *     <div class="o-layout__item  u-width-1/2  u-width-1/3@tablet">
 *     </div>
 *   </div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our tablet breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the tablet breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of modifiers
 * to the `.o-layout` block. For example:
 *
 *   <div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *   <div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes.
   ========================================================================== */
/**
 * 1. Allows us to use the layout object on any type of element.
 * 2. We need to defensively reset any box-model properties.
 * 3. Use the negative margin trick for multi-row grids:
 *    http://csswizardry.com/2011/08/building-better-grid-systems/
 */
.o-layout {
  display: block;
  /* [1] */
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  margin-left: -21px;
  /* [3] */
  padding: 0;
  /* [2] */
  font-size: 0;
  letter-spacing: 0.075em;
}

/**
* 1. Required in order to combine fluid widths with fixed gutters.
* 2. Allows us to manipulate grids vertically, with text-level properties,
*    etc.
* 3. Default item alignment is with the tops of each other, like most
*    traditional grid/layout systems.
* 4. By default, all layout items are full-width (mobile first).
* 5. Gutters provided by left padding:
*    http://csswizardry.com/2011/08/building-better-grid-systems/
* 6. Fallback for old IEs not supporting `rem` values.
*/
.o-layout__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* [1] */
  display: inline-block;
  /* [2] */
  letter-spacing: 0.075em;
  padding-left: 21px;
  /* [5] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  /* stylelint-disable */
  font-size: 16px;
  /* [6] */
  font-size: 1rem;
  /* stylelint-enable */
}

/* Gutter size modifiers.
   ========================================================================== */
.o-layout--flush {
  margin-left: 0;
}
.o-layout--flush > .o-layout__item {
  padding-left: 0;
}

.o-layout--medium {
  margin-left: -42px;
}
.o-layout--medium > .o-layout__item {
  padding-left: 42px;
}
@media (max-width: 979px) {
  .o-layout--medium.o-layout-md-medium {
    margin-left: -21px;
  }
}
@media (max-width: 979px) {
  .o-layout--medium.o-layout-md-medium > .o-layout__item {
    padding-left: 21px;
  }
}

.o-layout--small {
  margin-left: -11px;
}
.o-layout--small > .o-layout__item {
  padding-left: 11px;
}

/* Vertical alignment modifiers.
   ========================================================================== */
/**
 * Align all grid items to the middles of each other.
 */
.o-layout--middle > .o-layout__item {
  vertical-align: middle;
}

/**
 * Align all grid items to the bottoms of each other.
 */
.o-layout--bottom > .o-layout__item {
  vertical-align: bottom;
}

/**
 * Stretch all grid items of each row to have an equal-height.
 * Please be aware that this modifier class doesn't take any effect in IE9 and
 * below and other older browsers due to the lack of `display: flex` support.
 */
.o-layout--stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.o-layout--stretch > .o-layout__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.o-layout--stretch.o-layout--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Fill order modifiers.
   ========================================================================== */
/**
 * Fill up the layout system from the centre.
 */
.o-layout--center {
  text-align: center;
}
.o-layout--center > .o-layout__item {
  text-align: left;
}

/**
 * Fill up the layout system from the right-hand side.
 */
.o-layout--right {
  text-align: right;
}
.o-layout--right > .o-layout__item {
  text-align: left;
}

/**
 * Fill up the layout system from the left-hand side. This will likely only be
 * needed when using in conjunction with `.o-layout--reverse`.
*/
.o-layout--left {
  text-align: left;
}
.o-layout--left > .o-layout__item {
  text-align: left;
}

/**
 * Reverse the rendered order of the grid system.
 */
.o-layout--reverse {
  direction: rtl;
}
.o-layout--reverse > .o-layout__item {
  direction: ltr;
}

/* Auto-widths modifier.
   ========================================================================== */
/**
 * Cause layout items to take up a non-explicit amount of width.
 */
.o-layout--auto > .o-layout__item {
  width: auto;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 *
 * 1. max-width of the wrapper element (px).
 * 2. A larger gutter on > desktop viewports (requested by creative).
 */
.o-wrapper {
  margin: 0 auto;
  max-width: 1366px;
  padding-left: 21px;
  padding-right: 21px;
}
.o-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 61.25em) {
  .o-wrapper {
    padding-left: 42px;
    padding-right: 42px;
  }
}
.r-wrapper {
  margin: 0 auto;
  max-width: 1366px;
  padding-left: 40px;
  padding-right: 21px;
}
.r-wrapper::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 61.25em) {
  .r-wrapper {
    padding-left: 42px;
    padding-right: 42px;
  }
}
/* ==========================================================================
   #LIST
   ========================================================================== */
/**
 * Inline list.
 */
.o-list-inline {
  list-style: none;
  margin: 0;
}

.o-list-inline__item {
  display: inline-block;
}

/**
 * Bare lists mate.
 */
.o-list-bare {
  list-style: none;
  margin: 0;
}

/* ==========================================================================
   #BAND
   ========================================================================== */
.o-band {
  padding: 63px 0;
}

.o-band-medium {
  padding: 42px 0;
}

/**
 * Background Image Bands.
 */
.o-band-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ==========================================================================
   #RATIO
   ========================================================================== */
/**
 * Ratio bound content blocks from inuitcss: https://github.com/inuitcss/inuitcss
 * Keeps media (e.g. images, videos) in their correct aspect ratios.
 *
 * <div class="o-ratio"><img class="o-ratio__content" src="image-300x300.jpg" /></div>
 *
 * 1. Default cropping is a 1:1 ratio (i.e. a perfect square).
 */
.o-ratio {
  display: block;
  position: relative;
}
.o-ratio::before {
  content: "";
  display: block;
  padding-bottom: 100%;
  /* [1] */
  width: 100%;
}

.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/**
 * UTILITIES
 * High level, explicit selectors. Includes overrides and generic
 * helper classes.
 */
/* ==========================================================================
   #DISPLAY
   ========================================================================== */
/**
 * A place for display related utility classes.
 */
.u-hidden-visually {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.u-clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/* ==========================================================================
   #WIDTHS
   ========================================================================== */
/**
 * Width utility from inuitcss: https://github.com/inuitcss/inuitcss
 *
 * inuitcss generates a series of utility classes that give a fluid width to
 * whichever element they’re applied, e.g.:
 *
 *   <img src="" alt="" class="u-width-1/2" />
 *
 * These classes are most commonly used in conjunction with our layout system,
 * e.g.:
 *
 *   <div class="o-layout__item  u-width-1/2">
 *
 * By default, inuitcss will also generate responsive variants of each of these
 * classes by using your Sass MQ configuration, e.g.:
 *
 *   <div class="o-layout__item  u-width-1/1  u-width-1/2@tablet  u-width-1/3@desktop">
 *
 * Optionally, inuitcss can generate offset classes which can push and pull
 * elements left and right by a specified amount, e.g.:
 *
 *   <div class="o-layout__item  u-width-2/3  u-pull-1/3">
 *
 * This is useful for making very granular changes to the rendered order of
 * items in a layout.
 *
 * N.B. This option is turned off by default.
 */
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes take a fraction-like format (e.g. `.u-width-2/3`). Use these in
 * your markup:
 *
 * <div class="u-width-7/12">
 *
 * The following will generate widths helper classes based on the fractions
 * defined in the `$inuit-fractions` list.
 */
.u-width-1\/1 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/1 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/1 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

.u-width-1\/2 {
  width: 50% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/2 {
  left: 50% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/2 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 50% !important;
}

.u-width-2\/2 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-2\/2 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-2\/2 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

.u-width-1\/3 {
  width: 33.3333333333% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/3 {
  left: 33.3333333333% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/3 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 33.3333333333% !important;
}

.u-width-2\/3 {
  width: 66.6666666667% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-2\/3 {
  left: 66.6666666667% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-2\/3 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 66.6666666667% !important;
}

.u-width-3\/3 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-3\/3 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-3\/3 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

.u-width-1\/4 {
  width: 25% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/4 {
  left: 25% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/4 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 25% !important;
}

.u-width-2\/4 {
  width: 50% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-2\/4 {
  left: 50% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-2\/4 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 50% !important;
}

.u-width-3\/4 {
  width: 75% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-3\/4 {
  left: 75% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-3\/4 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 75% !important;
}

.u-width-4\/4 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-4\/4 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-4\/4 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

.u-width-1\/5 {
  width: 20% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/5 {
  left: 20% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/5 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 20% !important;
}

.u-width-2\/5 {
  width: 40% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-2\/5 {
  left: 40% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-2\/5 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 40% !important;
}

.u-width-3\/5 {
  width: 60% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-3\/5 {
  left: 60% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-3\/5 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 60% !important;
}

.u-width-4\/5 {
  width: 80% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-4\/5 {
  left: 80% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-4\/5 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 80% !important;
}

.u-width-5\/5 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-5\/5 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-5\/5 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

.u-width-1\/6 {
  width: 16.6666666667% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-1\/6 {
  left: 16.6666666667% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-1\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 16.6666666667% !important;
}

.u-width-2\/6 {
  width: 33.3333333333% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-2\/6 {
  left: 33.3333333333% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-2\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 33.3333333333% !important;
}

.u-width-3\/6 {
  width: 50% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-3\/6 {
  left: 50% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-3\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 50% !important;
}

.u-width-4\/6 {
  width: 66.6666666667% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-4\/6 {
  left: 66.6666666667% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-4\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 66.6666666667% !important;
}

.u-width-5\/6 {
  width: 83.3333333333% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-5\/6 {
  left: 83.3333333333% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-5\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 83.3333333333% !important;
}

.u-width-6\/6 {
  width: 100% !important;
}

/**
 * 1. Reset any leftover or conflicting `left`/`right` values.
 */
.u-push-6\/6 {
  left: 100% !important;
  position: relative !important;
  right: auto !important;
  /* [1] */
}

.u-pull-6\/6 {
  left: auto !important;
  /* [1] */
  position: relative !important;
  right: 100% !important;
}

/**
 * If we’re using Sass-MQ, automatically generate grid system(s) for each of our
 * defined breakpoints, and give them a Responsive Suffix, e.g.:
 *
 * <div class="u-width-3/12@mobile">
 */
@media (min-width: 20em) {
  .u-width-1\/1\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/1\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/1\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/2\@mobile {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/2\@mobile {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/2\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-2\/2\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/2\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/2\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/3\@mobile {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/3\@mobile {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/3\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-2\/3\@mobile {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/3\@mobile {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/3\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-3\/3\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/3\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/3\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/4\@mobile {
    width: 25% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/4\@mobile {
    left: 25% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/4\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 25% !important;
  }

  .u-width-2\/4\@mobile {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/4\@mobile {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/4\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-3\/4\@mobile {
    width: 75% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/4\@mobile {
    left: 75% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/4\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 75% !important;
  }

  .u-width-4\/4\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/4\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/4\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/5\@mobile {
    width: 20% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/5\@mobile {
    left: 20% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/5\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 20% !important;
  }

  .u-width-2\/5\@mobile {
    width: 40% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/5\@mobile {
    left: 40% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/5\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 40% !important;
  }

  .u-width-3\/5\@mobile {
    width: 60% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/5\@mobile {
    left: 60% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/5\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 60% !important;
  }

  .u-width-4\/5\@mobile {
    width: 80% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/5\@mobile {
    left: 80% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/5\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 80% !important;
  }

  .u-width-5\/5\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/5\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/5\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/6\@mobile {
    width: 16.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/6\@mobile {
    left: 16.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 16.6666666667% !important;
  }

  .u-width-2\/6\@mobile {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/6\@mobile {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-3\/6\@mobile {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/6\@mobile {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-4\/6\@mobile {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/6\@mobile {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-5\/6\@mobile {
    width: 83.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/6\@mobile {
    left: 83.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 83.3333333333% !important;
  }

  .u-width-6\/6\@mobile {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-6\/6\@mobile {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-6\/6\@mobile {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }
}
@media (min-width: 46.25em) {
  .u-width-1\/1\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/1\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/1\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/2\@tablet {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/2\@tablet {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/2\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-2\/2\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/2\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/2\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/3\@tablet {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/3\@tablet {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/3\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-2\/3\@tablet {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/3\@tablet {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/3\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-3\/3\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/3\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/3\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/4\@tablet {
    width: 25% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/4\@tablet {
    left: 25% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/4\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 25% !important;
  }

  .u-width-2\/4\@tablet {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/4\@tablet {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/4\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-3\/4\@tablet {
    width: 75% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/4\@tablet {
    left: 75% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/4\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 75% !important;
  }

  .u-width-4\/4\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/4\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/4\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/5\@tablet {
    width: 20% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/5\@tablet {
    left: 20% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/5\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 20% !important;
  }

  .u-width-2\/5\@tablet {
    width: 40% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/5\@tablet {
    left: 40% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/5\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 40% !important;
  }

  .u-width-3\/5\@tablet {
    width: 60% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/5\@tablet {
    left: 60% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/5\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 60% !important;
  }

  .u-width-4\/5\@tablet {
    width: 80% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/5\@tablet {
    left: 80% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/5\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 80% !important;
  }

  .u-width-5\/5\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/5\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/5\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/6\@tablet {
    width: 16.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/6\@tablet {
    left: 16.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 16.6666666667% !important;
  }

  .u-width-2\/6\@tablet {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/6\@tablet {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-3\/6\@tablet {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/6\@tablet {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-4\/6\@tablet {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/6\@tablet {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-5\/6\@tablet {
    width: 83.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/6\@tablet {
    left: 83.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 83.3333333333% !important;
  }

  .u-width-6\/6\@tablet {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-6\/6\@tablet {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-6\/6\@tablet {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }
}
@media (min-width: 61.25em) {
  .u-width-1\/1\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/1\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/1\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/2\@desktop {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/2\@desktop {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/2\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-2\/2\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/2\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/2\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/3\@desktop {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/3\@desktop {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/3\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-2\/3\@desktop {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/3\@desktop {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/3\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-3\/3\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/3\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/3\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/4\@desktop {
    width: 25% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/4\@desktop {
    left: 25% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/4\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 25% !important;
  }

  .u-width-2\/4\@desktop {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/4\@desktop {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/4\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-3\/4\@desktop {
    width: 75% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/4\@desktop {
    left: 75% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/4\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 75% !important;
  }

  .u-width-4\/4\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/4\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/4\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/5\@desktop {
    width: 20% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/5\@desktop {
    left: 20% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/5\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 20% !important;
  }

  .u-width-2\/5\@desktop {
    width: 40% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/5\@desktop {
    left: 40% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/5\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 40% !important;
  }

  .u-width-3\/5\@desktop {
    width: 60% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/5\@desktop {
    left: 60% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/5\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 60% !important;
  }

  .u-width-4\/5\@desktop {
    width: 80% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/5\@desktop {
    left: 80% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/5\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 80% !important;
  }

  .u-width-5\/5\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/5\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/5\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/6\@desktop {
    width: 16.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/6\@desktop {
    left: 16.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 16.6666666667% !important;
  }

  .u-width-2\/6\@desktop {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/6\@desktop {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-3\/6\@desktop {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/6\@desktop {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-4\/6\@desktop {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/6\@desktop {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-5\/6\@desktop {
    width: 83.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/6\@desktop {
    left: 83.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 83.3333333333% !important;
  }

  .u-width-6\/6\@desktop {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-6\/6\@desktop {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-6\/6\@desktop {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }
}
@media (min-width: 66.875em) {
  .u-width-1\/1\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/1\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/1\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/2\@panel {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/2\@panel {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/2\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-2\/2\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/2\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/2\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/3\@panel {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/3\@panel {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/3\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-2\/3\@panel {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/3\@panel {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/3\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-3\/3\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/3\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/3\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/4\@panel {
    width: 25% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/4\@panel {
    left: 25% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/4\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 25% !important;
  }

  .u-width-2\/4\@panel {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/4\@panel {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/4\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-3\/4\@panel {
    width: 75% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/4\@panel {
    left: 75% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/4\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 75% !important;
  }

  .u-width-4\/4\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/4\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/4\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/5\@panel {
    width: 20% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/5\@panel {
    left: 20% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/5\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 20% !important;
  }

  .u-width-2\/5\@panel {
    width: 40% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/5\@panel {
    left: 40% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/5\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 40% !important;
  }

  .u-width-3\/5\@panel {
    width: 60% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/5\@panel {
    left: 60% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/5\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 60% !important;
  }

  .u-width-4\/5\@panel {
    width: 80% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/5\@panel {
    left: 80% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/5\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 80% !important;
  }

  .u-width-5\/5\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/5\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/5\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/6\@panel {
    width: 16.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/6\@panel {
    left: 16.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 16.6666666667% !important;
  }

  .u-width-2\/6\@panel {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/6\@panel {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-3\/6\@panel {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/6\@panel {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-4\/6\@panel {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/6\@panel {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-5\/6\@panel {
    width: 83.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/6\@panel {
    left: 83.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 83.3333333333% !important;
  }

  .u-width-6\/6\@panel {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-6\/6\@panel {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-6\/6\@panel {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }
}
@media (min-width: 81.25em) {
  .u-width-1\/1\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/1\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/1\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/2\@wide {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/2\@wide {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/2\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-2\/2\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/2\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/2\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/3\@wide {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/3\@wide {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/3\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-2\/3\@wide {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/3\@wide {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/3\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-3\/3\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/3\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/3\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/4\@wide {
    width: 25% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/4\@wide {
    left: 25% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/4\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 25% !important;
  }

  .u-width-2\/4\@wide {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/4\@wide {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/4\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-3\/4\@wide {
    width: 75% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/4\@wide {
    left: 75% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/4\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 75% !important;
  }

  .u-width-4\/4\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/4\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/4\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/5\@wide {
    width: 20% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/5\@wide {
    left: 20% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/5\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 20% !important;
  }

  .u-width-2\/5\@wide {
    width: 40% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/5\@wide {
    left: 40% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/5\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 40% !important;
  }

  .u-width-3\/5\@wide {
    width: 60% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/5\@wide {
    left: 60% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/5\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 60% !important;
  }

  .u-width-4\/5\@wide {
    width: 80% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/5\@wide {
    left: 80% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/5\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 80% !important;
  }

  .u-width-5\/5\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/5\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/5\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }

  .u-width-1\/6\@wide {
    width: 16.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-1\/6\@wide {
    left: 16.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-1\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 16.6666666667% !important;
  }

  .u-width-2\/6\@wide {
    width: 33.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-2\/6\@wide {
    left: 33.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-2\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 33.3333333333% !important;
  }

  .u-width-3\/6\@wide {
    width: 50% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-3\/6\@wide {
    left: 50% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-3\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 50% !important;
  }

  .u-width-4\/6\@wide {
    width: 66.6666666667% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-4\/6\@wide {
    left: 66.6666666667% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-4\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 66.6666666667% !important;
  }

  .u-width-5\/6\@wide {
    width: 83.3333333333% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-5\/6\@wide {
    left: 83.3333333333% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-5\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 83.3333333333% !important;
  }

  .u-width-6\/6\@wide {
    width: 100% !important;
  }

  /**
   * 1. Reset any leftover or conflicting `left`/`right` values.
   */
  .u-push-6\/6\@wide {
    left: 100% !important;
    position: relative !important;
    right: auto !important;
    /* [1] */
  }

  .u-pull-6\/6\@wide {
    left: auto !important;
    /* [1] */
    position: relative !important;
    right: 100% !important;
  }
}
/* ==========================================================================
   #TEXT
   ========================================================================== */
/**
 * A collection of text related utility classes.
 */
/**
 * Text Alignment.
 *
 * e.g. <div class="u-text--[center | left | right ]"></div>
 */
.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

.u-text-justify {
  text-align: justify;
}

/**
 * Prominent Heading.
 *
 * Re-usable large text style. Currently used for headings in some
 * of the `.band` sections.
 */
.u-text-prominent {
  font-size: 54px;
  font-size: 3.375rem;
}

@media (max-width: 46.24em) {
  .u-text-prominent {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
/* ==========================================================================
   #SPACINGS
   ========================================================================== */
/**
 * A slightly cut down version of the spacing utility from inuitcss:
 * https://github.com/inuitcss/inuitcss
 *
 * Utility classes to put specific spacing values onto elements. The below loop
 * will generate us a suite of classes like:
 *
 *
 * .u-[padding | margin]-top {}
 * .u-[padding | margin]-bottom {}
 * .u-[padding | margin] {}
 * .u-[padding | margin]-vertical {}
 * .u-[padding | margin]-[top | bottom]-none
 *
 * It also creates variants of the above for the project spacing
 * values declared in `settings.global`. E.g:
 *
 * u-[padding | margin]-top-huge {}
 * u-[padding | margin]-bottom-small {}
 */
.u-padding {
  padding: 21px !important;
}

.u-padding-small {
  padding: 11px !important;
}

.u-padding-medium {
  padding: 42px !important;
}

.u-padding-large {
  padding: 63px !important;
}

.u-padding-none {
  padding: 0 !important;
}

.u-padding-top {
  padding-top: 21px !important;
}

.u-padding-top-small {
  padding-top: 11px !important;
}

.u-padding-top-medium {
  padding-top: 42px !important;
}

.u-padding-top-large {
  padding-top: 63px !important;
}

.u-padding-top-none {
  padding-top: 0 !important;
}

.u-padding-bottom {
  padding-bottom: 21px !important;
}

.u-padding-bottom-small {
  padding-bottom: 11px !important;
}

.u-padding-bottom-medium {
  padding-bottom: 42px !important;
}

.u-padding-bottom-large {
  padding-bottom: 63px !important;
}

.u-padding-bottom-none {
  padding-bottom: 0 !important;
}

.u-padding-right {
  padding-right: 21px !important;
}

.u-padding-right-small {
  padding-right: 11px !important;
}

.u-padding-right-medium {
  padding-right: 42px !important;
}

.u-padding-right-large {
  padding-right: 63px !important;
}

.u-padding-right-none {
  padding-right: 0 !important;
}

.u-padding-left {
  padding-left: 21px !important;
}

.u-padding-left-small {
  padding-left: 11px !important;
}

.u-padding-left-medium {
  padding-left: 42px !important;
}

.u-padding-left-large {
  padding-left: 63px !important;
}

.u-padding-left-none {
  padding-left: 0 !important;
}

.u-padding-vertical {
  padding-top: 21px !important;
  padding-bottom: 21px !important;
}

.u-padding-vertical-small {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

.u-padding-vertical-medium {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.u-padding-vertical-large {
  padding-top: 63px !important;
  padding-bottom: 63px !important;
}

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-padding-horizontal {
  padding-left: 21px !important;
  padding-right: 21px !important;
}

.u-padding-horizontal-small {
  padding-left: 11px !important;
  padding-right: 11px !important;
}

.u-padding-horizontal-medium {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

.u-padding-horizontal-large {
  padding-left: 63px !important;
  padding-right: 63px !important;
}

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-margin {
  margin: 21px !important;
}

.u-margin-small {
  margin: 11px !important;
}

.u-margin-medium {
  margin: 42px !important;
}

.u-margin-large {
  margin: 63px !important;
}

.u-margin-none {
  margin: 0 !important;
}

.u-margin-top {
  margin-top: 21px !important;
}

.u-margin-top-small {
  margin-top: 11px !important;
}

.u-margin-top-medium {
  margin-top: 42px !important;
}

.u-margin-top-large {
  margin-top: 63px !important;
}

.u-margin-top-none {
  margin-top: 0 !important;
}

.u-margin-bottom {
  margin-bottom: 21px !important;
}

.u-margin-bottom-small {
  margin-bottom: 11px !important;
}

.u-margin-bottom-medium {
  margin-bottom: 42px !important;
}

.u-margin-bottom-large {
  margin-bottom: 63px !important;
}

.u-margin-bottom-none {
  margin-bottom: 0 !important;
}

.u-margin-right {
  margin-right: 21px !important;
}

.u-margin-right-small {
  margin-right: 11px !important;
}

.u-margin-right-medium {
  margin-right: 42px !important;
}

.u-margin-right-large {
  margin-right: 63px !important;
}

.u-margin-right-none {
  margin-right: 0 !important;
}

.u-margin-left {
  margin-left: 21px !important;
}

.u-margin-left-small {
  margin-left: 11px !important;
}

.u-margin-left-medium {
  margin-left: 42px !important;
}

.u-margin-left-large {
  margin-left: 63px !important;
}

.u-margin-left-none {
  margin-left: 0 !important;
}

.u-margin-vertical {
  margin-top: 21px !important;
  margin-bottom: 21px !important;
}

.u-margin-vertical-small {
  margin-top: 11px !important;
  margin-bottom: 11px !important;
}

.u-margin-vertical-medium {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}

.u-margin-vertical-large {
  margin-top: 63px !important;
  margin-bottom: 63px !important;
}

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-margin-horizontal {
  margin-left: 21px !important;
  margin-right: 21px !important;
}

.u-margin-horizontal-small {
  margin-left: 11px !important;
  margin-right: 11px !important;
}

.u-margin-horizontal-medium {
  margin-left: 42px !important;
  margin-right: 42px !important;
}

.u-margin-horizontal-large {
  margin-left: 63px !important;
  margin-right: 63px !important;
}

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 * Extends `elements.headings`
 *
 * <h2 class="u-h1">Heading</h2>
 */
.u-h1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.u-h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.u-h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.u-h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.u-h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.u-h6 {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

/**
 * Huge Heading.
 */
.u-heading-huge {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 46.24em) {
  .u-heading-huge {
    font-size: 35px;
    font-size: 2.1875rem;
    text-align: center;
  }
}
/* ==========================================================================
   #COLOURS
   ========================================================================== */
/**
 * Colour related utility classes/functions.
 * Project colours defined in `settings.colours`.
 */
/**
 * Theme Colour Utilities.
 */
.u-fill-yellow {
  background-color: #f4cd00;
}

.u-fill-blue {
  background-color: #022a3a;
}

.u-fill-blue-60 {
  background-color: #677f89;
}

.u-fill-grey-light {
  background-color: #f1f1f1;
}

.u-color-yellow {
  color: #f4cd00;
}

.u-color-blue {
  color: #022a3a;
}

.u-color-blue-60 {
  color: #677f89;
}

.u-color-grey-light {
  color: #f1f1f1;
}

/**
 * UI led colour definitions.
 *
 * 1. Highlight colour words in content managed text/titles.
 */
.u-color-highlight {
  color: #f4cd00;
}

/**
 * Color Themes.
 *
 * 1. For use on dark backgrounds.
 */
.u-theme-light {
  color: #fff;
}

/**
 * COMPONENTS
 */
/* ==========================================================================
   #BUTTON
   ========================================================================== */
.button {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4cd00;
  border: 0;
  border-radius: 96px;
  color: #022a3a;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.15;
  max-width: 400px;
  outline: 0;
  padding: 20px 40px;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
html[dir=ltr].fonts-loaded .button {
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  .button {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.button--blue {
  background-color: #022a3a;
  color: #fff;
}

.classes-details-hero .button:hover {
  -webkit-box-shadow: 0 0 0 1px #f4cd00;
          box-shadow: 0 0 0 1px #f4cd00;
}
.classes-details-hero .slider-logo img {
  max-width: 600px;
}
@media (max-width: 1199px) {
  .classes-details-hero .slider-logo img {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .classes-details-hero .slider-logo img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .classes-details-hero .slider-logo img {
    max-width: 350px;
  }
}
@media (max-width: 575px) {
  .classes-details-hero .slider-logo img {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .classes-details-hero .slider-logo img {
    max-width: 250px;
  }
}
@media (max-width: 320px) {
  .classes-details-hero .slider-logo img {
    max-width: 200px;
  }
}

.button--orange,
.u-orange .button-large {
  background-color: orange;
}
.button--orange .o-icon,
.u-orange .button-large .o-icon {
  fill: #022a3a;
}
.button--orange:hover .o-icon,
.u-orange .button-large:hover .o-icon {
  fill: #ffa500;
}

.button--orange-f7 {
  background-color: #f7ad3a;
}

.button--icon {
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.button--icon > .o-icon {
  height: 32px;
  margin: 0 11px 0 0;
  vertical-align: middle;
  width: 32px;
}

@media (max-width: 46.24em) {
  .button {
    max-width: none;
    width: 100%;
  }
}
/**
 * Hover States.
 *
 * Target > desktop viewports for a better chance of this not
 * being weird on touch devices :/
 */
@media (min-width: 61.25em) {
  .button:hover {
    background-color: #022a3a;
    color: #f4cd00;
  }

  .button--blue:hover {
    background-color: #fff;
    color: #022a3a;
  }

  .u-fill-blue .button:hover {
    background-color: #fff;
    color: #022a3a;
  }

  .button--icon:hover .o-icon {
    fill: #f4cd00;
  }

  .button--icon.button--orange:hover .o-icon {
    fill: orange;
  }
}
/**
 * <button /> elements.
 *
 * 1. flex doesn't seem to work in Safari on <button /> elements.
 *    In order to use with those elements, we need to add an
 *    extra element around the button text `.button__label` and apply
 *    the flex styles to that instead.
 */
button.button .button__label {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}

.hrx-btn-yellow .button {
  background-color: #f4cd00;
  border-radius: 96px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
  max-width: 100%;
  padding: 15px 18px;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
@media (max-width: 1199px) {
  .hrx-btn-yellow .button {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 767px) {
  .hrx-btn-yellow .button {
    font-size: 16px;
    line-height: 20px;
    padding: 9px 12px;
  }
}
@media (max-width: 530px) {
  .hrx-btn-yellow .button {
    width: 100%;
  }
}
.hrx-btn-yellow .button:hover {
  background-color: #fff;
  color: #022a3a;
}
.hrx-btn-yellow .button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.hrx-btn-yellow .button.button-large {
  font-size: 25px;
  line-height: 30px;
  padding: 18px 36px;
}
@media (max-width: 1199px) {
  .hrx-btn-yellow .button.button-large {
    font-size: 20px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .hrx-btn-yellow .button.button-large {
    font-size: 18px;
    line-height: 22px;
    padding: 12px 22px;
  }
}
@media (max-width: 767px) {
  .hrx-btn-yellow .button.button-large {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 530px) {
  .hrx-btn-yellow .button.fit-content {
    width: 100%;
  }
}
.hrx-btn-yellow.u-color-white .button:hover {
  background-color: #022a3a;
  color: #fff;
}
.hrx-btn-yellow.u-fill-blue .hero-v .slider-wrapper .button:hover {
  background-color: #fff;
  color: #022a3a;
}
.hrx-btn-yellow .cta-ncomp .u-fill-blue .button:hover {
  background-color: #fff;
  color: #022a3a;
}
.hrx-btn-yellow .hero-v .items .button.button-large {
  font-size: 24px;
  line-height: 28px;
  padding: 18px 20px;
}
@media (max-width: 1199px) {
  .hrx-btn-yellow .hero-v .items .button.button-large {
    font-size: 20px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .hrx-btn-yellow .hero-v .items .button.button-large {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 18px;
  }
}

.u-orange .button {
  background-color: orange;
  border-radius: 96px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
  max-width: 100%;
  padding: 15px 18px;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
@media (max-width: 1199px) {
  .u-orange .button {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 767px) {
  .u-orange .button {
    font-size: 16px;
    line-height: 20px;
    padding: 9px 12px;
  }
}
@media (max-width: 530px) {
  .u-orange .button {
    width: 100%;
  }
}
.u-orange .button:hover {
  background-color: #fff;
  color: #022a3a;
}
.u-orange .button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.u-orange .button.button-large {
  font-size: 25px;
  line-height: 30px;
  padding: 18px 36px;
}
@media (max-width: 1199px) {
  .u-orange .button.button-large {
    font-size: 20px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .u-orange .button.button-large {
    font-size: 18px;
    line-height: 22px;
    padding: 12px 22px;
  }
}
@media (max-width: 767px) {
  .u-orange .button.button-large {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 530px) {
  .u-orange .button.fit-content {
    width: 100%;
  }
}
.u-orange.u-color-white .button:hover {
  background-color: #022a3a;
  color: #fff;
}
.u-orange .hero-v .items .button.button-large {
  font-size: 24px;
  line-height: 28px;
  padding: 18px 20px;
}
@media (max-width: 1199px) {
  .u-orange .hero-v .items .button.button-large {
    font-size: 20px;
    line-height: 24px;
    padding: 12px 20px;
  }
}
@media (max-width: 767px) {
  .u-orange .hero-v .items .button.button-large {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 18px;
  }
}
.u-orange.hover-primary .button:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

/*gn-btn-hvr-white*/
.gn-btn-hvr-white .button:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
}

.iti--allow-dropdown .iti__country-list {
  z-index: 12;
}

/* ==========================================================================
   #PANEL
   ========================================================================== */
/**
 * Global `.panel` layout styles.
 * This allows for the slide in/out layout pattern for the panel that will
 * contain the site navigation.
 *
 * When open, the <body /> will have a class of `o-panel--open` which is
 * added to the element via JS (`modules/panel`).
 *
 * 1. The width the panel containing the <nav /> will be.
 * 2. The position of the panel in the viewport (left or right).
 */
.partner-select-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .partner-select-wrap {
    margin: 0 0 20px;
  }
}

.partner-dropdown {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .partner-dropdown {
    margin: 0 0 20px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .partner-dropdown {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .partner-dropdown {
    margin: 0 0 15px;
  }
}
.partner-dropdown label {
  cursor: default;
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .partner-dropdown label {
    min-width: 193px;
    text-align: right;
    width: auto;
  }
}
@media (max-width: 575px) {
  .partner-dropdown label {
    margin: 0 0 5px;
    max-width: 250px;
    min-width: auto;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .partner-dropdown label {
    max-width: 100%;
  }
}
.partner-dropdown .js-select2 {
  background-color: #0d2a3a;
  color: #fff;
  overflow: hidden;
  padding: 10px 30px 10px 10px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  width: 250px;
}
@media (max-width: 420px) {
  .partner-dropdown .js-select2 {
    height: 50px;
    width: 100%;
  }
}
.partner-dropdown:first-child {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .partner-dropdown:first-child {
    margin-right: 0;
  }
}
@media (max-width: 48.6875em) {
  .partner-dropdown {
    margin-bottom: 18px;
    width: 100%;
  }
}
.partner-dropdown .dropdownbox-partner {
  line-height: 0;
  position: relative;
  width: 250px;
  z-index: 3;
}
@media (max-width: 420px) {
  .partner-dropdown .dropdownbox-partner {
    width: 100%;
  }
}
.partner-dropdown .dropdownbox-partner.category {
  z-index: 4;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-label {
  background-color: #0d2a3a;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 46px;
  letter-spacing: 0;
  line-height: 20px;
  max-height: 46px;
  overflow: hidden;
  padding: 13px 40px 13px 10px;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 2;
}
@media (max-width: 420px) {
  .partner-dropdown .dropdownbox-partner .dropdownbox-label {
    height: 50px;
    max-height: 50px;
    padding-block: 15px;
  }
}
.partner-dropdown .dropdownbox-partner .dropdownbox-label::before {
  background-image: url("/build/img/down-select-white.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  width: 12px;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-label.active::before {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.partner-dropdown .dropdownbox-partner .dropdownbox-label.active + .dropdownbox-list ul {
  border-color: #fff;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list {
  background-color: #0d2a3a;
  border-radius: 0 0 24px 24px;
  -webkit-box-shadow: 0 1px 2px 0 #fff;
          box-shadow: 0 1px 2px 0 #fff;
  display: none;
  left: 0;
  overflow: hidden;
  padding-top: 23px;
  position: absolute;
  top: 23px;
  width: 100%;
}
@media (max-width: 420px) {
  .partner-dropdown .dropdownbox-partner .dropdownbox-list {
    padding-top: 25px;
    top: 25px;
  }
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list ul {
  border-top: 1px solid transparent;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list ul li {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list ul li .partner-cate-js {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  padding: 4px 10px;
  text-decoration: none;
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list ul li .partner-cate-js:hover:not(.selected) {
  background-color: rgba(245, 245, 245, 0.6);
}
.partner-dropdown .dropdownbox-partner .dropdownbox-list ul li .partner-cate-js.selected {
  background-color: #f4cd00;
  color: #022a3a;
  font-weight: 500;
}

.video-papernew .video-wrp {
  margin: 0 auto;
  max-width: 1265px;
  padding-bottom: 30px;
}
.video-papernew .video-wrp .video-card-text p,
.video-papernew .video-wrp .video-card-text ul {
  display: block;
  line-clamp: unset;
  margin-bottom: 15px;
  overflow: visible;
  -o-text-overflow: unset;
     text-overflow: unset;
}
.video-papernew .video-wrp .video-card-text p:last-child,
.video-papernew .video-wrp .video-card-text ul:last-child {
  margin-bottom: 0;
}
.video-papernew .video-wrp .video-card-text ul {
  padding-left: 17px;
}
.video-papernew .video-wrp .video-card-button {
  margin-top: 20px;
}

@media (max-width: 420px) {
  #myVideoModal iframe {
    height: 250px;
  }
}

.headertwo-section {
  background-color: #022a3a;
  padding: 15px 0;
  width: 100%;
}
.headertwo-section .logo-wrap {
  line-height: 0;
  text-align: center;
}
.headertwo-section .logo-wrap .site-header__logo {
  background-color: #022a3a;
  display: inline-block;
  height: auto;
  line-height: 0;
  width: auto;
}
.headertwo-section .logo-wrap .site-header__logo svg {
  margin-top: 0;
}
.headertwo-section .logo-wrap .site-header__logo img {
  height: 70px;
  margin-top: 24px;
}
.headertwo-section .language-switch {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .headertwo-section .language-switch {
    margin-top: 22px;
  }
}
@media (max-width: 480px) {
  .headertwo-section .language-switch {
    margin-top: 20px;
  }
}
.headertwo-section .language-switch .lang-btn {
  margin-right: 0;
}

html[dir=rtl] {
  letter-spacing: 0;
}
html[dir=rtl] .headertwo-section .language-switch .lang-btn {
  margin-left: 0;
}

.img80 .logo-header .logo img {
  height: 80px;
  margin: 20px;
  width: auto;
}
@media (max-width: 767px) {
  .img80 .logo-header .logo img {
    height: auto;
    margin: unset;
  }
}

header.logo-header {
  background-color: #022a3a;
  padding: 15px 0;
}
header.logo-header .site-header__logo {
  height: auto;
  width: auto;
}
header.logo-header .site-header__logo img {
  max-height: 82px;
}
@media (max-width: 739px) {
  header.logo-header .site-header__logo img {
    max-height: 65px;
  }
}

/* Language switcher */
header .language_switcher.desktop {
  display: block;
}
@media (max-width: 1300px) {
  header .language_switcher.desktop {
    display: none;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
header .language_switcher.mobile {
  background-color: #022a3a;
  border-left: 1px solid #5a5a5a;
  display: none;
}
@media (max-width: 1300px) {
  header .language_switcher.mobile {
    display: block;
  }
}
@media (max-width: 739px) {
  header .language_switcher.mobile {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: 0;
    border-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 65px;
    position: absolute;
    right: 80px;
    top: 0;
  }
}
header .language_switcher ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
@media (max-width: 739px) {
  header .language_switcher ul {
    border-right: 2px solid #505050;
    margin-top: 0;
  }
}
header .language_switcher ul li {
  line-height: 0;
}
header .language_switcher ul li a {
  color: #f4cd00;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 51px;
  min-width: 50px;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  header .language_switcher ul li a {
    font-size: 20px;
  }
}
@media (max-width: 739px) {
  header .language_switcher ul li a {
    line-height: 35px;
  }
}

/* ==========================================================================
   #SITE-FOOTER
   ========================================================================== */
/**
 * Global `.site-footer` <footer /> component.
 */
.site-footer {
  background-color: #022a3a;
  color: #fff;
  text-align: center;
}
@media (max-width: 1499px) {
  .site-footer.o-band-low {
    padding-bottom: 25px;
    padding-top: 25px;
  }
}
@media (max-width: 991px) {
  .site-footer.o-band-low {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .site-footer .o-layout__item.u-width-1\/4\@tablet {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .site-footer .o-layout__item .u-margin-top-medium {
    margin-top: 22px !important;
  }
}
@media (max-width: 767px) {
  .site-footer .site-footer__payment {
    padding-top: 8px;
  }
}

.footer-small {
  background-color: #022a3a;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 1499px) {
  .footer-small {
    padding-bottom: 25px;
    padding-top: 25px;
  }
}
@media (max-width: 991px) {
  .footer-small {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.footer-small::before {
  display: none;
}
.footer-small svg {
  margin-bottom: 5px;
}
.footer-small .site-footer__legal p {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .footer-small .site-footer__legal p {
    font-size: 12px;
    line-height: 16px;
  }
}

/**
 * Site Footer Navigation.
 */
.site-footer-nav__link {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.site-footer-nav__item {
  margin: 0 0 5px;
}

.site-footer-nav__heading {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 11px;
}
@media (max-width: 767px) {
  .site-footer-nav__heading {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .site-footer-nav__heading.footer-accord-title-js {
    cursor: pointer;
    display: inline-block;
    padding: 0 20px 0 0;
    position: relative;
  }
}
@media (max-width: 767px) {
  .site-footer-nav__heading.footer-accord-title-js::before {
    background-image: url("../img/white-down.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 12px;
  }
}
@media (max-width: 767px) {
  .site-footer-nav__heading.footer-accord-title-js.active::before {
    -webkit-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
            transform: scaleY(-1);
  }
}

@media (max-width: 767px) {
  .site-footer-nav {
    margin: 11px 0 0;
  }
}
.site-footer-nav.footer-accord-content-js {
  display: none;
}
@media (min-width: 768px) {
  .site-footer-nav.footer-accord-content-js {
    display: block !important;
  }
}

/* ==========================================================================
   #HERO
   ========================================================================== */
/**
 * Define Hero Sizes.
 *
 * 1. Default height.
 * 2. Mobile height.
 * 3. A large variation of the hero.
 * 4. Fixes an issue with the width of the wrapper in flex.
 */
.hero {
  background-color: #022a3a;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero .o-wrapper {
  width: 100%;
}

.hero-content {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  height: inherit;
  padding: 21px 0;
  position: relative;
  width: 100%;
  z-index: 9;
}

.hero-content__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: auto;
  width: 100%;
}

.hero-loc-h .hero-content__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 350px;
  width: 100%;
}

.hero__title {
  font-weight: 700;
  margin: 0;
}

.hero__image {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

/**
 * Desktop Only.
 */
@media (min-width: 61.25em) {
  .hero__title {
    line-height: 1;
  }
}
/**
 * >= Tablet.
 *
 * 1. If the `.hero` has the `-large` modifier, it will be taller
 *    at viewports greater than tablet.
 */
@media (min-width: 46.25em) {
  .hero-large,
.hero-large .hero-content__inner {
    min-height: 600px;
  }
}
/**
 * Mobile.
 */
@media (max-width: 46.24em) {
  .hero,
.hero-content__inner {
    min-height: unset;
  }
}
/**
 * Heading Size.
 *
 * The heading is very large on some viewports and this is causing
 * issues with some headings overflowing the component.
 *
 * Moving this out of the above style declarations to make it easier
 * to change later on should we need to.
 */
/* stylelint-disable */
.hero__title {
  font-size: 80px;
  font-size: 5rem;
}

@media (min-width: 64em) {
  .hero__title {
    font-size: 125px;
    font-size: 7.8125rem;
  }
}
@media (max-width: 46.24em) {
  .hero__title {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
/* stylelint-enable */
.location-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  min-height: 300px;
  width: 100%;
}
.location-banner .hero__title_l {
  padding-top: 10px;
}
.location-banner .hero-content__inner {
  min-height: unset;
}
.location-banner .loc-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0;
}
.location-banner .o-wrapper {
  margin-top: 0;
}
.location-banner .yellow-banner-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: auto;
  margin-top: auto;
}
.location-banner .yellow-banner-box p {
  margin-bottom: 10px;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .location-banner .yellow-banner-box {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .location-banner {
    min-height: 380px;
  }
}

@media only screen and (max-width: 767px) {
  .hero .site-nav a {
    padding: 0 24px !important;
  }
}
@media (max-width: 1199px) {
  .hero-large-v .slider-wrapper {
    padding-bottom: 30px;
    padding-top: 175px;
  }
}
.hero-large-v .slider-wrapper .slider-heading:last-child {
  margin-bottom: 0;
}

.classes-hero {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .classes-hero {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .classes-hero {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .classes-hero .slider-wrapper .slick-initialized {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.language-switch {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.language-switch.white-bg .lang-btn {
  border-color: #022a3a;
  color: #022a3a;
}
.language-switch.white-bg .lang-btn:hover {
  border-color: #022a3a;
}
.language-switch .lang-btn {
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  height: 35px;
  line-height: 16px;
  margin: 0 24px 0 0;
  max-height: 35px;
  min-width: 90px;
  padding: 5px 10px;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: auto;
}
@media (max-width: 767px) {
  .language-switch .lang-btn {
    margin-right: 16px;
  }
}
@media (max-width: 480px) {
  .language-switch .lang-btn {
    font-size: 18px;
    height: 33px;
    line-height: 20px;
    max-height: 33px;
    min-width: auto;
    padding: 3px 10px;
  }
}
@media (max-width: 360px) {
  .language-switch .lang-btn {
    margin-right: 8px;
  }
}
.language-switch .lang-btn:hover {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #022a3a;
  -webkit-tap-highlight-color: transparent;
}
.language-switch .lang-btn:focus, .language-switch .lang-btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.language-switch .lang-btn.en-btn {
  display: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.25px;
  line-height: 22px;
  padding: 5px 15px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .language-switch .lang-btn.en-btn {
    font-size: 14px;
    padding-bottom: 3px;
    padding-top: 3px;
  }
}
@media (max-width: 360px) {
  .language-switch .lang-btn.en-btn {
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.language-switch .lang-btn.ae-btn {
  display: inline-block;
  font-family: "notokufiarabic", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  padding-bottom: 8.5px;
  padding-top: 1.5px;
}
@media (max-width: 480px) {
  .language-switch .lang-btn.ae-btn {
    padding-bottom: 6px;
    padding-top: 0;
  }
}
.language-switch .lang-btn span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

html[dir=rtl] .language-switch .lang-btn {
  margin-left: 24px;
  margin-right: 0;
}
@media (max-width: 767px) {
  html[dir=rtl] .language-switch .lang-btn {
    margin-left: 16px;
  }
}
@media (max-width: 360px) {
  html[dir=rtl] .language-switch .lang-btn {
    margin-left: 8px;
  }
}
html[dir=rtl] .language-switch .lang-btn.ae-btn {
  display: none;
}
html[dir=rtl] .language-switch .lang-btn.en-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}

/* ==========================================================================
   #CARD
   ========================================================================== */
/**
 * Generic content listing component.
 */
.card {
  background-color: #fff;
  color: #022a3a;
  height: calc(100% - 42px);
  margin: 0 0 42px;
  padding: 42px;
  width: 100%;
}
@media (max-width: 480px) {
  .card {
    padding: 42px 20px;
  }
}
@media (max-width: 739px) {
  .card .txtbold {
    max-height: unset;
    min-height: auto;
  }
}

/**
 * Card Variations.
 */
.card--transparent {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

@media (min-width: 64.0625em) {
  .u-h4 {
    min-height: 20%;
  }
}
.error-card {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  color: white;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 250px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
  padding: 15px;
  position: relative;
  vertical-align: top;
  width: calc(25% - 20px);
}
@media (max-width: 1200px) {
  .error-card {
    margin: 0;
    width: calc((100% / 4) - 5px);
  }
}
@media (max-width: 991px) {
  .error-card {
    width: calc((100% / 3) - 4px);
  }
}
@media (max-width: 767px) {
  .error-card {
    margin: 0;
    width: calc((100% / 2) - 3px);
  }
}
@media (max-width: 580px) {
  .error-card {
    margin: 0;
    width: 100%;
  }
}
.error-card:hover {
  color: white;
}
@media (min-width: 992px) {
  .error-card:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .error-card:nth-child(4n+4) {
    margin-right: 0;
  }
}
.error-card > div {
  text-align: center;
  width: 100%;
}
.error-card .btn-wrp {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

/* ==========================================================================
   #PRODUCT
   ========================================================================== */
/**
 * `.product` content layout component. This is currently used for the
 * membership type listing.
 *
 * TODO: This should really be `card`?
 */
.product {
  background-color: #022a3a;
  border-radius: 20px;
  color: #fff;
  margin: 0 0 21px;
  width: 100%;
}

.product__title,
.product__body {
  padding: 21px;
}

.product__title {
  background-color: #f4cd00;
  border-radius: 20px 20px 0 0;
  color: #022a3a;
}

/**
 * 1. This assumes that the content of the component will
 *    be authored in a RTE.
 */
.product__body ul {
  margin-left: 21px;
}
.product__body li {
  margin-bottom: 11px;
}
.product__body .in-content {
  width: 100%;
}
@media (max-width: 992px) {
  .product__body .in-content {
    height: auto !important;
  }
}

/* ==========================================================================
   #FEATURE
   ========================================================================== */
/**
 * Generic content listing component currently used to list the USP's.
 * (e.g. '50 free lessons' etc)
 */
.feature-home-group {
  margin-bottom: -21px;
}
@media (max-width: 1199px) {
  .feature-home-group .o-layout__item {
    width: 50% !important;
  }
}
@media (max-width: 739px) {
  .feature-home-group .o-layout__item {
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  .feature-home-group .feature .feature__icon {
    height: 80px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80px;
  }
}
@media (max-width: 739px) {
  .feature-home-group .feature .feature__icon {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media (max-width: 1260px) {
  .feature-home-group .feature .feature__content {
    height: auto;
    min-height: 160px;
    padding: 30px 30px 30px 70px;
  }
}
@media (max-width: 1199px) {
  .feature-home-group .feature .feature__content {
    height: auto;
    min-height: 130px;
    padding: 30px 30px 30px 70px;
  }
}
@media (max-width: 991px) {
  .feature-home-group .feature .feature__content {
    padding-left: 55px;
  }
}
@media (max-width: 739px) {
  .feature-home-group .feature .feature__content {
    min-height: auto;
    padding: 55px 30px 24px;
  }
}
.feature-home-group .feature .feature__content p {
  font-size: 23px;
}
@media (max-width: 1358px) {
  .feature-home-group .feature .feature__content p {
    font-size: 22px;
  }
}
@media (max-width: 1328px) {
  .feature-home-group .feature .feature__content p {
    font-size: 21px;
  }
}
@media (max-width: 1292px) {
  .feature-home-group .feature .feature__content p {
    font-size: 20px;
  }
}
@media (max-width: 1260px) {
  .feature-home-group .feature .feature__content p {
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .feature-home-group .feature .feature__content p {
    max-width: 100%;
    width: 218px;
  }
}
@media (max-width: 739px) {
  .feature-home-group .feature .feature__content p {
    width: 100%;
  }
}

.feature {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 21px;
  position: relative;
  width: 100%;
}

.feature__icon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #022a3a;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  width: 100px;
}
.feature__icon > .o-icon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  fill: #f4cd00;
  height: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}
.feature__icon > .o-icon img {
  height: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .feature__icon > .o-icon img {
    width: 40px;
  }
}

.feature__content {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 40px 40px 70px;
}

/**
* >= Tablet.
* At this size, the icon will be positioned to the left
* of the content.
*/
@media (min-width: 46.25em) {
  .feature__icon {
    left: 0;
    margin-top: -50px;
    top: 50%;
  }

  .feature__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 180px;
    margin: 0 0 0 50px;
    width: 100%;
  }
}
/**
* Mobile.
* At this size, the icon will be positioned above
* the content.
*/
@media (max-width: 46.24em) {
  .feature {
    padding-top: 50px;
  }

  .feature__icon {
    left: 50%;
    margin-left: -50px;
    top: 0;
  }

  .feature__content {
    padding: 65px 40px 40px;
    text-align: center;
    width: 100%;
  }
}
/* ==========================================================================
   #HR
   ========================================================================== */
/**
 * Classed <hr /> element styles.
 */
/**
 * Default.
 */
.hr {
  background-color: #d6d9df;
  border: 0;
  height: 1px;
  margin: 63px auto;
  padding: 0;
}

.hrmd {
  background-color: #d6d9df;
  border: 0;
  height: 1px;
  margin: 42px auto;
  padding: 0;
}

.hrsm {
  background-color: #d6d9df;
  border: 0;
  height: 1px;
  margin: 11px auto;
  padding: 0;
}

.hr--sm {
  width: 150px;
}

/* ==========================================================================
   #MEDIA-BLOCK
   ========================================================================== */
/**
 * Place an image and text content side-by-side,
 */
/**
 * >= Tablet.
 *
 * When there are multiple components on a page directly following
 * one another, reverse the order of the image and text.
 */
@media (min-width: 46.25em) {
  .media-block,
.media-block-rte {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .media-block__media {
    margin: 42px;
  }

  .media-block .media-block__media img {
    border-radius: 20px;
  }
  .media-block:nth-of-type(odd) {
    direction: rtl;
  }
  .media-block:nth-of-type(odd) .media-block__body,
.media-block:nth-of-type(odd) .media-block__media {
    direction: ltr;
  }
  .media-block:nth-of-type(odd) .media-block__media {
    margin-left: 0;
    margin-right: 42px;
  }
  .media-block:nth-of-type(odd) .media-block__media img {
    border-radius: 20px;
  }
}
/**
 * Suceeding <hr /> elements.
 * extends `components.hr`
 *
 * Hide any .hr elements that follow the last item.
 * This will prevent BE having to do this logic in the templates.
 */
.media-block:last-of-type + .hr {
  display: none;
}

/**
 * Large Viewports.
 *
 * 1. The creative for this component has a fairly large gutter on the text.
 *    Going to apply this gutter for large viewports only.
 */
@media (min-width: 61.25em) {
  .media-block:nth-of-type(odd) .media-block__body {
    padding-right: 10px;
  }
  .media-block:nth-of-type(even) .media-block__body {
    padding-left: 10px;
  }
}
.media_about-box.event-box-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.media_about-box.event-box-center .media-block__media {
  margin: 0;
}
@media (max-width: 1024px) {
  .media_about-box.media-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto;
    max-width: 74.37%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .media_about-box.media-block {
    max-width: 540px;
  }
}
@media (max-width: 1024px) {
  .media_about-box.media-block:nth-of-type(odd) .media-block__media {
    line-height: 0;
    margin: 0 0 35px;
  }
}
@media (max-width: 767px) {
  .media_about-box.media-block:nth-of-type(odd) .media-block__media {
    margin: 0 0 30px;
  }
}
@media (max-width: 580px) {
  .media_about-box.media-block:nth-of-type(odd) .media-block__media {
    margin: 0 0 25px;
  }
}
@media (max-width: 1024px) {
  .media_about-box.media-block:nth-of-type(odd) .media-block__body {
    padding: 0;
  }
}
.media_about-box.media-block:nth-of-type(even) .media-block__media {
  margin-right: 0;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-block__media {
    margin: 0 0 35px;
  }
}
@media (max-width: 767px) {
  .media_about-box.media-block .media-block__media {
    margin: 0 0 30px;
  }
}
@media (max-width: 580px) {
  .media_about-box.media-block .media-block__media {
    margin: 0 0 25px;
  }
}
.media_about-box.media-block .media-block__media .item {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.media_about-box.media-block .media-block__media img {
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-left {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .media_about-box.media-block .media-about-left h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.media_about-box.media-block .media-about-left p {
  text-align: left;
  word-break: unset;
}
@media (max-width: 580px) {
  .media_about-box.media-block .media-about-left p {
    letter-spacing: 0.5px;
  }
}
.media_about-box.media-block .media-about-left p a {
  display: inline-block;
  text-decoration: underline;
}
.media_about-box.media-block .media-about-left .mda-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -16px;
  margin-left: -8px;
  margin-right: -8px;
}
@media (max-width: 991px) {
  .media_about-box.media-block .media-about-left .mda-btn-wrap {
    margin-bottom: -10px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.media_about-box.media-block .media-about-left .mda-btn-wrap .button {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 16px;
  margin-left: 8px;
  margin-right: 8px;
}
@media (max-width: 991px) {
  .media_about-box.media-block .media-about-left .mda-btn-wrap .button {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.media_about-box.media-block .media-about-left .mda-btn-wrap .button:hover {
  background-color: #022a3a;
  color: #fff;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-right {
    width: 100% !important;
  }
}
.media_about-box.media-block .media-about-right img {
  border-radius: 20px;
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-right img {
    height: auto;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.media_about-box.media-block .media-about-right .slider-abt {
  line-height: 0;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-right .slider-abt {
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .media_about-box.media-block .media-about-right .slider-abt {
    margin: 0;
  }
}
.media_about-box.media-block .media-about-right .slider-abt .slick-arrow {
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 580px) {
  .media_about-box.media-block .media-about-right .slider-abt .slick-track {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-right .slider-abt .slick-track .slick-slide {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .media_about-box.media-block .media-about-right .wrap-abt {
    height: auto;
    overflow: visible;
    padding: 0;
  }
}
.media_about-box.media-block .media-about-right .wrap-abt .slick-track {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .media_about-box.media-block .main-item .fluidvids {
    padding-top: 55.7% !important;
  }
}
@media (max-width: 1024px) {
  .media_about-box + .hrsm {
    margin: 45px auto;
  }
}
@media (max-width: 991px) {
  .media_about-box + .hrsm {
    margin: 30px auto;
  }
}

.u-responsive-align p,
.u-responsive-align ul,
.u-responsive-align ol {
  word-break: break-word;
}
@media (max-width: 1069px) {
  .u-responsive-align h2.u-h1,
.u-responsive-align h2.u-h2 {
    text-align: center;
  }
}

.u-responsive-body-align h2.u-h1,
.u-responsive-body-align h2.u-h2,
.u-responsive-body-align h2,
.u-responsive-body-align h3 {
  text-align: center;
}
.u-responsive-body-align p,
.u-responsive-body-align ul,
.u-responsive-body-align ol {
  text-align: unset;
}

.form__field {
  margin: 21px 0;
}

.form-label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 5.5px;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/build/img/down-select.png");
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border-radius: 24px;
}

html[dir=rtl] select {
  background-position: 12px center;
}

.hidden-input {
  border: 0;
  height: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
}

.location-classes.remove-height {
  line-height: 0;
}

.line-height-0 {
  line-height: 0;
}

.line-height-intl {
  line-height: initial;
}

select.js-select2,
select#partnerid,
select#location,
select#Reasons,
select#Partners {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/build/img/down-select-white.png");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-size: 12px auto;
}

.u-form-white {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - 317px);
}
.u-form-white .input-text,
.u-form-white .input-text::-webkit-input-placeholder,
.u-form-white select {
  background-color: white;
  font-size: 16px;
}
.u-form-white .input-text,
.u-form-white .input-text::-moz-placeholder,
.u-form-white select {
  background-color: white;
  font-size: 16px;
}
.u-form-white .input-text,
.u-form-white .input-text::-ms-input-placeholder,
.u-form-white select {
  background-color: white;
  font-size: 16px;
}
.u-form-white .input-text,
.u-form-white .input-text::placeholder,
.u-form-white select {
  background-color: white;
  font-size: 16px;
}

.input-text,
.datepickerfield,
select,
textarea {
  background-color: #d6d9df;
  border: 0;
  border-radius: 24px;
  color: #022a3a;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 20px;
  outline: 0;
  padding: 16px 11px 12px;
  width: 100%;
}
.input-text::-webkit-input-placeholder,
.datepickerfield::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #022a3a;
  font-weight: inherit;
  text-transform: uppercase;
}
.input-text::-moz-placeholder,
.datepickerfield::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #022a3a;
  font-weight: inherit;
  text-transform: uppercase;
}
.input-text::-ms-input-placeholder,
.datepickerfield::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #022a3a;
  font-weight: inherit;
  text-transform: uppercase;
}
.input-text::placeholder,
.datepickerfield::placeholder,
select::placeholder,
textarea::placeholder {
  color: #022a3a;
  font-weight: inherit;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .calendar-sdate-design input {
    font-size: 16px;
  }
}

.curved-new-form .info-form form {
  border-radius: 22px;
}
.curved-new-form .info-form form .form-group {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .curved-new-form .info-form form .form-group {
    margin-bottom: 14px;
  }
}
.curved-new-form .info-form form .form-group .iti--allow-dropdown,
.curved-new-form .info-form form .form-group input,
.curved-new-form .info-form form .form-group select {
  margin-bottom: 0;
}
.curved-new-form .info-form form .form-group .field-validation-error {
  display: inline-block;
}
.curved-new-form .info-form form .border-frame {
  margin-bottom: 0;
  padding-top: 0;
}
.curved-new-form .info-form form input[type=submit],
.curved-new-form .info-form form button[type=submit],
.curved-new-form .info-form form .hs-submit {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 96px;
  color: #022a3a;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  max-width: 100%;
  min-width: 189px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color, border-color, color 0.3s ease;
  -o-transition: background-color, border-color, color 0.3s ease;
  transition: background-color, border-color, color 0.3s ease;
  width: auto;
}
@media (max-width: 1199px) {
  .curved-new-form .info-form form input[type=submit],
.curved-new-form .info-form form button[type=submit],
.curved-new-form .info-form form .hs-submit {
    font-size: 20px;
    line-height: 24px;
    min-width: 160px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .curved-new-form .info-form form input[type=submit],
.curved-new-form .info-form form button[type=submit],
.curved-new-form .info-form form .hs-submit {
    font-size: 16px;
    line-height: 22px;
    min-width: 140px;
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 575px) {
  .curved-new-form .info-form form input[type=submit],
.curved-new-form .info-form form button[type=submit],
.curved-new-form .info-form form .hs-submit {
    font-size: 15px;
    line-height: 19px;
    min-width: 76px;
    padding: 6px 24px;
  }
}
.curved-new-form .info-form form input[type=submit]:not(:disabled):hover,
.curved-new-form .info-form form button[type=submit]:not(:disabled):hover,
.curved-new-form .info-form form .hs-submit:not(:disabled):hover {
  background-color: #fff;
  border-color: #fff;
  color: #022a3a;
}
.curved-new-form .info-form form input[type=submit]:focus,
.curved-new-form .info-form form button[type=submit]:focus,
.curved-new-form .info-form form .hs-submit:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.curved-new-form .info-form form input[type=submit]:disabled,
.curved-new-form .info-form form button[type=submit]:disabled,
.curved-new-form .info-form form .hs-submit:disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 575px) {
  .curved-new-form .info-form form .umbraco-forms-fieldset .rpt-name > .row-fluid {
    padding-right: 0;
    width: 100%;
  }
}
.curved-new-form .input-text,
.curved-new-form .datepickerfield,
.curved-new-form select,
.curved-new-form textarea {
  border-radius: 24px;
  font-weight: 500;
  height: 50px;
  max-height: 50px;
  padding: 15px 24px;
}
@media (max-width: 1199px) {
  .curved-new-form .input-text,
.curved-new-form .datepickerfield,
.curved-new-form select,
.curved-new-form textarea {
    height: 46px;
    max-height: 46px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 991px) {
  .curved-new-form .input-text,
.curved-new-form .datepickerfield,
.curved-new-form select,
.curved-new-form textarea {
    height: auto;
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .curved-new-form .input-text,
.curved-new-form .datepickerfield,
.curved-new-form select,
.curved-new-form textarea {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding: 7px 13px;
  }
}
.curved-new-form select {
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: calc(100% - 30px) center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .curved-new-form select {
    background-position: calc(100% - 20px) center;
    background-size: 17px auto;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  .curved-new-form select {
    background-position: calc(100% - 15px) center;
    background-size: 13px auto;
    padding-right: 36px;
  }
}
.curved-new-form .countrycodewithmobile input.input-text,
.curved-new-form .countrycodewithmobileksa input.input-text,
.curved-new-form .countrycodewithmobilebhr input.input-text {
  padding-left: 109px !important;
  text-indent: 13px;
}
@media (max-width: 991px) {
  .curved-new-form .countrycodewithmobile input.input-text,
.curved-new-form .countrycodewithmobileksa input.input-text,
.curved-new-form .countrycodewithmobilebhr input.input-text {
    padding-left: 107px !important;
  }
}
@media (max-width: 767px) {
  .curved-new-form .countrycodewithmobile input.input-text,
.curved-new-form .countrycodewithmobileksa input.input-text,
.curved-new-form .countrycodewithmobilebhr input.input-text {
    padding-left: 103px !important;
    text-indent: 11px;
  }
}
@media (max-width: 575px) {
  .curved-new-form .countrycodewithmobile input.input-text,
.curved-new-form .countrycodewithmobileksa input.input-text,
.curved-new-form .countrycodewithmobilebhr input.input-text {
    padding-left: 101px !important;
    text-indent: 8px;
  }
}
.curved-new-form .referwrap-box {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .curved-new-form .referwrap-box .thnk-msg-social-share .social-share-btn {
    font-size: 14px;
  }
}
.curved-new-form.ampdata_register .right .amp-form .referwrap-box {
  padding: 0;
}
.curved-new-form .ampdata_register .right .amp-form .referwrap-box {
  padding: 0;
}

.input-text-white {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #022a3a;
  display: block;
  font-family: "Montserrat", sans-serif;
  outline: 0;
  padding: 16px 11px 12px;
  width: 100%;
}
.input-text-white::-webkit-input-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #022a3a;
  text-transform: uppercase;
}
.input-text-white::-moz-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #022a3a;
  text-transform: uppercase;
}
.input-text-white::-ms-input-placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #022a3a;
  text-transform: uppercase;
}
.input-text-white::placeholder {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #022a3a;
  text-transform: uppercase;
}

#custform .input-text {
  background-color: #022a3a;
  border-bottom: 2px solid #fff;
  color: #fff;
}

#custform .input-text.input-drp {
  background: url("/build/img/down-select-white.png") no-repeat no-repeat calc(100% - 7px) center/12px auto, -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#676565), to(#6e7275));
  background: url("/build/img/down-select-white.png") no-repeat no-repeat calc(100% - 7px) center/12px auto, -webkit-linear-gradient(top, #fff, #676565, #6e7275);
  background: url("/build/img/down-select-white.png") no-repeat no-repeat calc(100% - 7px) center/12px auto, -o-linear-gradient(top, #fff, #676565, #6e7275);
  background: url("/build/img/down-select-white.png") no-repeat no-repeat calc(100% - 7px) center/12px auto, linear-gradient(to bottom, #fff, #676565, #6e7275);
}

#custform .input-text.input-drp option {
  color: black;
}

#custform button.button.code-button {
  background: #022a3a;
  color: #f4cd00;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 13px 10px;
  padding: 4px 13px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

#custform button.button.code-button:hover {
  background: #022a3a;
  color: #f4cd00;
}

#custform span.error.spanerror {
  color: red;
}

#custform button.button.code-button span {
  font-size: 14px;
}

@media (max-width: 580px) {
  #custform button.button.code-button span {
    font-size: 12px;
  }

  #custform button.button.code-button {
    margin: 19px 6px;
    padding: 4px 0;
  }

  #custform svg.o-icon {
    height: 20px;
    margin: unset;
    width: 20px;
  }
}
.daypass {
  margin: 20px;
  width: 90%;
}
.daypass p {
  position: relative;
  top: -9px;
}
.daypass h4 {
  color: #fff;
  text-align: center;
}

.promocode td {
  position: relative;
}

.txtlable {
  text-align: justify;
}
.txtlable a {
  color: blue;
}

.membership-fee-cost {
  text-align: right;
  width: 100%;
}

/**
 * Buttons.
 *
 * 1. Extends `components.button`: Umbraco forms uses input type submit
 *    for buttons (rather than <button />) so the flexbox fix will not
 *    work for this (Bug: GYM-010).
 */
.form input[type=submit] {
  display: inline-block;
}

/**
 * Validation.
 *
 * 1. Umbraco forms validation per field error message.
 */
.umbraco-forms-hidden {
  display: none;
}

.field-validation-error,
.custom-phone-validation {
  color: #f00;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .field-validation-error,
.custom-phone-validation {
    font-size: 12px;
    line-height: 16px;
  }
}

.custom-phone-validation {
  display: none;
}

.location-validation-error,
.enquiry-validation-error,
.membership-validation-error,
.contract-validation-error,
.reason-validation-error,
.file-validation-error,
.Position-validation-error,
.cv-validation-error,
.free-location-validation-error {
  color: #f00;
  display: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .location-validation-error,
.enquiry-validation-error,
.membership-validation-error,
.contract-validation-error,
.reason-validation-error,
.file-validation-error,
.Position-validation-error,
.cv-validation-error,
.free-location-validation-error {
    font-size: 12px;
    line-height: 16px;
  }
}
.location-validation-error span,
.enquiry-validation-error span,
.membership-validation-error span,
.contract-validation-error span,
.reason-validation-error span,
.file-validation-error span,
.Position-validation-error span,
.cv-validation-error span,
.free-location-validation-error span {
  margin-top: 0;
}

.u-lead-form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.u-lead-form form input {
  margin-bottom: 0;
  max-width: unset;
  width: 100%;
}
@media (max-width: 767px) {
  .u-lead-form form input {
    margin-bottom: 0;
    margin-right: 0;
    max-width: unset;
    width: 100%;
  }
}
.u-lead-form form .shortanswer {
  float: left;
  margin: 5px;
  max-width: calc(22% - 8px);
  width: 100%;
}
@media (max-width: 767px) {
  .u-lead-form form .shortanswer {
    margin-top: 5px;
    max-width: calc(100% - 10px);
  }
}
@media (max-width: 767px) {
  .u-lead-form form {
    margin-top: 10px;
  }
}
.u-lead-form .btnAlign {
  display: inline-block;
  margin-top: 5px;
  width: 100%;
}
@media (max-width: 767px) {
  .u-lead-form .btnAlign {
    margin: 15px 0 0;
  }
}
.u-lead-form .btnAlign .button {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 767px) {
  .u-lead-form .btnAlign .button {
    min-width: 200px;
    width: unset;
  }
}
.u-lead-form .each-checkbox {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
  position: relative;
}
.u-lead-form .each-checkbox span {
  margin-right: 10px;
}
.u-lead-form .each-checkbox input {
  margin-bottom: 0;
  margin-right: 20px;
}
.u-lead-form .each-checkbox:last-child input {
  margin-right: 0;
}

#workoutlead select {
  border: 0;
  border-radius: 0;
  color: #677f89;
  font-family: Montserrat, sans-serif;
  outline: 0;
  padding: 16px 30px 12px 11px;
  vertical-align: middle;
  width: 100%;
}
#workoutlead input[type=checkbox] {
  cursor: pointer;
  padding: 0;
  position: relative;
}
#workoutlead input[type=checkbox]::before {
  background-color: white;
  border: 2px solid #555;
  border-radius: 20px;
  content: "";
  display: block;
  height: 18px;
  left: -1px;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
}
#workoutlead input[type=checkbox]:checked::after {
  border: solid black;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 10px;
  left: 5px;
  position: absolute;
  top: 3px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
}

.checkbox-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.u-fill-Orange {
  background-color: orange !important;
}

html[dir=rtl] .dropdown dd ul li a span:first-child {
  margin-left: 5px;
  margin-right: 0;
}
html[dir=rtl] .dropdown dt a span span:first-child {
  margin-left: 5px;
  margin-right: 0;
}

.u-border-bottom {
  border-bottom: solid 1px #022a3a1a;
}

.chk-doc {
  cursor: pointer;
  display: block;
  float: left;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .chk-doc {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .chk-doc {
    margin-bottom: 8px;
  }
}

.field-border-style {
  border: 1px solid #000;
  display: none;
  margin: 12px 0;
  padding: 0 15px 5px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .field-border-style {
    padding: 0 15px 8px;
  }
}
.field-border-style h5 {
  background-color: #f4cd00;
  display: table;
  margin: -7px 0 15px -6px;
  padding: 0 6px;
}
.field-border-style h5:first-child {
  margin-top: -7px;
}

.thnk-msg-social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -6px;
  width: 100%;
}
.thnk-msg-social-share .social-share-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #022a3a;
  border: 1px solid #022a3a;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  line-height: 22px;
  margin: 0 3px 6px;
  min-width: 120px;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  .thnk-msg-social-share .social-share-btn {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 24px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 10px !important;
    height: 40px !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: 0;
    min-width: auto;
    padding: 0;
    width: 92px !important;
  }
}
@media (max-width: 379px) {
  .thnk-msg-social-share .social-share-btn {
    font-size: 9px !important;
    max-width: 100%;
    min-width: 76px;
    padding: 6px 8px;
    width: auto !important;
  }
}
.thnk-msg-social-share .social-share-btn:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
.thnk-msg-social-share .social-share-btn:hover img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.thnk-msg-social-share .social-share-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
  height: auto;
  margin-right: 10px;
  max-height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 20px;
}
@media (max-width: 767px) {
  .thnk-msg-social-share .social-share-btn img {
    float: none;
    margin-right: 5px !important;
    width: 14px !important;
  }
}

.thnk-social-share-main {
  margin-top: 21px;
  width: 100%;
}

.link-share-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 576px;
  width: 100%;
}
@media (max-width: 767px) {
  .link-share-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .link-share-box {
    -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
  }
}
.link-share-box .referlink {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #022a3a;
  border-radius: 24px 0 0 24px;
  display: block;
  font-size: 16px;
  height: 44px;
  line-height: 20px;
  outline: none;
  padding: 11px;
  width: 100%;
}
@media (max-width: 690px) {
  .link-share-box .referlink {
    font-size: 15px;
    margin-bottom: 0;
  }
}
@media (max-width: 485px) {
  .link-share-box .referlink {
    font-size: 13px;
  }
}
@media (max-width: 410px) {
  .link-share-box .referlink {
    font-size: 11px;
    height: 40px;
    max-height: 40px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 369px) {
  .link-share-box .referlink {
    font-size: 10px;
    height: 36px;
    max-height: 36px;
    padding-bottom: 7px;
    padding-top: 7px;
  }
}
.link-share-box .referlink:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.link-share-box button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #022a3a;
  border: 1px solid #022a3a;
  border-radius: 0 24px 24px 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  height: 44px;
  line-height: 22px;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: nowrap;
}
@media (max-width: 690px) {
  .link-share-box button {
    background-image: url("/build/svg/icons/copy-icon-white.svg");
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    font-size: 0;
    width: 44px;
  }
}
@media (max-width: 485px) {
  .link-share-box button {
    background-position: 7px center;
    background-size: 20px auto;
  }
}
@media (max-width: 410px) {
  .link-share-box button {
    height: 40px;
    max-height: 40px;
  }
}
@media (max-width: 369px) {
  .link-share-box button {
    background-size: 17px auto;
    height: 36px;
    max-height: 36px;
    width: 40px;
  }
}
.link-share-box button:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
@media (max-width: 690px) {
  .link-share-box button:hover {
    background-image: url("/build/svg/icons/copy-icon-dark.svg");
  }
}
.link-share-box button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.thnk-refer-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 12px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .thnk-refer-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .thnk-refer-title {
    font-size: 12px;
    line-height: 18px;
  }
}
.thnk-refer-title:last-child {
  margin-bottom: 0;
}

.location-select-hero .curved-new-form .referwrap-box .thnk-msg-social-share {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.location-select-hero .curved-new-form .referwrap-box .thnk-msg-social-share .social-share-btn {
  font-size: 10px;
  margin: 0;
}
.location-select-hero .curved-new-form .referwrap-box .thnk-msg-social-share .social-share-btn img {
  margin-right: 6px;
}

/* ==========================================================================
   #EDITOR-CONTENT
   ========================================================================== */
/**
 * Reset styles/overrides for any content authored via the TinyMCE
 * WYSIWYG editor.
 */
.editor-content img {
  border-radius: 20px;
  height: auto;
  max-width: 100%;
}
.editor-content iframe,
.editor-content .fluidvids {
  margin: 0 0 21px;
}
.editor-content iframe {
  height: 268px;
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .editor-content iframe {
    height: 365px;
  }
}
.editor-content ul {
  margin-left: 20px;
}
.editor-content ol {
  margin-left: 20px;
}
.editor-content a {
  text-decoration: underline;
}

.coming-soon-sec .editor-content a {
  text-decoration: none;
}

.ul-padding-left ul {
  padding-left: 20px;
}

.ul-padding-right ul {
  padding-right: 20px;
}

.ul-padding-top ul {
  padding-top: 20px;
}

.ul-padding-bottom ul {
  padding-bottom: 20px;
}

.fullanswer {
  display: inline-block;
  float: left;
  margin-bottom: 5px;
  margin-right: 10px;
  max-width: 100%;
  width: 100%;
}

.main-item .fluidvids {
  padding-top: 54.93% !important;
}

/* ==========================================================================
   #Custom Css for registration form, refer a friend  form and Personal trainer page
========================================================================== */
.w-100 {
  width: 100%;
}

.registernow {
  margin: 0 auto;
  margin-left: unset !important;
  width: 100% !important;
}
.registernow .location_dropdown-white .location_label {
  padding-bottom: 11px;
  padding-top: 11px;
}

.registernow input[type=text] {
  background-color: #d6d9df;
}

.registernow h4 {
  color: white;
}

@media (max-width: 979px) {
  .r-wrapper {
    padding-left: 21px;
  }
}

@media (min-width: 20em) {
  .regcontent\@mobile {
    padding-top: 25px;
  }
}
@media (min-width: 46.25em) {
  .regcontent\@mobile {
    padding-top: 25px;
  }
}
@media (min-width: 61.25em) {
  .regcontent\@desktop {
    padding-top: 1px;
  }
}
.regcontent ul {
  padding: 1px 0 25px 25px;
}

.regcontent .iti__country-list {
  padding-left: 0;
}

.regform {
  background-color: #022a3a;
  height: 30%;
}

.registernow .button:hover {
  background-color: #f4cd00;
  color: #022a3a;
}

.referafriend input[type=text] {
  display: inline;
  margin: 8px 0;
}

.referafriend label:not(.location_label) {
  display: none !important;
}

.row {
  text-align: center;
  width: 100%;
}

.block {
  display: inline-block;
  width: 24%;
}

.blockhead {
  font-weight: bold;
  padding-right: 20px;
  text-align: right;
}

@media (min-width: 20em) {
  .block\@ {
    width: 100%;
  }

  .mblock\@mobile {
    width: 90%;
  }

  .block\@mobile {
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .amp-form.o-layout.o-layout--center.u-margin-top-medium .btp-form .block\@tablet {
    display: inline-block;
    width: 100%;
  }

  .block\@tablet {
    display: inline-block;
    width: 24%;
  }

  .mblock\@tablet {
    display: inline-block;
    width: calc(48% - 18px);
  }
}
@media (min-width: 61.25em) {
  .block\@desktop {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: calc(24% - 22px);
  }

  .mblock\@desktop {
    display: inline-block;
    text-align: center;
    width: 22%;
  }
}
.o-band-low {
  padding: 30px 0;
}

.o-layaout-p {
  padding-right: 20px !important;
}

.PTBox {
  color: #022a3a;
  font-size: 13pt;
  padding-bottom: 11px;
  padding-top: 15px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

a.PTItem span {
  background-color: #f4cd00;
  border-radius: 0 0 19px 19px;
  bottom: 0;
  color: #022a3a;
  display: block;
  font-size: 13pt;
  font-weight: bold;
  left: 0;
  padding: 10px 20px;
  right: 0;
  text-align: center;
}

a.PTItem {
  width: 100%;
}

a.PTItem p {
  font-size: 10pt;
  max-height: 25px;
}

a.PTItem h4 {
  margin-bottom: 10px;
}

a.PTItem div.ptimage {
  background-position: center top;
  background-size: cover;
  height: 300px;
}

.arrow {
  float: right;
}

.ptintro {
  text-align: left !important;
}

.ptblockbg {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #022a3a !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5px;
  width: 100%;
}

.ptheading {
  color: white;
  margin: 0;
}

.ptheadingblue {
  color: #022a3a;
  padding-top: 10px;
}

.ptblock {
  background-color: white !important;
  border: 2px solid #f4cd00;
  border-radius: 20px;
  margin: 0 15px 15px;
}
.ptblock:hover {
  cursor: pointer;
}
.ptblock:hover a.PTItem span {
  background-color: #022a3a;
  color: #fff;
}
.ptblock .ptimage {
  border-radius: 18px 18px 0 0;
}
.ptblock .PTItem {
  border-radius: 0 0 18px 18px;
}

.mItem {
  cursor: pointer;
}

.mItem span {
  background-color: #022a3a;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  color: #f4cd00;
  display: block;
  font-size: 11pt;
  font-weight: bold;
  left: 0;
  padding: 5px;
  right: 0;
  text-align: center;
}

.mItem div.mImage {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100px;
}

.mablock {
  background-color: #79939d;
  border-radius: 20px;
  margin: 15px;
}

.equipment-loadmore-wrap {
  margin-top: 15px;
}
.equipment-loadmore-wrap .load-more:hover {
  background-color: #022a3a;
  color: #f4cd00;
}

.mrow {
  margin: auto;
  padding-top: 3%;
  text-align: left;
  width: 100%;
}

.group {
  display: none;
}

.equipment_grp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.equipment_grp > .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 61.25em) {
  .equipment_grp > .group {
    width: calc(25% - 30px);
  }
}
@media (max-width: 979px) {
  .equipment_grp > .group {
    width: calc(50% - 15px);
  }
}
@media (max-width: 575px) {
  .equipment_grp > .group {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 979px) {
  .equipment_grp > .group:nth-child(odd) {
    margin-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 979px) {
  .equipment_grp > .group:nth-child(even) {
    margin-right: 0;
  }
}
.equipment_grp > .group.active {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.equipment_grp > .group > .mItem {
  width: 100%;
}
.equipment_grp > .group > .mItem .mImage {
  width: 100%;
}
.equipment_grp > .group > .mItem .mImage + span {
  height: calc(100% - 100px);
  width: 100%;
}
@media (max-width: 575px) {
  .equipment_grp > .group > .mItem .mImage + span {
    height: auto;
  }
}

.group.active {
  display: inline-block;
}

#load-more {
  background-color: #f4cd00;
  color: #022a3a;
  cursor: pointer;
  height: 30px;
  text-align: center;
  width: 30%;
}

#load-more.disable {
  color: #aaa;
  cursor: default;
  text-decoration: none;
}

.fcBox {
  background-color: #f4cd00;
  color: #022a3a;
  font-size: 11pt;
  padding-top: 15px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.fcBox h2 {
  display: block;
  padding-bottom: 10px;
}

.fcBox:hover {
  background-color: #022a3a;
  color: #fff;
}

.fclsrow {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: left;
  width: 100%;
}
@media (min-width: 20em) {
  .fclsrow .fcblock\@mobile {
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .fclsrow .fcblock\@tablet {
    display: inline-block;
    width: calc(26% - 12px);
  }
}
@media (min-width: 61.25em) {
  .fclsrow .fcblock\@desktop {
    display: inline-block;
    width: calc(25% - 5px);
  }
}

.fcrow {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: left;
  width: 100%;
}
@media (min-width: 20em) {
  .fcrow .fcblock\@mobile {
    width: 100%;
  }
}
@media (min-width: 36.625em) {
  .fcrow .fcblock\@tablet {
    display: inline-block;
    width: calc(50% - 12px);
  }
}
@media (min-width: 46.25em) {
  .fcrow .fcblock\@tablet {
    display: inline-block;
    width: calc(50% - 12px);
  }
}
@media (min-width: 61.25em) {
  .fcrow .fcblock\@desktop {
    display: inline-block;
    width: calc(32% - 5px);
  }
}

.ftcrow {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: left;
  width: 100%;
}
@media (min-width: 20em) {
  .ftcrow .fcblock\@mobile {
    margin-bottom: 10px;
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .ftcrow .fcblock\@tablet {
    display: inline-block;
    width: calc(26% - 12px);
  }
}
@media (min-width: 61.25em) {
  .ftcrow .fcblock\@desktop {
    display: inline-block;
    width: calc(24% - 7px);
  }
}
.ftcrow.hover_effect .fcblock {
  cursor: pointer;
}
.ftcrow.hover_effect .fcblock .fcBox h6 {
  padding-bottom: 14px;
}
.ftcrow.hover_effect .fcblock:hover .fcBox {
  background-color: #022a3a;
  color: #fff;
}

.fcrowclass {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: left;
  width: 100%;
}
@media (min-width: 20em) {
  .fcrowclass .fcblock\@mobile {
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .fcrowclass .fcblock\@tablet {
    display: inline-block;
    width: calc(50% - 9px);
  }
}
@media (min-width: 61.25em) {
  .fcrowclass .fcblock\@desktop {
    display: inline-block;
    width: calc(25% - 8px);
  }
}
.fcrowclass .fitness-calc-img {
  height: auto;
  padding-top: 59%;
  position: relative;
}
.fcrowclass .fitness-calc-img img {
  left: 3px;
  position: absolute;
  top: 3px;
  width: calc(100% - 6px);
}
.fcrowclass .fcblock::after {
  border-radius: 20px;
}
.fcrowclass .fcblock:hover {
  cursor: pointer;
}
.fcrowclass .fcblock:hover a {
  background-color: #022a3a;
}
.fcrowclass .fcblock:hover .fitness-calc-img::after {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.fcrowclass .fcblock:hover .fcBox {
  background-color: #022a3a;
  color: #fff;
}
.fcrowclass .fcblock a {
  background-color: #f4cd00;
  border-radius: 20px;
  display: block;
  height: 100%;
}
.fcrowclass .fcblock a .fcBox {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  border-radius: 0 0 20px 20px;
  height: auto;
  min-height: 60px;
  padding-left: 10px;
  padding-right: 10px;
}
.fcrowclass .fcblock a .fitness-calc-img {
  border-radius: 20px;
}
.fcrowclass .fcblock a .fitness-calc-img img {
  border-radius: 20px;
}
@media (min-width: 20em) and (max-width: 46.25em) {
  .fcrowclass .fcblock a {
    height: auto;
  }
  .fcrowclass .fcblock a .fitness-calc-img {
    height: auto;
  }
  .fcrowclass .fcblock a .fcBox {
    height: auto;
    margin-top: -1px;
  }
}

.fcblock {
  background-color: white;
  position: relative;
}
.fcblock::after {
  border: 4px solid #f4cd00;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.fcblock:hover::after {
  border-color: #022a3a;
}

.erblock {
  background-color: white;
  margin: 10px;
}

@media (min-width: 20em) {
  .erblock\@mobile {
    width: 100%;
  }

  .apply-promocode .header {
    width: 100%;
  }
  .apply-promocode .promocode--div .textbox {
    margin-bottom: 10px;
  }
  .apply-promocode .promocode--div .textbox #txtcoupen {
    padding: 5px 10px;
    width: 100%;
  }
  .apply-promocode .promocode--div .btn-submit {
    float: left;
  }
  .apply-promocode .btn-submit {
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .erblock\@tablet {
    display: inline-block;
    width: 22%;
  }
}
@media (min-width: 61.25em) {
  .erblock\@desktop {
    display: inline-block;
    width: 19%;
  }
}
a.catitem h5 {
  padding-top: 35px;
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.sitemapbody {
  background-color: #022a3a;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.sitemapbody .ptblock {
  padding: 3px 10px;
}

.heading--tick::before {
  color: #f4cd00;
  content: "✔";
  display: inline-block;
  line-height: 1.5;
  padding-right: 10px;
  text-align: center;
}

.fitness-wrap .each-class .icon {
  margin-bottom: 20px;
}
@media (max-width: 420px) {
  .fitness-wrap .each-class .icon span b {
    font-size: 16px !important;
  }
}
.fitness-wrap .each-class .icon-wrp {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  width: 100px;
}
@media (max-width: 420px) {
  .fitness-wrap .each-class .icon-wrp {
    width: 70px;
  }
}
.fitness-wrap .o-layout {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

@media (max-width: 61.25em) {
  .fitness-wrap .each-class {
    margin-bottom: 50px;
    padding: 0 15px;
  }
}
@media (max-width: 61.25em) and (max-width: 420px) {
  .fitness-wrap .each-class {
    margin-bottom: 25px;
    padding: 0 10px;
  }
}
@media (max-width: 61.25em) {
  .fitness-wrap .each-class:last-child, .fitness-wrap .each-class:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (max-width: 46.25em) {
  .fitness-wrap .each-class:nth-last-child(2) {
    margin-bottom: 20px;
  }
}
@media (min-width: 20em) {
  .cblock\@mobile {
    width: 100%;
  }

  .apply-promocode .header {
    width: 100%;
  }
}
@media (min-width: 46.25em) {
  .cblock\@tablet {
    display: inline-block;
    width: 24%;
  }
}
@media (min-width: 61.25em) {
  .cblock\@desktop {
    display: inline-block;
    width: 30%;
  }
}
.o-band-lowest {
  padding: 8px 0;
}

.ptform {
  color: white;
  font-weight: 400;
  margin-bottom: -42px;
  margin-left: -20px;
  margin-top: -21px;
  padding-left: 20px;
  text-align: left;
}

.tickmark::before {
  color: #f4cd00;
  content: "✔︎";
  padding-right: 10px;
}

#umbraco_form_3bfd6d1fa1614c78a11e4b5760f74001 {
  display: block;
  margin: 0 auto 20px;
  max-width: 40%;
  width: 100%;
}

#cover {
  background: #14152600;
  color: #f4cd00;
  font-family: tahoma;
  font-size: 65px;
  text-align: center;
  z-index: 9999;
}

.remaning-membership-wrp {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #000;
  text-align: center;
}
.remaning-membership-wrp h6 {
  background-color: #f4cd00;
  border-radius: 4px;
  font-weight: 400;
  margin: 10px 0 0 40px;
  padding: 23px 23px 23px 37px;
  position: relative;
  text-transform: none;
}
.remaning-membership-wrp h6 .feature__icon {
  background-color: #fff;
  border-radius: 100%;
  height: 70px;
  left: -35px;
  line-height: 70px;
  margin-top: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
}
.remaning-membership-wrp h6 .feature__icon .o-icon {
  fill: #022a3a;
}
@media (max-width: 740px) {
  .remaning-membership-wrp h6 .feature__icon {
    left: 14px;
  }
}
.remaning-membership-wrp h6 .feature__icon i {
  color: red;
  display: inline-block;
  font-size: 35px;
  line-height: 100px;
}
.remaning-membership-wrp h6 span {
  color: red;
  font-weight: 700;
  vertical-align: bottom;
}

.remaning-time-wrp {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}
.remaning-time-wrp h6 {
  background-color: #fff;
  border-radius: 4px;
  font-weight: 400;
  margin: 10px 0 0 40px;
  padding: 23px 23px 23px 37px;
  position: relative;
  text-transform: none;
}
@media (max-width: 767px) {
  .remaning-time-wrp h6 {
    width: 100%;
  }
}
.remaning-time-wrp h6 .feature__icon {
  background-color: #f4cd00;
  border-radius: 100%;
  height: 70px;
  left: -35px;
  line-height: 70px;
  margin-top: 0;
  text-align: center;
  top: 49%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
}
@media (max-width: 740px) {
  .remaning-time-wrp h6 .feature__icon {
    left: 14px;
  }
}
.remaning-time-wrp h6 .feature__icon i {
  color: #022a3a;
  display: inline-block;
  font-size: 35px;
  line-height: 100px;
}
.remaning-time-wrp h6 .feature__icon .o-icon {
  fill: #022a3a;
}
.remaning-time-wrp h6 .feature__icon svg {
  margin-top: -4px;
}
.remaning-time-wrp h6 span {
  color: red;
  font-weight: 700;
  vertical-align: bottom;
}

@media (max-width: 575px) {
  .remain-half .remaning-time-wrp h6,
.remain-half .remaning-membership-wrp h6 {
    margin-left: 0;
    margin-top: 55px;
    padding: 52px 15px 20px;
  }
}
@media (max-width: 575px) {
  .remain-half .remaning-time-wrp h6 .feature__icon,
.remain-half .remaning-membership-wrp h6 .feature__icon {
    left: 50%;
    margin-left: auto;
    margin-right: auto;
    top: -35px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 70px;
  }
}
@media (max-width: 575px) {
  .remain-half .remaning-time-wrp h6 span,
.remain-half .remaning-membership-wrp h6 span {
    width: 100%;
    word-break: break-word;
  }
}

.error-wrp span p {
  margin: 21px !important;
}

.sticky-modal {
  display: none;
  font-weight: 700;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 5;
}
.sticky-modal .modal-content {
  background: #fff;
  border-radius: 4px;
  bottom: 0;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 14px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 14px 0 rgba(0, 0, 0, 0.1);
  margin: 0 15px 72px 0;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  max-width: 550px;
  padding: 20px;
  position: fixed;
  right: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .sticky-modal .modal-content {
    max-width: 570px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sticky-modal .modal-content {
    max-width: 470px;
  }
}
@media (max-width: 580px) {
  .sticky-modal .modal-content {
    max-width: 70%;
  }
}
@media (max-width: 420px) {
  .sticky-modal .modal-content {
    float: unset;
    max-width: 85%;
    padding: 15px;
    text-align: center;
    width: 100%;
  }
}
.sticky-modal .modal-content .close {
  border-radius: 100%;
  color: #000;
  cursor: pointer;
  float: right;
  font-size: 38px;
  font-weight: normal;
  height: unset;
  line-height: unset;
  margin: -6px 8px;
  padding: -12px 26px;
  position: absolute;
  right: 0;
  top: 0;
}
.sticky-modal .modal-content .close::after {
  border: 2px solid black;
  border-radius: 100%;
  content: "";
  height: 25px;
  margin: 14px -23px;
  position: absolute;
  width: 25px;
}
.sticky-modal .modal-content h6 {
  color: #f00;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: none !important;
}
@media (max-width: 580px) {
  .sticky-modal .modal-content h6 {
    font-size: 14px;
    padding: 0;
  }
}
@media (max-width: 420px) {
  .sticky-modal .modal-content h6 {
    max-width: unset;
    padding: 2px;
    text-align: start;
    width: 100%;
  }
}
.sticky-modal .modal-content span {
  color: #f00;
  font-weight: 700;
}

@media (max-width: 1300px) {
  .desktop-show {
    display: none;
  }
}

.mobile-show {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-show {
    display: block;
  }
}

.popuplogo {
  display: inline-block;
  float: left;
  margin-right: 15px;
  max-width: 70px;
}
@media (max-width: 420px) {
  .popuplogo {
    display: block;
    float: unset;
    margin: 0 auto 15px;
    max-width: 50px;
  }
}

.sticky-label .o-icon {
  height: 34px;
  width: 34px;
}
.sticky-label h6 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px dashed #f00;
  color: #f00;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 15px;
  padding: 5px;
  text-transform: none;
  width: auto;
}
.sticky-label span {
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.sticky-label span .o-icon {
  fill: #f00;
  height: 28px;
  width: 28px;
}
@media (max-width: 480px) {
  .sticky-label span {
    margin-right: 0;
  }
}
.sticky-label .i {
  color: #f00;
}
.sticky-label .trim-text {
  color: #f00;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 480px) {
  .sticky-label .trim-text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .o-layout_item-wrp {
    width: 100% !important;
  }
}

.u-center-mobile-heading .media-block .media-block__body,
.u-center-mobile-heading .media-block-rte .media-block__body {
  cursor: pointer;
}
@media (max-width: 1069px) {
  .u-center-mobile-heading .media-block .media-block__body .p,
.u-center-mobile-heading .media-block-rte .media-block__body .p {
    text-align: justify;
  }
}
@media (max-width: 1069px) {
  .u-center-mobile-heading .media-block .media-block__body .u-h1,
.u-center-mobile-heading .media-block-rte .media-block__body .u-h1 {
    text-align: center;
  }
}

.apply-promocode {
  display: inline-block;
  margin-left: 0;
  width: 100%;
}
.apply-promocode .header {
  display: inline-block;
  float: left;
  font-weight: 700;
  margin: 8px 0;
  padding-left: 0;
  width: 40%;
}
@media only screen and (max-width: 1280px) {
  .apply-promocode .header {
    margin: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .apply-promocode .header {
    width: 100%;
  }
}
.apply-promocode .textbox {
  float: left;
  padding-left: 0;
  width: 70%;
}
.apply-promocode .textbox #txtcoupen {
  height: 40px;
}
.apply-promocode .btn-submit {
  padding-left: 5px;
  width: 30%;
}
.apply-promocode .btn-submit .button {
  padding: 13px 30px 12px;
}
.apply-promocode .promocode--div {
  display: inline-block;
  float: right;
}
@media only screen and (max-width: 1024px) {
  .apply-promocode .promocode--div {
    width: 100%;
  }
}
.apply-promocode .messagerow {
  color: red;
  margin-top: 5px;
}
.apply-promocode .messagerow .spanerror {
  float: left;
  font-size: 14px;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .apply-promocode .messagerow .spanerror {
    float: left;
    text-align: left;
  }
}

.after-applycode {
  display: inline-block;
  margin-left: 0;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .after-applycode {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.after-applycode .sucess-msg {
  display: inline-block;
  margin: 12px 0;
  padding-left: 0;
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .after-applycode .sucess-msg {
    width: 65%;
  }
}
@media only screen and (max-width: 992px) {
  .after-applycode .sucess-msg {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .after-applycode .sucess-msg .spansucess {
    padding-top: 0;
  }
}
@media only screen and (max-width: 480px) {
  .after-applycode .sucess-msg .spansucess {
    font-size: 14px;
  }
}
.after-applycode .code-button {
  display: inline-block;
  width: 40%;
}
@media only screen and (max-width: 1024px) {
  .after-applycode .code-button {
    width: 35%;
  }
}
@media only screen and (max-width: 992px) {
  .after-applycode .code-button {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
    width: 100%;
  }
}
.after-applycode .code-button .sticker {
  float: right;
  margin-right: 0;
  padding: 10px 13px;
}
@media only screen and (max-width: 992px) {
  .after-applycode .code-button .sticker {
    display: block;
    float: none;
    margin: 0 auto;
    max-width: 200px;
  }
}
.after-applycode .code-button .sticker a {
  cursor: pointer;
}

.sticker {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4cd00;
  color: #022a3a;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-right: 20px;
  padding: 3px 40px;
  text-align: center;
  text-transform: uppercase;
}
.sticker a {
  font-size: 20px;
  padding-left: 20px;
}

.link-wrp {
  text-align: center;
  width: 100%;
}
.link-wrp ul {
  display: inline-block;
  margin-bottom: 0;
  padding-left: 0 !important;
  width: 100%;
}
.link-wrp li {
  color: white;
  display: inline-block;
  float: left;
  margin-right: 10px;
  max-width: calc(20% - 10px);
  vertical-align: middle;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .link-wrp li {
    margin-bottom: 10px;
    max-width: calc(33.33% - 7px);
  }
}
@media (max-width: 575px) {
  .link-wrp li {
    float: none;
    max-width: unset;
    width: auto;
  }
}
@media only screen and (max-width: 420px) {
  .link-wrp li {
    max-width: calc(50% - 10px);
  }
}
.link-wrp li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .link-wrp li:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .link-wrp li:nth-child(3n) {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 420px) {
  .link-wrp li:nth-child(3n) {
    margin-right: 10px;
  }
}
.link-wrp a {
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-style: italic;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 100%;
}
@media (max-width: 575px) {
  .link-wrp a {
    line-height: 0;
  }
}
.link-wrp a .fa {
  display: inline-block;
  margin: 0;
  width: 100%;
}
.link-wrp a img {
  margin-bottom: 2px;
  vertical-align: text-bottom;
}
@media (max-width: 575px) {
  .link-wrp a img {
    margin-bottom: auto;
  }
}
@media (max-width: 575px) {
  .link-wrp a span {
    display: none;
  }
}
.link-wrp .o-icon {
  display: inline-block;
  height: 15px;
  width: 20px;
}
.link-wrp .facebook {
  background: #3b5998;
  color: white;
}
.link-wrp .linkedin {
  background: #0073b1;
  color: white;
}
.link-wrp .twitter {
  background: #00c6ff;
  color: white;
}
.link-wrp .pinterest {
  background: #c8232c;
  color: white;
}
.link-wrp .tumblr {
  background: #3b5998;
  color: white;
}

.faq-tablinks .search-container a,
.faq-tablinks .search-container button {
  display: block;
  font-size: -20px;
  position: absolute;
  right: 46px;
  top: 85px;
}

.aligncard {
  padding-left: 0;
  text-align: center !important;
}

.imgalign {
  height: auto;
  width: 25%;
}

@media (min-width: 20em) {
  .imgalign {
    width: 30%;
  }
}
@media (min-width: 46.25em) {
  .imgalign {
    width: 25%;
  }
}
@media (min-width: 61.25em) {
  .imgalign {
    width: 20%;
  }
}
.fitness-calc-img {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  border-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fitness-calc-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

.fcrowcard {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.fcrowcard .fcblockcard {
  border-radius: 20px;
}
.fcrowcard .fcblockcard::after {
  border-radius: 20px;
}
.fcrowcard .fcblockcard:hover a {
  background-color: #022a3a;
}
.fcrowcard .fcblockcard a {
  background-color: #f4cd00;
  border-radius: 20px;
}
.fcrowcard .fcblockcard a .fcBox {
  border-radius: 0 0 20px 20px;
}
.fcrowcard .fitness-calc-img {
  border-radius: 20px;
}
.fcrowcard .fitness-calc-img img {
  border-radius: 20px;
}

.fcblockcard {
  background-color: #f4cd00;
  border: 3px solid #f4cd00;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 15px 5px;
}
.fcblockcard a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.fcblockcard:hover {
  background-color: #0d2a3a;
  border: 3px solid #0d2a3a;
  cursor: pointer;
}
.fcblockcard:hover .fcBoxcard {
  background-color: #0d2a3a;
  color: #fff;
  cursor: pointer;
}
.fcblockcard:hover .fcBox {
  background-color: #022a3a;
  color: #fff;
}
.fcblockcard .fitness-calc-img {
  background-color: white;
}
@media (max-width: 585px) {
  .fcblockcard .fitness-calc-img {
    height: auto;
  }
}

.fcBoxcard {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4cd00;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.fcBoxcard:hover {
  background-color: #022a3a;
  color: #fff;
}

.trim-content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 12px;
  text-align: center;
  width: 100%;
}

.dropdown-wrapper {
  display: block;
  margin: 0 auto !important;
  max-width: 100%;
}

.fix-height-wrp {
  height: 76px;
  overflow: hidden;
}

.success-desc-wrp p {
  color: #f4cd00;
  font-weight: 400 !important;
}
.success-desc-wrp h3 {
  margin-top: 5px !important;
  text-transform: none !important;
}

#btnFreetrail {
  letter-spacing: 1px;
}

.close {
  color: #000;
  filter: alpha(opacity=20);
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.2;
  text-shadow: 0 1px 0 #fff;
}

@media (min-width: 20em) {
  .map_padding {
    padding-top: 50%;
  }
}
@media (min-width: 46.25em) {
  .map_padding {
    padding-top: 0;
  }
}
@media (min-width: 61.25em) {
  .map_padding {
    padding-top: 0;
  }
}
.mapboxgl-map {
  outline: none;
  position: relative;
}
.mapboxgl-map canvas {
  border: 0;
  outline: none;
}
.mapboxgl-map:focus {
  border: 0;
  outline: none;
}
.mapboxgl-map:hover {
  border: 0;
  outline: none;
}

.video-card-img {
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid transparent;
  border-bottom: 0;
  display: inline-block;
  max-height: 240px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-card-body {
  background: rgba(255, 255, 255, 0.8);
  margin: 0 3px 3px !important;
  padding: 21px;
}

.breadcrumbs-block {
  font-weight: 700;
  margin: 10px;
}

.hero-inner {
  z-index: 9;
}

@media (max-width: 580px) {
  .pricing-page .o-layout__item {
    padding-left: unset;
  }
}
@media (min-width: 1400px) {
  .pricing-page.gym-membership_select .o-wrapper {
    max-width: 1538px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-page.gym-membership_select .o-wrapper {
    max-width: 980px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pricing-page.gym-membership_select .o-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 580px) {
  .pricing-page.gym-membership_select .o-wrapper {
    max-width: 100%;
  }
}
.pricing-page.gym-membership_select .product-group .each-card {
  width: 33.33% !important;
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .product-group .each-card {
    padding: 9px 10px;
    width: 100% !important;
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .product-group .product {
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .product-group .product.plus-membership {
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), 0 0 5px 0 rgba(0, 0, 0, 0.19) !important;
            box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), 0 0 5px 0 rgba(0, 0, 0, 0.19) !important;
  }
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .product-group .product.plus-membership {
    margin-top: 0;
  }
}
@media (min-width: 1541px) {
  .pricing-page.gym-membership_select .product-group .product.plus-membership .product__title {
    padding-left: 60px;
    padding-right: 110px;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .pricing-page.gym-membership_select .product-group .product.plus-membership .product__title {
    padding-left: 20px;
    padding-right: 100px;
  }
}
@media (max-width: 530px) {
  .pricing-page.gym-membership_select .product-group .product.plus-membership .product__title {
    padding-right: 100px;
  }
}
.pricing-page.gym-membership_select .product-group .product .product__title {
  font-size: 19px !important;
}
@media (max-width: 1399px) {
  .pricing-page.gym-membership_select .product-group .product .product__title {
    font-size: 17px !important;
  }
}
.pricing-page.gym-membership_select .product-group .product .price-wrapper {
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 991px) {
  .pricing-page.gym-membership_select .product-group .product .price-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.pricing-page.gym-membership_select .gym-membership-slider {
  margin-left: 0;
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow {
    background-color: var(--secondary);
    border: 0;
    -webkit-box-shadow: 0 0 4px rgba(2, 42, 58, 0.4);
            box-shadow: 0 0 4px rgba(2, 42, 58, 0.4);
    font-size: 0;
    height: 55px;
    top: 150px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 55px;
  }
}
@media (max-width: 991px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow {
    height: 46px;
    top: 170px;
    width: 46px;
  }
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow {
    height: 36px;
    width: 36px;
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow:not(.slick-disabled):hover {
    background-color: var(--white);
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow::before {
    background-image: url("/build/svg/icons/arrow-slide.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow::before {
    background-size: 25px auto;
  }
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow::before {
    background-size: 19px auto;
  }
}
.pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-disabled {
  background-color: #e1e1e1;
  cursor: not-allowed;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
}
.pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-disabled::before {
  opacity: 0.7;
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-next {
    right: -20px;
  }
}
@media (max-width: 991px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-next {
    right: -15px;
  }
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-next {
    right: -18px;
  }
}
@media (max-width: 580px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-next {
    right: -15px;
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-next::before {
    -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
            transform: scale(-1);
  }
}
@media (max-width: 1199px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-prev {
    left: -20px;
  }
}
@media (max-width: 991px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}
@media (max-width: 767px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-prev {
    left: -18px;
  }
}
@media (max-width: 580px) {
  .pricing-page.gym-membership_select .gym-membership-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}

.item-wrp-iframe {
  display: inline-block;
  width: 100%;
}
.item-wrp-iframe .item-iframe {
  float: left;
  margin-right: 13px;
  margin-top: 10px;
  width: calc(25% - 10px);
}
.item-wrp-iframe .item-iframe:last-child {
  margin-right: 0;
}

.join .verify-content {
  font-size: 16px;
}
.join .verify-content.change-text {
  color: #fff;
}

.home .verify-content.change-text {
  font-size: 15px;
  font-weight: 700;
}

.media-block__body p {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .media-block__body p {
    margin-bottom: 12px;
  }
}
.media-block__body p:last-child {
  margin-bottom: 0;
}
.media-block__body ul,
.media-block__body ol {
  padding-left: 20px;
}
.media-block__body ul:last-child,
.media-block__body ol:last-child {
  margin-bottom: 0;
}

.img-text-container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto;
  width: 100%;
}

.img-container {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
  width: calc(15% - 20px);
}

.text-container {
  color: #fff;
  width: 85%;
}

#workoutlead select {
  height: 46px;
}

.o-layout__item.u-fill-yellow {
  padding: 0;
}

.panel-heading.hrm-wrp {
  width: calc(100% - 4px);
}

/* page-loader */
.page-loading {
  background-color: transparent !important;
  background-image: url("/build/img/Logo.png") !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100px;
  left: 50%;
  margin: auto;
  position: absolute;
  top: 10%;
  -webkit-transform: translate(-50%, -10%);
      -ms-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  width: 100px;
  z-index: 99999;
}
@media (max-width: 46.25em) {
  .page-loading {
    top: 5%;
    -webkit-transform: translate(-50%, -5%);
        -ms-transform: translate(-50%, -5%);
            transform: translate(-50%, -5%);
  }
}

.page-loading::before {
  -webkit-animation: page-loading-anim 1s linear infinite;
          animation: page-loading-anim 1s linear infinite;
  border-radius: 100px;
  -webkit-box-shadow: 0 6px 0 0 #f2ce0f;
          box-shadow: 0 6px 0 0 #f2ce0f;
  content: "";
  display: block;
  height: 100px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100px;
}

@-webkit-keyframes page-loading-anim {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes page-loading-anim {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.overlay {
  position: relative;
}
.overlay::after {
  background-color: rgba(2, 42, 58, 0.9);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.imvtxt-group .imvtxt-box {
  -webkit-box-align: unset;
  -webkit-align-items: unset;
      -ms-flex-align: unset;
          align-items: unset;
  background-color: #f5f6f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 739px) {
  .imvtxt-group .imvtxt-box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.imvtxt-group .imvtxt-box .media-block__media {
  margin: 0;
  min-height: 350px;
  position: relative;
}
@media (max-width: 739px) {
  .imvtxt-group .imvtxt-box .media-block__media {
    min-height: unset;
    width: 100%;
  }
}
.imvtxt-group .imvtxt-box .media-block__media img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 739px) {
  .imvtxt-group .imvtxt-box .media-block__media img {
    height: auto;
    position: relative;
  }
}
.imvtxt-group .imvtxt-box .media-block__body {
  margin: 0;
  padding: 40px 30px;
}
@media (max-width: 739px) {
  .imvtxt-group .imvtxt-box .media-block__body {
    padding: 35px 20px;
    width: 100%;
  }
}

.u-flex {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  .u-mobile-center {
    text-align: center;
  }
}

.u-color-orange {
  color: orange;
}

.u-color-red {
  color: red;
}

.u-color-black {
  color: #000 !important;
}

/* New Location page */
.newlocation-hero .slider-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newlocation-hero .slider-wrapper {
    min-height: 388px;
  }
}
@media (max-width: 1199px) {
  .newlocation-hero .slider-wrapper {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .newlocation-hero .slider-wrapper {
    min-height: 388px;
  }
}
@media (max-width: 767px) {
  .newlocation-hero video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.newlocation-hero .location-banner {
  min-height: auto;
  padding-left: 42px;
  padding-right: 42px;
}
@media (max-width: 979px) {
  .newlocation-hero .location-banner {
    padding-left: 21px;
    padding-right: 21px;
  }
}
.newlocation-hero .location-banner .ban-in {
  margin: 0 auto;
  max-width: 70%;
  padding: 55px 40px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .newlocation-hero .location-banner .ban-in {
    max-width: 100%;
    padding: 40px 15px;
  }
}
.newlocation-hero .location-banner .ban-in:first-child {
  padding-top: 0;
}
.newlocation-hero .location-banner .ban-in:last-child {
  padding-bottom: 0;
}
.newlocation-hero .location-banner .ban-in .u-h5 span {
  font-size: 22px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newlocation-hero .location-banner .ban-in .u-h5 span {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .newlocation-hero .location-banner .ban-in .u-h5 span {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media (max-width: 553px) {
  .newlocation-hero .location-banner .ban-in .u-h5 span {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media (max-width: 481px) {
  .newlocation-hero .location-banner .ban-in .u-h5 span {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.newlocation-hero .location-banner .hero__title_l {
  padding: 0;
}
.newlocation-hero .location-banner .hero__title_m {
  color: #f4cd00;
  display: block;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
  padding: 0;
}
@media (max-width: 1057px) {
  .newlocation-hero .location-banner .hero__title_m {
    font-size: 48px;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newlocation-hero .location-banner .hero__title_m {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .newlocation-hero .location-banner .hero__title_m {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
  }
  .newlocation-hero .location-banner .hero__title_m span {
    display: inline-block;
  }
}
@media (max-width: 553px) {
  .newlocation-hero .location-banner .hero__title_m {
    display: block;
    font-size: 34px;
    margin-bottom: 15px;
  }
  .newlocation-hero .location-banner .hero__title_m span {
    display: inline-block;
  }
}
@media (max-width: 481px) {
  .newlocation-hero .location-banner .hero__title_m {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
  }
  .newlocation-hero .location-banner .hero__title_m span {
    display: inline-block;
  }
}
@media (max-width: 433px) {
  .newlocation-hero .location-banner .hero__title_m {
    display: block;
    font-size: 26px;
    margin-bottom: 15px;
  }
  .newlocation-hero .location-banner .hero__title_m span {
    display: inline-block;
  }
}
.newlocation-hero .location-banner .u-h5 {
  font-size: 22px;
}
@media (max-width: 991px) {
  .newlocation-hero .location-banner .u-h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.newlocation-hero .location-banner .locherolabels {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .newlocation-hero .location-banner .locherolabels {
    margin-top: 0;
    padding-top: 15px;
  }
}
.newlocation-hero .btn-wrap {
  padding-top: 25px;
  width: 100%;
}
.newlocation-hero .btn-wrap a {
  margin: 5px;
}

.location_tab {
  padding: 0 42px;
  text-align: center;
  width: 100%;
}
@media (max-width: 979px) {
  .location_tab {
    padding-left: 21px;
    padding-right: 21px;
  }
}
.location_tab ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto;
  max-width: 1260px;
  padding: 0;
}
@media (max-width: 480px) {
  .location_tab ul {
    margin-left: -4px;
    margin-right: -4px;
    width: auto;
  }
}
.location_tab ul li.tab-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: none;
  min-width: 150px;
  padding: 6px;
}
@media (max-width: 575px) {
  .location_tab ul li.tab-item {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .location_tab ul li.tab-item {
    padding: 4px;
  }
}
.location_tab ul li.tab-item.activetab a {
  background-color: #f4cd00;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.location_tab ul li.tab-item.activetab a::before, .location_tab ul li.tab-item.activetab a::after {
  width: 0;
}
.location_tab ul li.tab-item.activetab a span::before, .location_tab ul li.tab-item.activetab a span::after {
  height: 0;
}
.location_tab ul li.tab-item img,
.location_tab ul li.tab-item svg {
  height: auto;
  margin-right: 8px;
  max-height: 33px;
  max-width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 1199px) {
  .location_tab ul li.tab-item img,
.location_tab ul li.tab-item svg {
    max-height: 30px;
    max-width: 30px;
  }
}
@media (max-width: 480px) {
  .location_tab ul li.tab-item img,
.location_tab ul li.tab-item svg {
    margin-bottom: 7px;
    margin-right: 0;
  }
}
.location_tab ul li.tab-item a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #022a3a80;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px 0 #022a3a80;
          box-shadow: 0 0 4px 0 #022a3a80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 12px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .location_tab ul li.tab-item a {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.location_tab ul li.tab-item a::before, .location_tab ul li.tab-item a::after {
  background-color: #022a3a80;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -1px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: calc(100% - 40px);
}
.location_tab ul li.tab-item a::after {
  bottom: -1px;
  top: auto;
}
.location_tab ul li.tab-item a:hover {
  background-color: #f4cd00;
  border-color: transparent;
}
.location_tab ul li.tab-item a:hover::before, .location_tab ul li.tab-item a:hover::after {
  width: 0;
}
.location_tab ul li.tab-item a:hover span::before, .location_tab ul li.tab-item a:hover span::after {
  height: 0;
}
.location_tab ul li.tab-item a span::before, .location_tab ul li.tab-item a span::after {
  background-color: #022a3a80;
  bottom: 0;
  content: "";
  display: block;
  height: calc(100% - 36px);
  left: -1px;
  margin: auto 0;
  position: absolute;
  right: auto;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 1px;
}
.location_tab ul li.tab-item a span::after {
  left: auto;
  right: -1px;
}
.location_tab ul li.tab-item a span.item-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 24px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .location_tab ul li.tab-item a span.item-name {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 480px) {
  .location_tab ul li.tab-item a span.item-name {
    width: 100%;
  }
}
.location_tab .loc-tab-lists {
  margin-left: -42px;
  margin-right: -42px;
}
@media (max-width: 979px) {
  .location_tab .loc-tab-lists {
    margin-left: -21px;
    margin-right: -21px;
  }
}
@media (max-width: 480px) {
  .location_tab .loc-tab-lists {
    margin-left: -9px;
    margin-right: -9px;
  }
}

.location_video {
  margin-top: 65px;
}
@media (max-width: 1199px) {
  .location_video {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .location_video {
    margin-top: 40px;
  }
}
.location_video .media-blocks,
.location_video .media-block {
  margin-bottom: 60px;
}
.location_video .media-blocks:last-child,
.location_video .media-block:last-child {
  margin-bottom: 0;
}
.location_video p {
  margin-bottom: 15px;
}
@media (max-width: 580px) {
  .location_video p {
    letter-spacing: 0;
  }
}
.location_video p:last-child {
  margin-bottom: 0;
}
.location_video .media-grid {
  -webkit-box-align: unset;
  -webkit-align-items: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
@media (max-width: 1069px) {
  .location_video .media-grid {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto;
    max-width: 75%;
  }
}
@media (max-width: 767px) {
  .location_video .media-grid {
    max-width: 540px;
  }
}
@media (max-width: 580px) {
  .location_video .media-grid {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.location_video .media-grid .left-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 33px);
}
@media (max-width: 1069px) {
  .location_video .media-grid .left-grid {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .location_video .media-grid .left-grid {
    height: auto;
    margin: 0 auto;
  }
}
.location_video .media-grid .left-grid .wrap-abt {
  height: auto;
}
@media (max-width: 1069px) {
  .location_video .media-grid .left-grid .wrap-abt {
    padding: 0;
  }
}
@media (max-width: 580px) {
  .location_video .media-grid .left-grid .wrap-abt {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.location_video .media-grid .left-grid .wrap-abt img {
  border-radius: 20px;
}
@media (max-width: 420px) {
  .location_video .media-grid .left-grid .wrap-abt img {
    height: auto;
  }
}
@media (max-width: 580px) {
  .location_video .media-grid .left-grid .wrap-abt .slider-location {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.location_video .media-grid .right-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1f1f1;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 0 0 #022a3a1a;
          box-shadow: 2px 2px 0 0 #022a3a1a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  float: left;
  margin-left: -80px;
  padding: 50px 40px 48px 108px;
  width: calc(50% + 90px);
}
@media (max-width: 1069px) {
  .location_video .media-grid .right-grid {
    border-radius: 0 0 20px 20px;
  }
}
.location_video .media-grid .right-grid ul {
  list-style: unset;
  padding-left: 20px;
  text-align: left;
}
@media (max-width: 1069px) {
  .location_video .media-grid .right-grid {
    margin: 0;
    padding: 40px 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .location_video .media-grid .right-grid {
    padding: 30px 20px;
    text-align: center;
  }
}
@media (max-width: 580px) {
  .location_video .media-grid .right-grid {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0;
    padding: 30px 15px;
    text-align: center;
  }
}
.location_video .media-grid .right-grid .box-in {
  width: 100%;
}
@media (max-width: 1069px) {
  .location_video .media-grid .right-grid .box-in p {
    text-align: justify;
  }
}
@media (max-width: 1069px) {
  .location_video .media-grid .right-grid .box-in h2.u-h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .location_video .media-grid .right-grid .u-h1 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.location_video .media-grid .slider-abt {
  max-width: 100%;
}
.location_video .media-grid .slider-abt .slick-list {
  border-radius: 20px;
}
@media (max-width: 1069px) {
  .location_video .media-grid .slider-abt .slick-list {
    border-radius: 20px 20px 0 0;
  }
}
.location_video .media-grid .slider-abt .slick-slide img {
  border-radius: 20px;
  height: auto;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 1069px) {
  .location_video .media-grid .slider-abt .slick-slide img {
    border-radius: 20px 20px 0 0;
  }
}

.location-zig {
  margin: 69px 0 82px;
}
@media (max-width: 1199px) {
  .location-zig {
    margin: 50px 0 70px;
  }
}
@media (max-width: 991px) {
  .location-zig {
    margin: 40px 0;
  }
}
.location-zig .media-block {
  -webkit-box-align: unset;
  -webkit-align-items: unset;
      -ms-flex-align: unset;
          align-items: unset;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: unset;
  -webkit-justify-content: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  width: 100%;
}
@media (max-width: 1069px) {
  .location-zig .media-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto 40px;
    max-width: 75%;
  }
}
@media (max-width: 767px) {
  .location-zig .media-block {
    direction: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 auto 35px;
    max-width: 540px;
  }
}
@media (max-width: 1069px) {
  .location-zig .media-block:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .location-zig .media-block:nth-child(odd) .media-block__body .box-in {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .location-zig .media-block:nth-child(even) .media-block__body .box-in {
    padding-left: 0;
  }
}
.location-zig .media-block .media-block__body {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: left;
  padding: 0;
  width: 50% !important;
}
@media (max-width: 1069px) {
  .location-zig .media-block .media-block__body {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .location-zig .media-block .media-block__body {
    -webkit-box-shadow: 0 0 3px 0 #022a3a80;
            box-shadow: 0 0 3px 0 #022a3a80;
  }
}
.location-zig .media-block .media-block__body .box-in {
  padding: 39px 40px 41px;
  text-align: justify;
}
@media (max-width: 1199px) {
  .location-zig .media-block .media-block__body .box-in {
    padding: 30px;
  }
}
@media (max-width: 1069px) {
  .location-zig .media-block .media-block__body .box-in {
    padding: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .location-zig .media-block .media-block__body .box-in {
    padding: 30px 20px;
  }
}
@media (max-width: 580px) {
  .location-zig .media-block .media-block__body .box-in {
    padding: 30px 15px;
  }
}
@media (max-width: 1069px) {
  .location-zig .media-block .media-block__body .box-in p {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  .location-zig .media-block .media-block__body .box-in p {
    text-align: justify;
  }
}
@media (max-width: 580px) {
  .location-zig .media-block .media-block__body .box-in p {
    letter-spacing: 0.5px;
    text-align: justify;
  }
}
@media (max-width: 1069px) {
  .location-zig .media-block .media-block__body .box-in h2.u-h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .location-zig .media-block .media-block__body .box-in h2.u-h1 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
    text-align: center;
  }
}
.location-zig .media-block .media-block__media {
  float: left;
  margin: 0;
  width: 50% !important;
}
@media (max-width: 1199px) {
  .location-zig .media-block .media-block__media {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1069px) {
  .location-zig .media-block .media-block__media {
    width: 100% !important;
  }
}
.location-zig .media-block .media-block__media img {
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .location-zig .media-block .media-block__media img {
    height: auto;
  }
}

.fa {
  border-radius: 3px;
  font-size: 20px;
  margin: 5px 2px;
  padding: 8px;
  text-align: center;
  text-decoration: none;
}

.fab:hover {
  opacity: 0.7;
}

/* AMP page */
.imagsld-section {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .imagsld-section {
    padding: 43px 0;
  }
}
@media (max-width: 767px) {
  .imagsld-section {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .imagsld-section.ampvone-sec .sec-title h2 {
    font-size: 35px;
  }
}
.imagsld-section.ampvone-sec .imagsld-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
  width: 25%;
}
@media (max-width: 1199px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 50%;
  }
}
@media (max-width: 979px) {
  .imagsld-section .r-wrapper {
    padding-left: 21px;
  }
}
.imagsld-section .sec-title h2 {
  font-size: 44px;
  line-height: 1;
  margin: 0 0 25px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 1199px) {
  .imagsld-section .sec-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .imagsld-section .sec-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .imagsld-section .sec-title h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.imagsld-section .imagsld-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.imagsld-section .imagsld-group .imagsld-box {
  padding: 10px;
  width: 100%;
}
.imagsld-section .imagsld-group .imagsld-box .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
}
.imagsld-section .imagsld-group .imagsld-box .img::before {
  content: "";
  display: inline-block;
  padding-top: 98.4%;
}
.imagsld-section .imagsld-group .slick-arrow {
  height: 45px;
  left: -8px;
  top: 50%;
  width: 45px;
}
@media (max-width: 991px) {
  .imagsld-section .imagsld-group .slick-arrow {
    left: 0;
  }
}
.imagsld-section .imagsld-group .slick-arrow::before {
  opacity: 1;
}
.imagsld-section .imagsld-group .slick-arrow:hover::before {
  opacity: 0.8;
}
.imagsld-section .imagsld-group .slick-arrow.slick-prev::before {
  background-image: url("/build/img/left-arrow.png");
  background-repeat: no-repeat;
  background-size: 66% auto;
  color: transparent;
  font-size: 18px;
  line-height: 32px;
  margin-right: -4px;
}
.imagsld-section .imagsld-group .slick-arrow.slick-next {
  left: auto;
  right: -8px;
}
@media (max-width: 991px) {
  .imagsld-section .imagsld-group .slick-arrow.slick-next {
    right: 0;
  }
}

@media (min-width: 66.875em) {
  .ampdata-hero {
    min-height: 700px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.hero-v {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.hero-v .items .button {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
.ampdata-hero .slider-logo img {
  max-height: 90px;
  max-width: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .ampdata-hero .slider-logo img {
    max-height: 70px;
    max-width: 180px;
  }
}
.ampdata-hero .slider-heading {
  font-size: 34px;
  margin-bottom: 33px;
}
@media (max-width: 1199px) {
  .ampdata-hero .slider-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero .slider-heading {
    font-size: 24px;
    margin-bottom: 15px;
    word-break: break-word;
  }
}
.ampdata-hero .slider-heading span {
  display: block;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .ampdata-hero .slider-heading span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero .slider-heading span {
    font-size: 27px;
    margin-bottom: 5px;
  }
}
.ampdata-hero .slider-heading span.google-logo {
  margin-bottom: -6px;
}
@media (max-width: 1199px) {
  .ampdata-hero .slider-heading span.google-logo {
    margin-bottom: -4px;
  }
}
@media (max-width: 991px) {
  .ampdata-hero .slider-heading span.google-logo {
    margin-bottom: -3px;
  }
}
@media (max-width: 739px) {
  .ampdata-hero .slider-heading span.google-logo {
    margin-bottom: -2px;
  }
}
@media (max-width: 420px) {
  .ampdata-hero .slider-heading span.google-logo {
    margin-bottom: -3px;
  }
}
@media (max-width: 580px) {
  .ampdata-hero .u-mobile-display-block {
    display: block;
    margin-bottom: 10px;
  }
}

.than-poup .modal-pt .modal-content .modal-header {
  padding: 20px 0;
}
.than-poup .modal-pt .modal-content .close {
  margin-top: -20px;
}
.than-poup .modal-body {
  padding: 0 40px 40px;
}
@media (max-width: 480px) {
  .than-poup .modal-body {
    padding-left: 20px;
  }
}
.than-poup .modal-dialog {
  width: 650px;
}
@media (max-width: 767px) {
  .than-poup .modal-dialog {
    margin: 0 auto;
    max-width: 480px;
    width: calc(100% - 30px);
  }
}
.than-poup .body-in {
  text-align: center;
  width: 100%;
}
.than-poup .para {
  margin-bottom: 24px;
  width: 100%;
}
.than-poup .para:last-child {
  margin-bottom: 0;
}
.than-poup .para p {
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 15px;
}
.than-poup .para p:last-child {
  margin-bottom: 0;
}
.than-poup .para p a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
.than-poup .para p a:hover {
  text-decoration: none;
}
.than-poup .copy-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .than-poup .copy-link {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .than-poup .copy-link .copy-btn-wrap {
    margin-top: 20px;
    text-align: right;
    width: 100%;
  }
}
.than-poup .copy-link input[type=text] {
  border-color: #022a3a33;
  border-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 20px;
  padding: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .than-poup .copy-link input[type=text] {
    border-right: 2px solid #022a3a33;
  }
}
.than-poup .copy-link input[type=text]:focus {
  outline: none;
}

.ampform-section h2 {
  word-break: break-all;
}

.fas:hover {
  opacity: 0.7;
}

.fa-facebook-messenger {
  background: #0072ff;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-facebook {
  background: #3b5998;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-linkedin {
  background: #0073b1;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-twitter {
  background: #00c6ff;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-whatsapp {
  background: #82c91e;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-envelope {
  background: #fb0000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-google-plus {
  background: #000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-youtube {
  background: #fb0000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-pinterest {
  background: #c8232c;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-tumblr {
  background: #3b5998;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.fa-github {
  background: #009aff;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.ftitle {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  padding-bottom: 10px;
  text-align: center;
}

.forms-page .form__field {
  margin: 15px 0;
}
.forms-page .form__field select {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-image: none;
  font-size: 13px;
  height: 46.4px;
}

.glimg-wrap {
  position: relative;
  z-index: 0;
}
.glimg-wrap .setimg.lozad,
.glimg-wrap .setimg.lozads {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.mImage.glimg-wrap {
  position: relative;
  z-index: 1;
}
.mImage.glimg-wrap .setimg.lozad,
.mImage.glimg-wrap .setimg.lozads {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.iframe-anbtn {
  line-height: 0;
  position: relative;
}
.iframe-anbtn a.button {
  bottom: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 46.24em) {
  .iframe-anbtn a.button {
    width: auto;
  }
}
.iframe-anbtn a.button.button--blue {
  color: #f4cd00;
}
.iframe-anbtn a.button.button--blue:hover {
  background-color: #f4cd00;
  color: #022a3a;
}

.google-link {
  cursor: pointer;
}

.branchmap {
  height: 500px;
  width: 100%;
}

.checklist-wrp {
  margin-top: 21px;
}
.checklist-wrp ul {
  margin: 0 0 25px;
  padding: 0;
}
.checklist-wrp ul:last-child {
  margin-bottom: 0;
}
.checklist-wrp ul li {
  list-style: none;
  margin-bottom: 5px;
  padding-left: 24px;
  position: relative;
}
.checklist-wrp ul li:last-child {
  margin-bottom: 0;
}
.checklist-wrp ul li::before {
  background-image: url("/build/svg/icons/Tick.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}

@media (max-width: 767px) {
  .checklist-wrp ul {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}
iframe {
  border: 0;
}
iframe#videoframe {
  width: 100%;
}
iframe#branchmap {
  width: 100%;
}

select#clocation {
  margin-top: 10px;
}

.dir-rtl {
  direction: rtl;
}

@media (max-width: 767px) {
  .u-split {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 567px) {
  .u-split {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 420px) {
  .u-split {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 580px) {
  .u-color-highlight.Mobile-font,
.u-color-orange.Mobile-font {
    font-size: 18px;
  }
}
.u-orange .u-color-highlight {
  color: orange;
}

.hidden-tag {
  display: none;
}

html[dir=rtl] .checklist-wrp ul {
  margin-left: 0;
  margin-right: 25px;
}
html[dir=rtl] .checklist-wrp ul li {
  padding-left: 0;
  padding-right: 24px;
}
html[dir=rtl] .checklist-wrp ul li::before {
  left: auto;
  right: 0;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 580px) {
  .enable-scroll {
    max-height: 200px;
    overflow: scroll;
  }
}

@media (max-width: 420px) {
  h2.u-h1.u-responsive-font {
    font-size: 25px;
  }
}

@media (max-width: 580px) {
  h1.u-h1.u-responsive-font {
    font-size: 25px;
  }
}
@media (max-width: 420px) {
  h1.u-h1.u-responsive-font {
    font-size: 25px;
  }
}

#modal_profile ul,
#modal_profile ol {
  margin-left: 21px;
}

.slider-logo img {
  height: auto;
  margin-bottom: 20px;
  max-width: 170px;
  width: auto;
}
@media (max-width: 1199px) {
  .slider-logo img {
    max-width: 140px;
  }
}
@media (max-width: 767px) {
  .slider-logo img {
    margin-bottom: 15px;
    max-width: 120px;
  }
}
@media (max-width: 580px) {
  .slider-logo img {
    margin-bottom: 15px;
    max-width: 90px;
  }
}

img[src=""] {
  visibility: hidden;
}

.pt-10 {
  padding-top: 10px !important;
}

@media (max-width: 739px) {
  .trainerDetail-block {
    margin-bottom: 40px;
  }
}
@media (max-width: 739px) {
  .trainerDetail-block .media-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media (max-width: 739px) {
  .trainerDetail-block .media-block:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 739px) {
  .trainerDetail-block .media-block__media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 21px;
  }
}
.trainerDetail-block .media-block__media img {
  border-radius: 20px;
}
@media (max-width: 991px) {
  .trainerDetail-block .media-block__media img {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}

.loc-tab-lists {
  border-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.loc-tab-lists::before {
  border-bottom: 2px solid #022a3a;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.loc-tab-lists .loc-tablist-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ededed;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #7c7c78;
  border-bottom-color: #022a3a;
  border-radius: 20px 20px 0 0;
  color: #7c7c78;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.25px;
  line-height: 24px;
  margin: 0 6px;
  max-width: 100%;
  padding: 11px 12px 9px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
  z-index: 1;
}
.loc-tab-lists .loc-tablist-btn.tab-active, .loc-tab-lists .loc-tablist-btn:hover {
  background-color: #f4cd00;
  border-color: #022a3a;
  color: #022a3a;
  z-index: 2;
}
.loc-tab-lists .loc-tablist-btn img {
  height: 20px;
  margin-right: 15px;
  width: 26px;
}
@media (max-width: 991px) {
  .loc-tab-lists .loc-tablist-btn img {
    height: 16px;
    width: auto;
  }
}
.loc-tab-lists .loc-tablist-btn span {
  letter-spacing: 1px;
}

.loc-tab-contents {
  width: 100%;
}

.loc-tab-content {
  display: none;
}
.loc-tab-content ul {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -5px;
  max-width: 100%;
  padding-top: 30px;
}
.loc-tab-content ul .loc-tab-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  width: auto;
}
.loc-tab-content ul .loc-tab-item.activetab a {
  background-color: #022a3a;
  border-color: #022a3a;
  color: #fff;
}
.loc-tab-content ul .loc-tab-item a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #022a3a80;
  border-radius: 0;
  -webkit-box-shadow: 0 0 4px 0 #022a3a80;
          box-shadow: 0 0 4px 0 #022a3a80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .loc-tab-content ul .loc-tab-item a {
    font-size: 15px;
    line-height: 23px;
    padding: 10px;
  }
}
.loc-tab-content ul .loc-tab-item a:hover {
  background-color: #022a3a;
  border-color: #022a3a;
  color: #fff;
}
.loc-tab-content ul .loc-tab-item a .submenu-img {
  z-index: -2;
}
.loc-tab-content ul .loc-tab-item a span {
  color: #f4cd00;
  display: block;
  font-size: 18px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 24px;
  position: relative;
  text-align: left;
  z-index: 1;
}
@media (max-width: 1199px) {
  .loc-tab-content ul .loc-tab-item a span {
    font-size: 15px;
    line-height: 21px;
  }
}
.loc-tab-content ul .loc-tab-item span {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #022a3a80;
  border-radius: 96px;
  -webkit-box-shadow: 0 0 4px 0 #022a3a80;
          box-shadow: 0 0 4px 0 #022a3a80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  overflow: hidden;
  padding: 10px 12px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .loc-tab-content ul .loc-tab-item span {
    font-size: 15px;
    line-height: 23px;
    padding: 10px;
  }
}
.loc-tab-content ul .loc-tab-item span:hover {
  background-color: #022a3a;
  border-color: #022a3a;
  color: #fff;
}
.loc-tab-content ul .loc-tab-item span .submenu-img {
  z-index: -2;
}
.loc-tab-content ul .loc-tab-item span span {
  color: #f4cd00;
  display: block;
  font-size: 18px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 24px;
  position: relative;
  text-align: left;
  z-index: 1;
}
@media (max-width: 1199px) {
  .loc-tab-content ul .loc-tab-item span span {
    font-size: 15px;
    line-height: 21px;
  }
}

.location-tabmain {
  margin-bottom: 18px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .location-tabmain {
    margin-bottom: 35px;
  }
}

@media (max-width: 991px) {
  .loc-tab-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0;
    max-width: 100%;
    position: relative;
    width: 380px;
  }
}
.loc-tab-dropdown .loc-tab-label {
  background-color: #fff;
  border: 2px solid #022a3a;
  border-radius: 24px;
  cursor: pointer;
  display: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 24px;
  padding: 15px 45px 14px 20px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  z-index: 10;
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-label {
    display: block;
  }
}
@media (max-width: 767px) {
  .loc-tab-dropdown .loc-tab-label {
    font-size: 16px;
    padding: 12px 45px 10px 20px;
  }
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-label::before {
    border-left: 10px solid transparent;
    border-radius: 3px;
    border-right: 10px solid transparent;
    border-top: 12px solid #022a3a;
    content: "";
    display: inline-block;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 0;
    z-index: -1;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .loc-tab-dropdown .loc-tab-label::before {
    border-width: 9px 8px 0;
  }
}
.loc-tab-dropdown .loc-tab-label.active::before {
  -webkit-transform: translateY(-50%) scaleY(-1);
      -ms-transform: translateY(-50%) scaleY(-1);
          transform: translateY(-50%) scaleY(-1);
}
@media (min-width: 992px) {
  .loc-tab-dropdown .loc-tab-lists {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-lists {
    background-color: #fff;
    border-radius: 0 0 24px 24px;
    -webkit-box-shadow: 0 0 4px 0 #022a3a80;
            box-shadow: 0 0 4px 0 #022a3a80;
    display: none;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    left: 0;
    margin: -20px 0 0 !important;
    max-height: 340px;
    overflow-y: scroll;
    padding: 25px 0 0 !important;
    position: absolute;
    top: calc(100% + 1px);
    width: 100%;
    z-index: 9;
  }
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-lists::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-lists .loc-tablist-btn {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #022a3a1a;
    cursor: pointer;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .loc-tab-dropdown .loc-tab-lists .loc-tablist-btn.tab-active {
    background-color: #fff;
  }
}

@media (max-width: 580px) {
  span.u-mobile-display-block {
    display: block;
    margin-bottom: 10px;
  }
}

img[src="#"],
img[src=""],
img:not([src]) {
  visibility: hidden;
}

.img20 img {
  height: 20px;
}

#AuthorizedModel {
  background-color: #0d2a3a;
}
#AuthorizedModel .modal-dialog {
  height: calc(100% - 60px);
  top: 0 !important;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.errorMessages {
  color: red;
  display: none;
}

.gnwhatsapp-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #022a3a;
  border: 1px solid #fff;
  border-radius: 96px;
  bottom: 15px;
  -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 1px 10px;
          box-shadow: rgba(255, 255, 255, 0.5) 0 1px 10px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 28px;
  margin-left: 10px;
  padding: 4px 20px 4px 0;
  position: fixed;
  right: 15px;
  z-index: 99999999;
}
@media (max-width: 991px) {
  .gnwhatsapp-btn {
    font-size: 16px;
    line-height: 24px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  .gnwhatsapp-btn {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .gnwhatsapp-btn {
    font-size: 12px;
    line-height: 18px;
  }
}
.gnwhatsapp-btn img {
  height: 60px;
  margin: -4px 8px -4px -2px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 991px) {
  .gnwhatsapp-btn img {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .gnwhatsapp-btn img {
    height: 30px;
  }
}
@media (max-width: 575px) {
  .gnwhatsapp-btn img {
    height: 28px;
  }
}

.curved-cta-lg.cta-ncomp .o-layout--center,
.curved-cta-lg-orange.cta-ncomp .o-layout--center,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center {
  border-radius: 96px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .curved-cta-lg.cta-ncomp .o-layout--center,
.curved-cta-lg-orange.cta-ncomp .o-layout--center,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center {
    border-radius: 22px;
    border-width: 8px;
  }
}
.curved-cta-lg.cta-ncomp .o-layout--center > .o-layout__item,
.curved-cta-lg-orange.cta-ncomp .o-layout--center > .o-layout__item,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center > .o-layout__item {
  padding-right: 21px;
}
@media screen and (max-width: 767px) {
  .curved-cta-lg.cta-ncomp .o-layout--center > .o-layout__item,
.curved-cta-lg-orange.cta-ncomp .o-layout--center > .o-layout__item,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center > .o-layout__item {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 520px) {
  .curved-cta-lg.cta-ncomp .o-layout--center > .o-layout__item:last-child,
.curved-cta-lg-orange.cta-ncomp .o-layout--center > .o-layout__item:last-child,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center > .o-layout__item:last-child {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout {
    margin-left: 0;
  }
}
.curved-cta-lg.cta-ncomp .o-layout--center .o-layout .o-layout__item,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout .o-layout__item,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout .o-layout__item {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout .o-layout__item,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout .o-layout__item,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout .o-layout__item {
    padding: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout > .rgt {
    padding: 0;
  }
}
@media screen and (max-width: 739px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout > .rgt {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 530px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout > .rgt,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout > .rgt {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 530px) {
  .curved-cta-lg.cta-ncomp .o-layout--center .o-layout > .rgt .button,
.curved-cta-lg-orange.cta-ncomp .o-layout--center .o-layout > .rgt .button,
.curved-cta-lg-yellow.cta-ncomp .o-layout--center .o-layout > .rgt .button {
    width: auto;
  }
}

.curved-cta-lg-orange.cta-ncomp .o-layout--center {
  border: 10px solid #ffa500 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
}

.curved-cta-lg-yellow.cta-ncomp .o-layout--center {
  border: 10px solid #f4cd00 !important;
  border-bottom: 0 !important;
  border-top: 0 !important;
}
.curved-cta-lg-yellow.blog-cta .o-wrapper {
  padding: 0;
}
@media screen and (max-width: 1099px) {
  .curved-cta-lg-yellow.blog-cta .o-wrapper .lft {
    padding-left: 0;
  }
}
@media screen and (max-width: 1099px) {
  .curved-cta-lg-yellow.blog-cta .o-wrapper .button {
    font-size: 14px;
    line-height: 16px;
  }
}

.location-select-hero .ampdata_register .right .amp-form .o-layout__item {
  padding: 0 !important;
}

.scroll-spacing-top {
  scroll-margin-top: 100px;
}
@media (max-width: 991px) {
  .scroll-spacing-top {
    scroll-margin-top: 80px;
  }
}

/* ==========================================================================
   #HERO VIDEO AND HERO IMAGES
   ========================================================================== */
video {
  height: auto;
  max-width: 100%;
  position: absolute;
  width: 100%;
}

.slider-wrapper,
.slider,
.items {
  color: #fff;
  max-height: 550px;
  width: 100%;
}

.v-content {
  padding-left: 10px;
  padding-top: 10px;
  vertical-align: middle;
}

.hero__title_v {
  font-weight: 700;
  margin: 0;
}

.slick-dots {
  bottom: -94px;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.hero-v {
  background-color: #022a3a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 420px) {
  .hero-v .button-large {
    padding: 15px 20px;
    width: auto;
  }
}
@media (max-width: 420px) {
  .hero-v .u-padding-small {
    padding: 0 !important;
  }
}
.hero-v .slider-wrapper {
  padding-bottom: 80px;
  padding-top: 200px;
}
@media (max-width: 1199px) {
  .hero-v .slider-wrapper {
    padding-bottom: 50px;
    padding-top: 206px;
  }
}
@media (max-width: 991px) {
  .hero-v .slider-wrapper {
    padding-bottom: 60px;
    padding-top: 195px;
  }
}
@media (max-width: 767px) {
  .hero-v .slider-wrapper {
    padding-bottom: 50px;
    padding-top: 185px;
  }
}
@media (max-width: 480px) {
  .hero-v .slider-wrapper {
    padding-bottom: 50px;
    padding-top: 138px;
  }
}
@media (max-width: 480px) {
  .hero-v .slider-wrapper {
    padding-bottom: 40px;
    padding-top: 128px;
  }
}
@media (max-width: 420px) {
  .hero-v .slider-wrapper {
    padding-top: 134px;
  }
}
@media (max-width: 767px) {
  .hero-v .slider-wrapper video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
@media (max-width: 61.25em) {
  .hero-v .slider-wrapper a.button:hover {
    background-color: #022a3a;
    color: #f4cd00;
  }
}

.slider-wrapper {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-height: unset;
}
.slider-wrapper .slick-initialized {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  max-height: unset;
}
@media (max-width: 767px) {
  .slider-wrapper .slick-initialized {
    padding: 30px 5px;
  }
}
@media (max-width: 420px) {
  .slider-wrapper .slick-initialized {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 375px;
  }
}
.slider-wrapper .slick-initialized .slick-list,
.slider-wrapper .slick-initialized .slick-track,
.slider-wrapper .slick-initialized .slick-initialized .slick-slide {
  width: 100% !important;
}

@media (min-width: 20em) {
  .slider-wrapper,
.slider {
    color: #fff;
  }

  .slick-dots {
    bottom: -8%;
    position: absolute;
  }

  .slick-dotted.slick-slider {
    margin-bottom: -1%;
  }

  .hero-v {
    background-color: #022a3a;
    min-height: 270px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .hero__title_v {
    font-size: 33px;
    font-size: 2.0625rem;
  }

  video {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    top: 0;
  }
}
@media (min-width: 20em) and (max-width: 520px) {
  video {
    height: 100%;
    left: 50%;
    max-width: unset;
    overflow: hidden;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    width: auto;
  }
}
.hero-large-v {
  min-height: 750px;
}
@media (min-width: 20em) {
  .hero-large-v {
    min-height: 270px;
  }
}
@media (min-width: 46.25em) {
  .hero-large-v {
    min-height: 388px;
  }
}
@media (min-width: 1070px) {
  .hero-large-v {
    min-height: 600px;
  }
}
@media (min-width: 1200px) {
  .hero-large-v {
    min-height: 700px;
  }
}
@media (max-width: 420px) {
  .hero-large-v {
    min-height: 375px;
  }
}

@media (min-width: 46.25em) {
  .slider-wrapper,
.slider {
    color: #fff;
    max-height: 100%;
  }

  .slick-dots {
    bottom: -12%;
    position: absolute;
  }

  .hero__title_v {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }

  video {
    height: auto;
  }
}
@media (min-width: 66.875em) {
  .slider-wrapper,
.slider {
    color: #fff;
    max-height: 100%;
  }

  .slick-dots {
    bottom: -47%;
    position: absolute;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }

  .hero__title_v {
    font-size: 64px;
    font-size: 4rem;
  }

  video {
    height: auto;
  }
}
@media (min-width: 20em) {
  .hero {
    height: 248px;
    min-height: 248px;
  }
  .hero .hero-content {
    padding-top: 119px;
  }

  .hero__title_i {
    font-size: 28px;
    font-size: 1.75rem;
    padding-top: 25%;
  }
}
@media (min-width: 30.063em) {
  .hero {
    height: 305px;
    min-height: 305px;
  }
  .hero .hero-content {
    padding-top: 176px;
  }
}
@media (min-width: 45em) {
  .hero {
    height: 356px;
    min-height: 356px;
  }
  .hero .hero-content {
    padding-top: 177px;
  }

  .hero__title_i {
    font-size: 44px;
    font-size: 2.75rem;
    padding-top: 5%;
  }
}
@media (min-width: 64em) {
  .hero {
    height: 355px;
    min-height: 355px;
  }
  .hero .hero-content {
    padding-top: 176px;
  }

  .hero__title_i {
    font-size: 60px;
    font-size: 3.75rem;
    margin-top: -15%;
  }
}
@media (min-width: 75em) {
  .hero {
    height: 348px;
    min-height: 348px;
  }
  .hero .hero-content {
    padding-top: 169px;
  }

  .hero__title_i {
    font-size: 60px;
    font-size: 3.75rem;
    margin-top: -15%;
  }
}
@media (min-width: 83.813em) {
  .hero {
    height: 358px;
    min-height: 358px;
  }
  .hero .hero-content {
    padding-top: 179px;
  }
}
.freedaypass a {
  color: blue;
}

.freedaypass p {
  color: white;
  left: 30px;
  position: relative;
  top: -49px;
}

input[type=checkbox] + span {
  position: relative;
  top: 67px;
}

.mslide {
  margin-top: 37%;
}

.txtbold {
  font-weight: 700;
  max-height: 45%;
  min-height: 45%;
}

@media (min-width: 20em) {
  .mslide\@mobile {
    margin-top: 21%;
  }

  .txtbold\@mobile {
    font-weight: 500;
  }
}
@media (min-width: 46.25em) {
  .mslide\@tablet {
    margin-top: 11%;
  }

  .txtbold\@tablet {
    font-weight: 700;
  }
}
@media (min-width: 64em) {
  .mslide\@tablet {
    margin-top: 11%;
  }

  .txtbold\@tablet {
    font-weight: 700;
  }
}
.center {
  margin: auto;
  padding: 10px;
  width: 80%;
}

.csvideoTop {
  margin-top: -10%;
  padding-right: 10px;
}

.u-fill-blue-40 {
  background-color: #deeaef;
}

.u-fill-blue-80 {
  background-color: #0d2a3ae0;
}

@media (max-width: 767px) {
  .u-mobile-padding-bottom-none {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .u-mobile-padding-top-30 {
    padding-top: 30px !important;
  }
}

@media (max-width: 767px) {
  .u-mobile-padding-top-none {
    padding-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .u-mobile-margin-top-none {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .u-mobile-margin-bottom-none {
    margin-bottom: 0 !important;
  }
}

.left.u-order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -webkit-order: 0 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.u-order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.u-order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.videosHeight {
  margin-top: -9%;
  padding-right: 21px;
}

.vp-center {
  display: inline !important;
}

@media (max-width: 1024px) {
  .hero .hero__title_i {
    padding: 0;
  }

  .hero .o-wrapper {
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .hero .o-wrapper {
    margin-top: 0;
  }

  .hero .o-layout__item {
    width: 100%;
  }
}
.slider-heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-left: 0;
  text-shadow: 2px 2px 3px black;
}
@media (max-width: 1024px) {
  .slider-heading {
    font-size: 39px;
  }
}
@media (max-width: 767px) {
  .slider-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 430px) {
  .slider-heading {
    font-size: 29px;
    padding: 0;
  }
}
@media (max-width: 320px) {
  .slider-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.slider-heading span {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 60px;
  font-weight: 700;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
}
@media (max-width: 1199px) {
  .slider-heading span {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .slider-heading span {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .slider-heading span {
    font-size: 27px;
    margin-bottom: 0;
  }
}
@media (max-width: 430px) {
  .slider-heading span {
    font-size: 23px;
  }
}
@media (max-width: 320px) {
  .slider-heading span {
    font-size: 24px;
    margin-bottom: 0;
  }
}

@media (min-width: 64em) {
  .button-large {
    font-size: 1.2rem;
    padding: 25px 30px;
  }
}

@media (min-width: 64em) {
  .button-small {
    padding: 15px 25px;
  }
}

.hero__title_i {
  margin-bottom: auto;
  margin-top: auto;
  padding: 0;
}

@media (max-width: 1024px) {
  .hero .o-wrapper {
    margin-bottom: auto;
    margin-top: auto;
  }
}
.cancel-request,
.cancel-doc-request {
  display: none;
}

.gn-yellow-strong strong {
  color: #f4cd00;
}

.gift-checkhero {
  height: auto;
  min-height: unset;
}
.gift-checkhero .hero-content {
  padding-bottom: 59px;
}
@media (min-width: 992px) {
  .gift-checkhero .hero-content {
    padding-bottom: 80px;
    padding-top: 185px;
  }
}
@media (min-width: 1200px) {
  .gift-checkhero .hero-content {
    padding-top: 199px;
  }
}
@media (min-width: 1281px) {
  .gift-checkhero .hero-content {
    padding-bottom: 100px;
    padding-top: 220px;
  }
}
@media (max-width: 1199px) {
  .gift-checkhero .hero-content {
    padding-bottom: 69px;
  }
}
@media (max-width: 1023px) {
  .gift-checkhero .hero-content {
    padding-bottom: 60px;
    padding-top: 165px;
  }
}
@media (max-width: 767px) {
  .gift-checkhero .hero-content {
    padding-bottom: 45px;
    padding-top: 141px;
  }
}
@media (max-width: 530px) {
  .gift-checkhero .hero-content {
    padding-bottom: 40px;
    padding-top: 120px;
  }
}

.chat-bot .o-wrapper {
  max-width: 1140px;
}
.chat-bot .app-containernew {
  position: relative;
}
.chat-bot .app-containernew .language--switch {
  position: absolute;
  right: 20px;
  top: 14px;
}
@media (max-width: 1199px) {
  .chat-bot .app-containernew .language--switch .lang-btn {
    border-color: #fff;
    padding: 5px 18px 5px 19px;
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .chat-bot .app-containernew .language--switch .lang-btn:hover {
    background-color: transparent;
    background-image: url("/build/svg/icons/lang-switchs-icon.svg");
    border-color: #f4cd00;
  }
  .chat-bot .app-containernew .language--switch .lang-btn::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px auto;
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    visibility: hidden;
    width: 100%;
  }
  .chat-bot .app-containernew .language--switch .lang-btn.ae-btn {
    background-image: url("/build/svg/icons/lang-switchr-ar-white-icon.svg");
    background-size: 14px auto;
    font-size: 0;
  }
  .chat-bot .app-containernew .language--switch .lang-btn.ae-btn:hover {
    background-color: #f4cd00;
    background-image: none;
  }
  .chat-bot .app-containernew .language--switch .lang-btn.ae-btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .chat-bot .app-containernew .language--switch .lang-btn.ae-btn::after {
    background-image: url("/build/svg/icons/lang-switchr-ar-dark-icon.svg");
  }
}

html[dir=rtl] .chat-bot .app-containernew .language--switch {
  left: 20px;
  right: auto;
}
@media (max-width: 1199px) {
  html[dir=rtl] .chat-bot .app-containernew .language--switch .lang-btn.en-btn {
    background-image: url("/build/svg/icons/lang-switchs-en-white-icon.svg");
    background-size: 24px auto;
    font-size: 0;
    padding-left: 19px;
  }
  html[dir=rtl] .chat-bot .app-containernew .language--switch .lang-btn.en-btn:hover {
    background-color: #f4cd00;
    background-image: none;
  }
  html[dir=rtl] .chat-bot .app-containernew .language--switch .lang-btn.en-btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  html[dir=rtl] .chat-bot .app-containernew .language--switch .lang-btn.en-btn::after {
    background-image: url("/build/svg/icons/lang-switchs-en-dark-icon.svg");
    background-size: 24px auto;
  }
}

/* ==========================================================================
   #Locations
   ========================================================================== */
.screen-height {
  min-height: calc(100vh - 211px);
}
@media (min-height: 991px) {
  .screen-height {
    min-height: calc(100vh - 201px);
  }
}
@media (min-height: 739px) {
  .screen-height {
    min-height: calc(100vh - 166px);
  }
}

.join-progress {
  display: table;
  list-style-type: none;
  margin: 0;
  padding: 20px 0;
  table-layout: fixed;
  width: 100%;
  z-index: 0;
}

.join-progress__text {
  color: #022a3a;
  font-size: 13px;
  position: relative;
  text-decoration: none;
}

@media (min-width: 768px) {
  .join-progress {
    padding: 20px 0;
  }

  .join-progress__text {
    font-size: 16px;
  }
}
.join-progress__icon {
  background-color: #fff;
  border: 3px solid #022a3a;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 20px;
  left: 0;
  margin: 0 auto -12px;
  position: relative;
  right: 0;
  top: -12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 20px;
  z-index: 101;
}

.join-progress__track--completed .join-progress__text,
.join-progress__track--current .join-progress__text {
  color: #022a3a;
}

.join-progress__link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.join-progress__track {
  border-top: 4px solid #e0e0e0;
  display: table-cell;
  line-height: 1.2em;
  position: relative;
  text-align: center;
}

[dir=ltr].join-progress__track--completed {
  border-top: 4px solid #022a3a;
}

[dir=rtl].join-progress__track--completed,
[dir=rtl].join-progress__track--completed::after {
  border-top: 4px solid #022a3a;
}

.join-progress__track--completed .join-progress__icon {
  background-color: #022a3a;
  border: 3px solid #022a3a;
  cursor: pointer;
}

.join-progress__track--current {
  border-top: 4px solid #022a3a;
}

.join-progress__track--current .join-progress__icon {
  border: 3px solid #022a3a;
}

.join-progress__track--current::after {
  background: #022a3a;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  right: 0;
  top: -4px;
  width: 50%;
}

[dir=ltr].join-progress__track:first-child::before,
[dir=ltr].join-progress__track:last-child::before {
  background: #fff;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  top: -4px;
  width: 50%;
}

[dir=ltr].join-progress__track:first-child::before {
  left: 0;
}

[dir=ltr].join-progress__track:last-child::before {
  right: 0;
  z-index: 100;
}

[dir=rtl].join-progress__track--completed::before,
[dir=rtl].join-progress__track:first-child::after,
[dir=rtl].join-progress__track:last-child::before {
  background: #fff;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  top: -4px;
  width: 50%;
}

[dir=rtl].join-progress__track:last-child::after {
  background: #e0e0e0;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  right: 0;
  top: -4px;
  width: 50%;
}

[dir=rtl].join-progress__track:first-child::after {
  left: 0;
  z-index: 100;
}

/* menu Tabs for gym location page */
#menu_tab {
  bottom: 0;
  margin: auto;
  padding-left: 35%;
  position: absolute;
  z-index: 9;
}

#menu_tab ul {
  font-size: 0.8125rem;
  font-weight: 400;
  list-style: none;
  margin: 0;
  outline: 0;
  padding: 0;
  text-transform: uppercase;
}

#menu_tab ul li {
  float: left;
  line-height: 40px;
  position: relative;
}

#menu_tab ul li a,
#menu_tab ul li a:visited {
  background: #f4cd00;
  color: #022a3a;
  display: block;
  padding: 0 24px;
  text-decoration: none;
}

#menu_tab ul li a:hover,
#menu_tab ul li a:visited:hover {
  background: #fff;
  color: #022a3a;
}

#menu_tab ul li.activetab a {
  background: #fff;
  color: #022a3a;
}

.tag-loc {
  color: #f4cd00;
  cursor: -webkit-grab;
  cursor: grab;
}

.mapouter {
  height: 534px;
  text-align: right;
  width: 845px;
}

#gmap_canvas {
  background: none !important;
  height: 534px;
  overflow: hidden;
  width: 845px;
}

.joinpadding {
  padding-bottom: 11px;
  padding-left: 26px;
  padding-right: 11px;
  padding-top: 11px;
  text-align: center;
}

@media (min-width: 20em) {
  .hero__title_l {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 9%;
  }

  .mobile-center {
    text-align: center;
  }

  .tag-loc {
    font-size: 15px;
  }

  .locjointext {
    color: #022a3a;
    font-size: 10px;
    font-weight: 400;
  }

  .loc-layout {
    margin-top: unset;
  }

  #menu_tab {
    bottom: 0;
    margin: auto;
    padding-left: 6%;
    position: absolute;
    z-index: 9;
  }

  #menu_tab ul {
    font-size: 0.625rem;
    font-weight: 500;
    list-style: none;
    margin: 0;
    outline: 0;
    padding: 0;
    text-transform: uppercase;
  }

  #menu_tab ul li {
    float: left;
    line-height: 30px;
    position: relative;
  }

  #menu_tab ul li.activetab a {
    background: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    color: #022a3a;
    margin-bottom: 0;
  }

  #menu_tab ul li.normal a {
    border-bottom: 1px solid #022a3a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-left: 1px solid #022a3a;
    border-right: 1px solid #f4cd00;
    border-top: 1px solid #f4cd00;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    margin-bottom: 0;
  }

  .mapouter {
    height: 534px;
    text-align: right;
    width: 335px;
  }

  #gmap_canvas {
    background: none !important;
    height: 534px;
    overflow: hidden;
    width: 335px;
  }
}
@media (min-width: 45em) {
  .hero__title_l {
    font-size: 30px;
    padding-top: 9%;
  }

  .mobile-center {
    text-align: center;
  }

  .tag-loc {
    font-size: 13px;
  }

  .locjointext {
    font-size: 14px;
    font-weight: 700;
    padding-top: 15px;
  }

  .loc-layout {
    margin-top: -20%;
  }

  #menu_tab {
    bottom: 0;
    margin: auto;
    padding-left: 28%;
    position: absolute;
    z-index: 9;
  }

  #menu_tab ul {
    font-size: 0.75rem;
    font-weight: 500;
    list-style: none;
    margin: 0;
    outline: 0;
    padding: 0;
    text-transform: uppercase;
  }

  #menu_tab ul li {
    float: left;
    line-height: 30px;
    position: relative;
  }

  #menu_tab ul li.activetab a {
    background: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    color: #022a3a;
    margin-bottom: 0;
  }

  #menu_tab ul li.normal a {
    border-bottom: 1px solid #022a3a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-left: 1px solid #022a3a;
    border-right: 1px solid #f4cd00;
    border-top: 1px solid #f4cd00;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    margin-bottom: 0;
  }

  .mapouter {
    height: 534px;
    text-align: right;
    width: 570px;
  }

  #gmap_canvas {
    background: none !important;
    height: 534px;
    overflow: hidden;
    width: 570px;
  }
}
@media (min-width: 64em) {
  .hero__title_l {
    font-size: 35px;
    margin-top: 0;
  }

  .locjointext {
    font-size: 14px;
    font-weight: 700;
    padding-top: 15px;
  }

  .tag-loc {
    font-size: 15px;
  }

  .mobile-center {
    text-align: left;
  }

  .tag--loclink:active,
.tag--loclink:hover {
    border: 1px solid #f4cd00;
    color: #f4cd00;
  }

  .tag--loclink:link,
.tag--loclink:visited {
    color: #f4cd00;
  }

  .loc-layout {
    margin-top: -11%;
  }

  #menu_tab {
    bottom: 0;
    margin: auto;
    padding-left: 37%;
    position: absolute;
    z-index: 9;
  }

  #menu_tab ul {
    font-size: 0.8125rem;
    font-weight: 400;
    list-style: none;
    margin: 0;
    outline: 0;
    padding: 0;
    text-transform: uppercase;
  }

  #menu_tab ul li {
    border-bottom: 0;
    float: left;
    line-height: 40px;
    position: relative;
  }

  #menu_tab ul li a,
#menu_tab ul li a:visited {
    background: #f4cd00;
    color: #022a3a;
    display: block;
    padding: 0 24px;
    text-decoration: none;
  }

  #menu_tab ul li a:hover,
#menu_tab ul li a:visited:hover {
    background: #fff;
    color: #022a3a;
  }

  #menu_tab ul li.activetab a {
    background: #fff;
    border: 1px solid #fff;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    color: #022a3a;
    margin-bottom: 0;
  }

  #menu_tab ul li.normal a {
    border-bottom: 1px solid #022a3a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-left: 1px solid #022a3a;
    border-right: 1px solid #f4cd00;
    border-top: 1px solid #f4cd00;
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    margin-bottom: 0;
  }

  .mapouter {
    height: 534px;
    text-align: right;
    width: 870px;
  }

  #gmap_canvas {
    background: none !important;
    height: 534px;
    overflow: hidden;
    width: 870px;
  }
}
@media (min-width: 20em) {
  .hero-loc-h {
    height: 380px;
    min-height: 380px;
  }
}
@media (min-width: 45em) {
  .hero-loc-h {
    height: 250px;
    min-height: 300px;
  }
}
@media (min-width: 64em) {
  .hero-loc-h {
    height: 300px;
    min-height: 300px;
  }
}
.class-pack-heading {
  display: block;
  margin: 0 -7px;
}
.class-pack-heading td {
  display: block;
}

.class-pack > td {
  display: inline-block;
  width: 100%;
}

.total-border {
  border-bottom: 2px solid white;
}

.class-pack-heading .panel-heading {
  background-color: #0000000f;
  border: 1px solid white;
  border-radius: 4px;
  float: left;
  margin: 2px;
  width: calc(50% - 4px);
}

.panel-title {
  background-color: #c0c0c052;
  font-size: 14px;
  margin: unset;
  padding: 10px;
}

.class-pack-td {
  padding-top: 0;
}
.class-pack-td .panel-group {
  border-top: 0;
}

.panel-active {
  background-color: #c0c0c061 !important;
}

#accordion-wrp .form-control {
  border: none;
  font-size: 19px;
}

@media (max-width: 767px) {
  .panel-default,
.panel-collapse.collapse,
.class-pack-heading .panel-heading {
    width: 100%;
  }

  #accordion-wrp .form-control {
    border: none;
    font-size: 13px;
    padding: 5px;
  }
}
.relative {
  display: inline-block;
  position: relative;
  width: 100%;
}

.class-pack {
  display: block;
}
.class-pack .panel-group {
  display: block;
}

.promocode-wrp {
  display: none;
}

.u-text-size {
  font-size: 19px;
}
@media (max-width: 767px) {
  .u-text-size {
    font-size: 13px;
  }
}

.location-wrap-height {
  min-height: calc(100vh - 247px);
}
@media (max-width: 1499px) {
  .location-wrap-height {
    min-height: calc(100vh - 237px);
  }
}
@media (max-width: 991px) {
  .location-wrap-height {
    min-height: calc(100vh - 227px);
  }
}
@media (max-width: 739px) {
  .location-wrap-height {
    min-height: calc(100vh - 192px);
  }
}

.location-select-hero {
  padding: 40px 0;
  width: 100%;
}
@media (max-width: 991px) {
  .location-select-hero {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .location-select-hero {
    padding-bottom: 40px;
    padding-top: 30px;
  }
}
.location-select-hero.pb-60 {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .location-select-hero.pb-60 {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .location-select-hero.pb-60 {
    padding-bottom: 40px;
  }
}
.location-select-hero .v-effect-link {
  padding-left: 0;
}
.location-select-hero .o-wrapper {
  max-width: 960px;
}
@media (max-width: 991px) {
  .location-select-hero h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .location-select-hero h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.location-select-hero h2:empty {
  display: none;
}
.location-select-hero .location_dropdown .location_label,
.location-select-hero .location_dropdown .free-location_label {
  border-radius: 96px;
}
.location-select-hero .curved-new-form .ampdata_register .right {
  max-width: 100%;
  width: 571px;
}
.location-select-hero .curved-new-form .ampdata_register .right .amp-form .referwrap-box {
  padding: 40px 25px;
}
@media (max-width: 530px) {
  .location-select-hero .curved-new-form .ampdata_register .right .amp-form > .o-layout__item {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 530px) {
  .location-select-hero .curved-new-form .ampdata_register .right .amp-form > .o-layout__item.o-layaout-p {
    padding-right: 0 !important;
  }
}

.location_step .join-progress {
  margin-bottom: 7px;
}
.location_step .join-progress.yellow .join-progress__track.join-progress__track--completed .join-progress__icon {
  background-image: url("../../../build/img/check-sign-blue.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  color: transparent;
}
.location_step .join-progress.yellow .join-progress__track.join-progress__track--current .join-progress__text {
  color: #f4cd00;
}
@media (max-width: 767px) {
  .location_step .join-progress {
    margin-bottom: 0;
    padding-top: 12px;
  }
}
@media (max-width: 480px) {
  .location_step .join-progress .join-progress__track {
    letter-spacing: 0.5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.location_step .join-progress .join-progress__track.join-progress__track--current .join-progress__icon {
  color: #022a3a;
}
.location_step .join-progress .join-progress__track.join-progress__track--current .join-progress__text {
  color: #022a3a;
}
.location_step .join-progress .join-progress__track.join-progress__track--completed .join-progress__icon {
  background-image: url("../../../build/img/check-sign.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  color: transparent;
}
.location_step .join-progress .join-progress__track.join-progress__track--completed .join-progress__text {
  color: #022a3a;
}
.location_step .join-progress .join-progress__track .join-progress__icon {
  color: #022a3a;
  font-weight: 700;
  height: 30px;
  line-height: 25px;
  padding-left: 1px;
  top: -16px;
  width: 30px;
}
.location_step .join-progress .join-progress__track .join-progress__text {
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .location_step .join-progress .join-progress__track .join-progress__text {
    display: inline-block;
    max-width: 110px;
    word-break: break-word;
  }
}

.location_drop-wrap {
  display: none;
  padding-top: 30px;
  width: 100%;
}

.location_dropdown {
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  position: relative;
  width: 100%;
}
.location_dropdown .coustom-scroll {
  background-color: #022a3a;
  bottom: -35px;
  cursor: pointer;
  height: 35px;
  position: absolute;
  right: 0;
  width: 100%;
}
.location_dropdown .location_label,
.location_dropdown .free-location_label {
  background-color: #fff;
  border: 2px solid #022a3a;
  border-radius: 24px;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 24px;
  overflow: hidden;
  padding: 16px 60px 16px 20px;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  z-index: 11;
}
@media (max-width: 767px) {
  .location_dropdown .location_label,
.location_dropdown .free-location_label {
    font-size: 17px;
    line-height: 22px;
    padding: 15px 36px 15px 15px;
  }
}
.location_dropdown .location_label::before,
.location_dropdown .free-location_label::before {
  border-left: 13px solid transparent;
  border-radius: 3px;
  border-right: 13px solid transparent;
  border-top: 16px solid #022a3a;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .location_dropdown .location_label::before,
.location_dropdown .free-location_label::before {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
    right: 8px;
  }
}
.location_dropdown .location_label.active,
.location_dropdown .free-location_label.active {
  border-radius: 24px 24px 0 0;
  z-index: 12;
}
.location_dropdown .location_label.active::before,
.location_dropdown .free-location_label.active::before {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
}
.location_dropdown .location_label.active + ul,
.location_dropdown .free-location_label.active + ul {
  z-index: 11;
}
.location_dropdown ul {
  background-color: #ededed;
  border-radius: 12px 12px 24px 24px;
  display: none;
  left: 0;
  list-style: none;
  margin-top: -14px !important;
  padding: 35px 0 15px;
  position: r;
  top: calc(100% - 20px);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: 100%;
  z-index: 10;
}
.location_dropdown ul li {
  width: 100%;
}
.location_dropdown ul li a,
.location_dropdown ul li button {
  background-color: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #022a3a;
  cursor: no-drop;
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 24px;
  padding: 8px 20px;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.location_dropdown ul li a[href], .location_dropdown ul li a[type=button],
.location_dropdown ul li button[href],
.location_dropdown ul li button[type=button] {
  cursor: pointer;
  font-size: 16px;
  padding-bottom: 4px;
  padding-left: 30px;
  padding-top: 4px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.location_dropdown ul li a[href]:hover, .location_dropdown ul li a[type=button]:hover,
.location_dropdown ul li button[href]:hover,
.location_dropdown ul li button[type=button]:hover {
  background-color: #e2e2e2;
}
.location_dropdown ul li a[href]:focus, .location_dropdown ul li a[type=button]:focus,
.location_dropdown ul li button[href]:focus,
.location_dropdown ul li button[type=button]:focus {
  outline: none;
}
.location_dropdown ul li span {
  cursor: pointer;
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 20px;
  padding-bottom: 4px;
  padding-left: 30px;
  padding-top: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.location_dropdown ul li span:hover {
  background-color: #e2e2e2;
}

.location_dropdown-white,
.membership_dropdown-white,
.Reason_dropdown-white,
.Position_dropdown-white,
.contract_dropdown-white,
.reason_dropdown-white,
.enquiry_dropdown-white,
.free-location_dropdown-white {
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
.location_dropdown-white .location-error,
.membership_dropdown-white .location-error,
.Reason_dropdown-white .location-error,
.Position_dropdown-white .location-error,
.contract_dropdown-white .location-error,
.reason_dropdown-white .location-error,
.enquiry_dropdown-white .location-error,
.free-location_dropdown-white .location-error {
  display: none;
}
.location_dropdown-white .coustom-scroll,
.membership_dropdown-white .coustom-scroll,
.Reason_dropdown-white .coustom-scroll,
.Position_dropdown-white .coustom-scroll,
.contract_dropdown-white .coustom-scroll,
.reason_dropdown-white .coustom-scroll,
.enquiry_dropdown-white .coustom-scroll,
.free-location_dropdown-white .coustom-scroll {
  background-color: #022a3a;
  bottom: -35px;
  cursor: pointer;
  height: 35px;
  position: absolute;
  right: 0;
  width: 100%;
}
.location_dropdown-white .location_label,
.location_dropdown-white .enquiry_label,
.location_dropdown-white .contract_label,
.location_dropdown-white .Reason_label,
.location_dropdown-white .membership_label,
.location_dropdown-white .reason_label,
.location_dropdown-white .Position_label,
.location_dropdown-white .free-location_label,
.membership_dropdown-white .location_label,
.membership_dropdown-white .enquiry_label,
.membership_dropdown-white .contract_label,
.membership_dropdown-white .Reason_label,
.membership_dropdown-white .membership_label,
.membership_dropdown-white .reason_label,
.membership_dropdown-white .Position_label,
.membership_dropdown-white .free-location_label,
.Reason_dropdown-white .location_label,
.Reason_dropdown-white .enquiry_label,
.Reason_dropdown-white .contract_label,
.Reason_dropdown-white .Reason_label,
.Reason_dropdown-white .membership_label,
.Reason_dropdown-white .reason_label,
.Reason_dropdown-white .Position_label,
.Reason_dropdown-white .free-location_label,
.Position_dropdown-white .location_label,
.Position_dropdown-white .enquiry_label,
.Position_dropdown-white .contract_label,
.Position_dropdown-white .Reason_label,
.Position_dropdown-white .membership_label,
.Position_dropdown-white .reason_label,
.Position_dropdown-white .Position_label,
.Position_dropdown-white .free-location_label,
.contract_dropdown-white .location_label,
.contract_dropdown-white .enquiry_label,
.contract_dropdown-white .contract_label,
.contract_dropdown-white .Reason_label,
.contract_dropdown-white .membership_label,
.contract_dropdown-white .reason_label,
.contract_dropdown-white .Position_label,
.contract_dropdown-white .free-location_label,
.reason_dropdown-white .location_label,
.reason_dropdown-white .enquiry_label,
.reason_dropdown-white .contract_label,
.reason_dropdown-white .Reason_label,
.reason_dropdown-white .membership_label,
.reason_dropdown-white .reason_label,
.reason_dropdown-white .Position_label,
.reason_dropdown-white .free-location_label,
.enquiry_dropdown-white .location_label,
.enquiry_dropdown-white .enquiry_label,
.enquiry_dropdown-white .contract_label,
.enquiry_dropdown-white .Reason_label,
.enquiry_dropdown-white .membership_label,
.enquiry_dropdown-white .reason_label,
.enquiry_dropdown-white .Position_label,
.enquiry_dropdown-white .free-location_label,
.free-location_dropdown-white .location_label,
.free-location_dropdown-white .enquiry_label,
.free-location_dropdown-white .contract_label,
.free-location_dropdown-white .Reason_label,
.free-location_dropdown-white .membership_label,
.free-location_dropdown-white .reason_label,
.free-location_dropdown-white .Position_label,
.free-location_dropdown-white .free-location_label {
  background-color: #fff;
  border-radius: 24px;
  color: #677f89;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 24px;
  overflow: hidden;
  padding: 15px 60px 15px 24px;
  position: relative;
  text-align: left;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  z-index: 10;
}
@media (max-width: 420px) {
  .location_dropdown-white .location_label,
.location_dropdown-white .enquiry_label,
.location_dropdown-white .contract_label,
.location_dropdown-white .Reason_label,
.location_dropdown-white .membership_label,
.location_dropdown-white .reason_label,
.location_dropdown-white .Position_label,
.location_dropdown-white .free-location_label,
.membership_dropdown-white .location_label,
.membership_dropdown-white .enquiry_label,
.membership_dropdown-white .contract_label,
.membership_dropdown-white .Reason_label,
.membership_dropdown-white .membership_label,
.membership_dropdown-white .reason_label,
.membership_dropdown-white .Position_label,
.membership_dropdown-white .free-location_label,
.Reason_dropdown-white .location_label,
.Reason_dropdown-white .enquiry_label,
.Reason_dropdown-white .contract_label,
.Reason_dropdown-white .Reason_label,
.Reason_dropdown-white .membership_label,
.Reason_dropdown-white .reason_label,
.Reason_dropdown-white .Position_label,
.Reason_dropdown-white .free-location_label,
.Position_dropdown-white .location_label,
.Position_dropdown-white .enquiry_label,
.Position_dropdown-white .contract_label,
.Position_dropdown-white .Reason_label,
.Position_dropdown-white .membership_label,
.Position_dropdown-white .reason_label,
.Position_dropdown-white .Position_label,
.Position_dropdown-white .free-location_label,
.contract_dropdown-white .location_label,
.contract_dropdown-white .enquiry_label,
.contract_dropdown-white .contract_label,
.contract_dropdown-white .Reason_label,
.contract_dropdown-white .membership_label,
.contract_dropdown-white .reason_label,
.contract_dropdown-white .Position_label,
.contract_dropdown-white .free-location_label,
.reason_dropdown-white .location_label,
.reason_dropdown-white .enquiry_label,
.reason_dropdown-white .contract_label,
.reason_dropdown-white .Reason_label,
.reason_dropdown-white .membership_label,
.reason_dropdown-white .reason_label,
.reason_dropdown-white .Position_label,
.reason_dropdown-white .free-location_label,
.enquiry_dropdown-white .location_label,
.enquiry_dropdown-white .enquiry_label,
.enquiry_dropdown-white .contract_label,
.enquiry_dropdown-white .Reason_label,
.enquiry_dropdown-white .membership_label,
.enquiry_dropdown-white .reason_label,
.enquiry_dropdown-white .Position_label,
.enquiry_dropdown-white .free-location_label,
.free-location_dropdown-white .location_label,
.free-location_dropdown-white .enquiry_label,
.free-location_dropdown-white .contract_label,
.free-location_dropdown-white .Reason_label,
.free-location_dropdown-white .membership_label,
.free-location_dropdown-white .reason_label,
.free-location_dropdown-white .Position_label,
.free-location_dropdown-white .free-location_label {
    font-size: 13px;
  }
}
.location_dropdown-white .location_label::before,
.location_dropdown-white .enquiry_label::before,
.location_dropdown-white .contract_label::before,
.location_dropdown-white .Reason_label::before,
.location_dropdown-white .membership_label::before,
.location_dropdown-white .reason_label::before,
.location_dropdown-white .Position_label::before,
.location_dropdown-white .free-location_label::before,
.membership_dropdown-white .location_label::before,
.membership_dropdown-white .enquiry_label::before,
.membership_dropdown-white .contract_label::before,
.membership_dropdown-white .Reason_label::before,
.membership_dropdown-white .membership_label::before,
.membership_dropdown-white .reason_label::before,
.membership_dropdown-white .Position_label::before,
.membership_dropdown-white .free-location_label::before,
.Reason_dropdown-white .location_label::before,
.Reason_dropdown-white .enquiry_label::before,
.Reason_dropdown-white .contract_label::before,
.Reason_dropdown-white .Reason_label::before,
.Reason_dropdown-white .membership_label::before,
.Reason_dropdown-white .reason_label::before,
.Reason_dropdown-white .Position_label::before,
.Reason_dropdown-white .free-location_label::before,
.Position_dropdown-white .location_label::before,
.Position_dropdown-white .enquiry_label::before,
.Position_dropdown-white .contract_label::before,
.Position_dropdown-white .Reason_label::before,
.Position_dropdown-white .membership_label::before,
.Position_dropdown-white .reason_label::before,
.Position_dropdown-white .Position_label::before,
.Position_dropdown-white .free-location_label::before,
.contract_dropdown-white .location_label::before,
.contract_dropdown-white .enquiry_label::before,
.contract_dropdown-white .contract_label::before,
.contract_dropdown-white .Reason_label::before,
.contract_dropdown-white .membership_label::before,
.contract_dropdown-white .reason_label::before,
.contract_dropdown-white .Position_label::before,
.contract_dropdown-white .free-location_label::before,
.reason_dropdown-white .location_label::before,
.reason_dropdown-white .enquiry_label::before,
.reason_dropdown-white .contract_label::before,
.reason_dropdown-white .Reason_label::before,
.reason_dropdown-white .membership_label::before,
.reason_dropdown-white .reason_label::before,
.reason_dropdown-white .Position_label::before,
.reason_dropdown-white .free-location_label::before,
.enquiry_dropdown-white .location_label::before,
.enquiry_dropdown-white .enquiry_label::before,
.enquiry_dropdown-white .contract_label::before,
.enquiry_dropdown-white .Reason_label::before,
.enquiry_dropdown-white .membership_label::before,
.enquiry_dropdown-white .reason_label::before,
.enquiry_dropdown-white .Position_label::before,
.enquiry_dropdown-white .free-location_label::before,
.free-location_dropdown-white .location_label::before,
.free-location_dropdown-white .enquiry_label::before,
.free-location_dropdown-white .contract_label::before,
.free-location_dropdown-white .Reason_label::before,
.free-location_dropdown-white .membership_label::before,
.free-location_dropdown-white .reason_label::before,
.free-location_dropdown-white .Position_label::before,
.free-location_dropdown-white .free-location_label::before {
  border-left: 13px solid transparent;
  border-radius: 3px;
  border-right: 13px solid transparent;
  border-top: 16px solid #022a3a;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .location_dropdown-white .location_label::before,
.location_dropdown-white .enquiry_label::before,
.location_dropdown-white .contract_label::before,
.location_dropdown-white .Reason_label::before,
.location_dropdown-white .membership_label::before,
.location_dropdown-white .reason_label::before,
.location_dropdown-white .Position_label::before,
.location_dropdown-white .free-location_label::before,
.membership_dropdown-white .location_label::before,
.membership_dropdown-white .enquiry_label::before,
.membership_dropdown-white .contract_label::before,
.membership_dropdown-white .Reason_label::before,
.membership_dropdown-white .membership_label::before,
.membership_dropdown-white .reason_label::before,
.membership_dropdown-white .Position_label::before,
.membership_dropdown-white .free-location_label::before,
.Reason_dropdown-white .location_label::before,
.Reason_dropdown-white .enquiry_label::before,
.Reason_dropdown-white .contract_label::before,
.Reason_dropdown-white .Reason_label::before,
.Reason_dropdown-white .membership_label::before,
.Reason_dropdown-white .reason_label::before,
.Reason_dropdown-white .Position_label::before,
.Reason_dropdown-white .free-location_label::before,
.Position_dropdown-white .location_label::before,
.Position_dropdown-white .enquiry_label::before,
.Position_dropdown-white .contract_label::before,
.Position_dropdown-white .Reason_label::before,
.Position_dropdown-white .membership_label::before,
.Position_dropdown-white .reason_label::before,
.Position_dropdown-white .Position_label::before,
.Position_dropdown-white .free-location_label::before,
.contract_dropdown-white .location_label::before,
.contract_dropdown-white .enquiry_label::before,
.contract_dropdown-white .contract_label::before,
.contract_dropdown-white .Reason_label::before,
.contract_dropdown-white .membership_label::before,
.contract_dropdown-white .reason_label::before,
.contract_dropdown-white .Position_label::before,
.contract_dropdown-white .free-location_label::before,
.reason_dropdown-white .location_label::before,
.reason_dropdown-white .enquiry_label::before,
.reason_dropdown-white .contract_label::before,
.reason_dropdown-white .Reason_label::before,
.reason_dropdown-white .membership_label::before,
.reason_dropdown-white .reason_label::before,
.reason_dropdown-white .Position_label::before,
.reason_dropdown-white .free-location_label::before,
.enquiry_dropdown-white .location_label::before,
.enquiry_dropdown-white .enquiry_label::before,
.enquiry_dropdown-white .contract_label::before,
.enquiry_dropdown-white .Reason_label::before,
.enquiry_dropdown-white .membership_label::before,
.enquiry_dropdown-white .reason_label::before,
.enquiry_dropdown-white .Position_label::before,
.enquiry_dropdown-white .free-location_label::before,
.free-location_dropdown-white .location_label::before,
.free-location_dropdown-white .enquiry_label::before,
.free-location_dropdown-white .contract_label::before,
.free-location_dropdown-white .Reason_label::before,
.free-location_dropdown-white .membership_label::before,
.free-location_dropdown-white .reason_label::before,
.free-location_dropdown-white .Position_label::before,
.free-location_dropdown-white .free-location_label::before {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
    right: 8px;
  }
}
.location_dropdown-white .location_label.active,
.location_dropdown-white .enquiry_label.active,
.location_dropdown-white .contract_label.active,
.location_dropdown-white .Reason_label.active,
.location_dropdown-white .membership_label.active,
.location_dropdown-white .reason_label.active,
.location_dropdown-white .Position_label.active,
.location_dropdown-white .free-location_label.active,
.membership_dropdown-white .location_label.active,
.membership_dropdown-white .enquiry_label.active,
.membership_dropdown-white .contract_label.active,
.membership_dropdown-white .Reason_label.active,
.membership_dropdown-white .membership_label.active,
.membership_dropdown-white .reason_label.active,
.membership_dropdown-white .Position_label.active,
.membership_dropdown-white .free-location_label.active,
.Reason_dropdown-white .location_label.active,
.Reason_dropdown-white .enquiry_label.active,
.Reason_dropdown-white .contract_label.active,
.Reason_dropdown-white .Reason_label.active,
.Reason_dropdown-white .membership_label.active,
.Reason_dropdown-white .reason_label.active,
.Reason_dropdown-white .Position_label.active,
.Reason_dropdown-white .free-location_label.active,
.Position_dropdown-white .location_label.active,
.Position_dropdown-white .enquiry_label.active,
.Position_dropdown-white .contract_label.active,
.Position_dropdown-white .Reason_label.active,
.Position_dropdown-white .membership_label.active,
.Position_dropdown-white .reason_label.active,
.Position_dropdown-white .Position_label.active,
.Position_dropdown-white .free-location_label.active,
.contract_dropdown-white .location_label.active,
.contract_dropdown-white .enquiry_label.active,
.contract_dropdown-white .contract_label.active,
.contract_dropdown-white .Reason_label.active,
.contract_dropdown-white .membership_label.active,
.contract_dropdown-white .reason_label.active,
.contract_dropdown-white .Position_label.active,
.contract_dropdown-white .free-location_label.active,
.reason_dropdown-white .location_label.active,
.reason_dropdown-white .enquiry_label.active,
.reason_dropdown-white .contract_label.active,
.reason_dropdown-white .Reason_label.active,
.reason_dropdown-white .membership_label.active,
.reason_dropdown-white .reason_label.active,
.reason_dropdown-white .Position_label.active,
.reason_dropdown-white .free-location_label.active,
.enquiry_dropdown-white .location_label.active,
.enquiry_dropdown-white .enquiry_label.active,
.enquiry_dropdown-white .contract_label.active,
.enquiry_dropdown-white .Reason_label.active,
.enquiry_dropdown-white .membership_label.active,
.enquiry_dropdown-white .reason_label.active,
.enquiry_dropdown-white .Position_label.active,
.enquiry_dropdown-white .free-location_label.active,
.free-location_dropdown-white .location_label.active,
.free-location_dropdown-white .enquiry_label.active,
.free-location_dropdown-white .contract_label.active,
.free-location_dropdown-white .Reason_label.active,
.free-location_dropdown-white .membership_label.active,
.free-location_dropdown-white .reason_label.active,
.free-location_dropdown-white .Position_label.active,
.free-location_dropdown-white .free-location_label.active {
  border-radius: 24px 24px 0 0;
}
.location_dropdown-white .location_label.active::before,
.location_dropdown-white .enquiry_label.active::before,
.location_dropdown-white .contract_label.active::before,
.location_dropdown-white .Reason_label.active::before,
.location_dropdown-white .membership_label.active::before,
.location_dropdown-white .reason_label.active::before,
.location_dropdown-white .Position_label.active::before,
.location_dropdown-white .free-location_label.active::before,
.membership_dropdown-white .location_label.active::before,
.membership_dropdown-white .enquiry_label.active::before,
.membership_dropdown-white .contract_label.active::before,
.membership_dropdown-white .Reason_label.active::before,
.membership_dropdown-white .membership_label.active::before,
.membership_dropdown-white .reason_label.active::before,
.membership_dropdown-white .Position_label.active::before,
.membership_dropdown-white .free-location_label.active::before,
.Reason_dropdown-white .location_label.active::before,
.Reason_dropdown-white .enquiry_label.active::before,
.Reason_dropdown-white .contract_label.active::before,
.Reason_dropdown-white .Reason_label.active::before,
.Reason_dropdown-white .membership_label.active::before,
.Reason_dropdown-white .reason_label.active::before,
.Reason_dropdown-white .Position_label.active::before,
.Reason_dropdown-white .free-location_label.active::before,
.Position_dropdown-white .location_label.active::before,
.Position_dropdown-white .enquiry_label.active::before,
.Position_dropdown-white .contract_label.active::before,
.Position_dropdown-white .Reason_label.active::before,
.Position_dropdown-white .membership_label.active::before,
.Position_dropdown-white .reason_label.active::before,
.Position_dropdown-white .Position_label.active::before,
.Position_dropdown-white .free-location_label.active::before,
.contract_dropdown-white .location_label.active::before,
.contract_dropdown-white .enquiry_label.active::before,
.contract_dropdown-white .contract_label.active::before,
.contract_dropdown-white .Reason_label.active::before,
.contract_dropdown-white .membership_label.active::before,
.contract_dropdown-white .reason_label.active::before,
.contract_dropdown-white .Position_label.active::before,
.contract_dropdown-white .free-location_label.active::before,
.reason_dropdown-white .location_label.active::before,
.reason_dropdown-white .enquiry_label.active::before,
.reason_dropdown-white .contract_label.active::before,
.reason_dropdown-white .Reason_label.active::before,
.reason_dropdown-white .membership_label.active::before,
.reason_dropdown-white .reason_label.active::before,
.reason_dropdown-white .Position_label.active::before,
.reason_dropdown-white .free-location_label.active::before,
.enquiry_dropdown-white .location_label.active::before,
.enquiry_dropdown-white .enquiry_label.active::before,
.enquiry_dropdown-white .contract_label.active::before,
.enquiry_dropdown-white .Reason_label.active::before,
.enquiry_dropdown-white .membership_label.active::before,
.enquiry_dropdown-white .reason_label.active::before,
.enquiry_dropdown-white .Position_label.active::before,
.enquiry_dropdown-white .free-location_label.active::before,
.free-location_dropdown-white .location_label.active::before,
.free-location_dropdown-white .enquiry_label.active::before,
.free-location_dropdown-white .contract_label.active::before,
.free-location_dropdown-white .Reason_label.active::before,
.free-location_dropdown-white .membership_label.active::before,
.free-location_dropdown-white .reason_label.active::before,
.free-location_dropdown-white .Position_label.active::before,
.free-location_dropdown-white .free-location_label.active::before {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
}
@media (min-width: 768px) {
  .location_dropdown-white .location_label.small-caret,
.location_dropdown-white .enquiry_label.small-caret,
.location_dropdown-white .contract_label.small-caret,
.location_dropdown-white .Reason_label.small-caret,
.location_dropdown-white .membership_label.small-caret,
.location_dropdown-white .reason_label.small-caret,
.location_dropdown-white .Position_label.small-caret,
.location_dropdown-white .free-location_label.small-caret,
.membership_dropdown-white .location_label.small-caret,
.membership_dropdown-white .enquiry_label.small-caret,
.membership_dropdown-white .contract_label.small-caret,
.membership_dropdown-white .Reason_label.small-caret,
.membership_dropdown-white .membership_label.small-caret,
.membership_dropdown-white .reason_label.small-caret,
.membership_dropdown-white .Position_label.small-caret,
.membership_dropdown-white .free-location_label.small-caret,
.Reason_dropdown-white .location_label.small-caret,
.Reason_dropdown-white .enquiry_label.small-caret,
.Reason_dropdown-white .contract_label.small-caret,
.Reason_dropdown-white .Reason_label.small-caret,
.Reason_dropdown-white .membership_label.small-caret,
.Reason_dropdown-white .reason_label.small-caret,
.Reason_dropdown-white .Position_label.small-caret,
.Reason_dropdown-white .free-location_label.small-caret,
.Position_dropdown-white .location_label.small-caret,
.Position_dropdown-white .enquiry_label.small-caret,
.Position_dropdown-white .contract_label.small-caret,
.Position_dropdown-white .Reason_label.small-caret,
.Position_dropdown-white .membership_label.small-caret,
.Position_dropdown-white .reason_label.small-caret,
.Position_dropdown-white .Position_label.small-caret,
.Position_dropdown-white .free-location_label.small-caret,
.contract_dropdown-white .location_label.small-caret,
.contract_dropdown-white .enquiry_label.small-caret,
.contract_dropdown-white .contract_label.small-caret,
.contract_dropdown-white .Reason_label.small-caret,
.contract_dropdown-white .membership_label.small-caret,
.contract_dropdown-white .reason_label.small-caret,
.contract_dropdown-white .Position_label.small-caret,
.contract_dropdown-white .free-location_label.small-caret,
.reason_dropdown-white .location_label.small-caret,
.reason_dropdown-white .enquiry_label.small-caret,
.reason_dropdown-white .contract_label.small-caret,
.reason_dropdown-white .Reason_label.small-caret,
.reason_dropdown-white .membership_label.small-caret,
.reason_dropdown-white .reason_label.small-caret,
.reason_dropdown-white .Position_label.small-caret,
.reason_dropdown-white .free-location_label.small-caret,
.enquiry_dropdown-white .location_label.small-caret,
.enquiry_dropdown-white .enquiry_label.small-caret,
.enquiry_dropdown-white .contract_label.small-caret,
.enquiry_dropdown-white .Reason_label.small-caret,
.enquiry_dropdown-white .membership_label.small-caret,
.enquiry_dropdown-white .reason_label.small-caret,
.enquiry_dropdown-white .Position_label.small-caret,
.enquiry_dropdown-white .free-location_label.small-caret,
.free-location_dropdown-white .location_label.small-caret,
.free-location_dropdown-white .enquiry_label.small-caret,
.free-location_dropdown-white .contract_label.small-caret,
.free-location_dropdown-white .Reason_label.small-caret,
.free-location_dropdown-white .membership_label.small-caret,
.free-location_dropdown-white .reason_label.small-caret,
.free-location_dropdown-white .Position_label.small-caret,
.free-location_dropdown-white .free-location_label.small-caret {
    padding-right: 42px;
  }
}
@media (min-width: 768px) {
  .location_dropdown-white .location_label.small-caret::before,
.location_dropdown-white .enquiry_label.small-caret::before,
.location_dropdown-white .contract_label.small-caret::before,
.location_dropdown-white .Reason_label.small-caret::before,
.location_dropdown-white .membership_label.small-caret::before,
.location_dropdown-white .reason_label.small-caret::before,
.location_dropdown-white .Position_label.small-caret::before,
.location_dropdown-white .free-location_label.small-caret::before,
.membership_dropdown-white .location_label.small-caret::before,
.membership_dropdown-white .enquiry_label.small-caret::before,
.membership_dropdown-white .contract_label.small-caret::before,
.membership_dropdown-white .Reason_label.small-caret::before,
.membership_dropdown-white .membership_label.small-caret::before,
.membership_dropdown-white .reason_label.small-caret::before,
.membership_dropdown-white .Position_label.small-caret::before,
.membership_dropdown-white .free-location_label.small-caret::before,
.Reason_dropdown-white .location_label.small-caret::before,
.Reason_dropdown-white .enquiry_label.small-caret::before,
.Reason_dropdown-white .contract_label.small-caret::before,
.Reason_dropdown-white .Reason_label.small-caret::before,
.Reason_dropdown-white .membership_label.small-caret::before,
.Reason_dropdown-white .reason_label.small-caret::before,
.Reason_dropdown-white .Position_label.small-caret::before,
.Reason_dropdown-white .free-location_label.small-caret::before,
.Position_dropdown-white .location_label.small-caret::before,
.Position_dropdown-white .enquiry_label.small-caret::before,
.Position_dropdown-white .contract_label.small-caret::before,
.Position_dropdown-white .Reason_label.small-caret::before,
.Position_dropdown-white .membership_label.small-caret::before,
.Position_dropdown-white .reason_label.small-caret::before,
.Position_dropdown-white .Position_label.small-caret::before,
.Position_dropdown-white .free-location_label.small-caret::before,
.contract_dropdown-white .location_label.small-caret::before,
.contract_dropdown-white .enquiry_label.small-caret::before,
.contract_dropdown-white .contract_label.small-caret::before,
.contract_dropdown-white .Reason_label.small-caret::before,
.contract_dropdown-white .membership_label.small-caret::before,
.contract_dropdown-white .reason_label.small-caret::before,
.contract_dropdown-white .Position_label.small-caret::before,
.contract_dropdown-white .free-location_label.small-caret::before,
.reason_dropdown-white .location_label.small-caret::before,
.reason_dropdown-white .enquiry_label.small-caret::before,
.reason_dropdown-white .contract_label.small-caret::before,
.reason_dropdown-white .Reason_label.small-caret::before,
.reason_dropdown-white .membership_label.small-caret::before,
.reason_dropdown-white .reason_label.small-caret::before,
.reason_dropdown-white .Position_label.small-caret::before,
.reason_dropdown-white .free-location_label.small-caret::before,
.enquiry_dropdown-white .location_label.small-caret::before,
.enquiry_dropdown-white .enquiry_label.small-caret::before,
.enquiry_dropdown-white .contract_label.small-caret::before,
.enquiry_dropdown-white .Reason_label.small-caret::before,
.enquiry_dropdown-white .membership_label.small-caret::before,
.enquiry_dropdown-white .reason_label.small-caret::before,
.enquiry_dropdown-white .Position_label.small-caret::before,
.enquiry_dropdown-white .free-location_label.small-caret::before,
.free-location_dropdown-white .location_label.small-caret::before,
.free-location_dropdown-white .enquiry_label.small-caret::before,
.free-location_dropdown-white .contract_label.small-caret::before,
.free-location_dropdown-white .Reason_label.small-caret::before,
.free-location_dropdown-white .membership_label.small-caret::before,
.free-location_dropdown-white .reason_label.small-caret::before,
.free-location_dropdown-white .Position_label.small-caret::before,
.free-location_dropdown-white .free-location_label.small-caret::before {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 12px;
    right: 13px;
  }
}
.location_dropdown-white ul,
.membership_dropdown-white ul,
.Reason_dropdown-white ul,
.Position_dropdown-white ul,
.contract_dropdown-white ul,
.reason_dropdown-white ul,
.enquiry_dropdown-white ul,
.free-location_dropdown-white ul {
  background-color: #fff;
  border-radius: 0 0 24px 24px;
  display: none;
  left: 0;
  list-style: none;
  margin: 0 !important;
  overflow: hidden;
  padding: 15px 0;
  position: unset;
  top: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: 100%;
  z-index: 9;
}
.location_dropdown-white ul li,
.membership_dropdown-white ul li,
.Reason_dropdown-white ul li,
.Position_dropdown-white ul li,
.contract_dropdown-white ul li,
.reason_dropdown-white ul li,
.enquiry_dropdown-white ul li,
.free-location_dropdown-white ul li {
  border: 0;
  width: 100%;
}
.location_dropdown-white ul li a,
.membership_dropdown-white ul li a,
.Reason_dropdown-white ul li a,
.Position_dropdown-white ul li a,
.contract_dropdown-white ul li a,
.reason_dropdown-white ul li a,
.enquiry_dropdown-white ul li a,
.free-location_dropdown-white ul li a {
  color: #677f89;
  cursor: no-drop;
  display: inline-block;
  line-height: 24px;
  padding: 8px 20px;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.location_dropdown-white ul li a[href],
.membership_dropdown-white ul li a[href],
.Reason_dropdown-white ul li a[href],
.Position_dropdown-white ul li a[href],
.contract_dropdown-white ul li a[href],
.reason_dropdown-white ul li a[href],
.enquiry_dropdown-white ul li a[href],
.free-location_dropdown-white ul li a[href] {
  cursor: pointer;
  font-size: 16px;
  padding-bottom: 4px;
  padding-left: 30px;
  padding-top: 4px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.location_dropdown-white ul li a[href]:hover,
.membership_dropdown-white ul li a[href]:hover,
.Reason_dropdown-white ul li a[href]:hover,
.Position_dropdown-white ul li a[href]:hover,
.contract_dropdown-white ul li a[href]:hover,
.reason_dropdown-white ul li a[href]:hover,
.enquiry_dropdown-white ul li a[href]:hover,
.free-location_dropdown-white ul li a[href]:hover {
  background-color: #e2e2e2;
}

.membership_select-group {
  margin-left: auto;
  margin-right: auto;
  max-width: 1381px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
@media (max-width: 1400px) {
  .membership_select-group {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .membership_select-group {
    padding-left: 0;
    padding-right: 0;
  }
}
.membership_select-group .slick-list {
  width: 100%;
}
.membership_select-group .each-card {
  padding: 10px;
  width: 100% !important;
}
@media (max-width: 767px) {
  .membership_select-group .each-card {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .membership_select-group .each-card:last-child {
    margin-bottom: 0;
  }
}
.membership_select-group .each-card .product {
  margin-bottom: 0;
}
.membership_select-group .each-card .product__body {
  text-align: left;
}
.membership_select-group .each-card .product__body img {
  margin-left: 0;
}
.membership_select-group ul.slick-dots {
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.membership_select-group ul.slick-dots li button::before {
  background-color: #022a3a;
}
.membership_select-group .slick-arrow {
  border: 2px solid #022a3a;
  border-radius: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 50px;
}
@media (max-width: 1199px) {
  .membership_select-group .slick-arrow {
    height: 40px;
    width: 40px;
  }
}
.membership_select-group .slick-arrow:hover {
  background-color: #022a3a;
}
.membership_select-group .slick-arrow:hover.slick-next::before {
  background-image: url("../../../build/img/rightarrow-hover.png");
}
.membership_select-group .slick-arrow:hover.slick-prev::before {
  background-image: url("../../../build/img/left-arrow-hover.png");
}
@media (max-width: 1199px) {
  .membership_select-group .slick-arrow.slick-next {
    right: -42px;
  }
}
.membership_select-group .slick-arrow.slick-next::before {
  background-image: url("../../../build/img/right-arrow.png");
  background-position: right center;
  background-size: contain;
  font-size: 27px;
  margin-right: 5px;
  opacity: 1;
}
@media (max-width: 1199px) {
  .membership_select-group .slick-arrow.slick-next::before {
    font-size: 21px;
  }
}
@media (max-width: 1199px) {
  .membership_select-group .slick-arrow.slick-prev {
    left: -42px;
  }
}
.membership_select-group .slick-arrow.slick-prev::before {
  background-image: url("../../../build/img/left-arrow.png");
  background-position: left center;
  background-size: contain;
  font-size: 27px;
  margin-left: 5px;
  opacity: 1;
}
@media (max-width: 1199px) {
  .membership_select-group .slick-arrow.slick-prev::before {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .gym-membership_select .o-wrapper {
    padding-left: 21px;
    padding-right: 21px;
  }
}

.gym-join-overlay {
  backdrop-filter: blur(10px);
  background-color: #031e39cc;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  visibility: hidden;
  width: 100%;
  z-index: 10000;
}
.gym-join-overlay.show {
  opacity: 1;
  visibility: visible;
}

.gym-join-popup {
  background-color: #022a3a;
  bottom: 0;
  min-height: calc(100vh - 180px);
  padding: 0 0 15px;
  width: 100%;
}
@media (max-width: 991px) {
  .gym-join-popup {
    min-height: calc(100vh - 180px);
  }
}
.gym-join-popup .in {
  width: 100%;
}
.gym-join-popup .close-gym-join {
  background-color: #031e39;
  cursor: pointer;
  height: 45px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 49px;
  width: 45px;
  z-index: 10;
}
@media (max-width: 1440px) {
  .gym-join-popup .close-gym-join {
    height: 34px;
    right: 15px;
    top: 31px;
    width: 35px;
  }
}
@media (max-width: 1199px) {
  .gym-join-popup .close-gym-join {
    top: 28px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .close-gym-join {
    top: 16px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .close-gym-join {
    right: 9px;
    top: 12px;
  }
}
.gym-join-popup .close-gym-join::before, .gym-join-popup .close-gym-join::after {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 40px;
  width: 4px;
}
@media (max-width: 1440px) {
  .gym-join-popup .close-gym-join::before, .gym-join-popup .close-gym-join::after {
    height: 33px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .close-gym-join::before, .gym-join-popup .close-gym-join::after {
    height: 30px;
    width: 3px;
  }
}
.gym-join-popup .close-gym-join::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gym-join-popup .close-gym-join::after {
  margin-left: -4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .gym-join-popup .close-gym-join::after {
    margin-left: -3px;
  }
}
.gym-join-popup h2 {
  background-color: #031e39;
  color: #fff;
  font-size: 40px;
  margin: 0;
  padding: 50px 100px 44px 37px;
  width: 100%;
}
@media (max-width: 1440px) {
  .gym-join-popup h2 {
    font-size: 36px;
    padding: 30px 80px 25px 20px;
  }
}
@media (max-width: 1199px) {
  .gym-join-popup h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup h2 {
    font-size: 25px;
    padding: 20px 80px 16px 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup h2 {
    font-size: 22px;
    padding: 15px 50px 13px 20px;
  }
}
.gym-join-popup h2 span {
  color: #f3cd00;
}
.gym-join-popup .gym-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.gym-join-popup .gym-content .top-title {
  width: 100%;
}
.gym-join-popup .gym-content .top-title h3 {
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .gym-join-popup .gym-content .top-title h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .gym-join-popup .gym-content .top-title h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .gym-content .top-title h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.gym-join-popup .join-progress-wrap {
  width: 100%;
}
.gym-join-popup .location_step {
  width: 100%;
}
.gym-join-popup .join-progress {
  margin-left: auto;
  margin-right: auto;
  max-width: 876px;
  width: 100%;
}
.gym-join-popup .join-progress .join-progress__track:first-child::before, .gym-join-popup .join-progress .join-progress__track:last-child::before {
  background: #ededed;
}
.gym-join-popup .join-progress-contents {
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto;
    max-width: 650px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step {
  float: left;
  padding-right: 30px;
  width: 55%;
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step {
    padding-right: 0;
    width: 100%;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left {
  padding: 20px 0 10px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left {
    padding-top: 14px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left:last-child {
  padding-bottom: 0;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .iframe_wraps {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .iframe_wraps {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .iframe_wraps {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}
@media (max-width: 521px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .iframe_wraps {
    margin-left: -6px;
    width: calc(100% + 12px);
  }
}
@media (max-width: 461px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .iframe_wraps {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 461px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe {
    display: block;
    float: none;
    margin-left: -6px;
    margin-right: -6px;
    width: auto;
  }
}
@media (max-width: 449px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe {
    margin-left: -3px;
    margin-right: -3px;
  }
}
@media (max-width: 431px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe {
    margin-left: -12px;
    margin-right: -13px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  min-height: 314px;
  width: 100% !important;
}
@media (max-width: 431px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe iframe {
    min-height: 308px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 417px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe iframe {
    min-height: 323px;
  }
}
@media (max-width: 399px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe iframe {
    min-height: 310px;
  }
}
@media (max-width: 386px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe iframe {
    min-height: 324px;
  }
}
@media (max-width: 417px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .each-pay-method iframe {
    min-height: 323px;
  }
}
@media (max-width: 386px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .each-pay-method iframe {
    min-height: 324px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .each-pay-method .iframe-images img {
    max-height: 45px;
    max-width: 80px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .iframe-images {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .iframe-images img {
  height: auto;
  margin: 10px;
  max-height: 60px;
  max-width: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step .left-iframe .iframe-images img {
    max-height: 50px;
    max-width: 100px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .right-summary {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 45%;
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .right-summary {
    width: 100%;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .right-summary .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .right-summary .right .pay-layout {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px #0000001a;
          box-shadow: 0 0 10px #0000001a;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-bottom: 15px;
  padding: 20px 25px;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in {
    padding: 20px 15px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in:last-child {
  margin-bottom: 0;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in.disabled {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in.step-1 {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .stp-in.step-1 .joinaccrod-title h3 {
    width: 100%;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title h3 {
  float: left;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  padding-right: 30px;
  width: calc(100% - 110px);
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title h3 {
    font-size: 18px;
    width: calc(100% - 70px);
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title button {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  background-color: #fff;
  border: 1px solid #022a3a;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 5px 20px;
  position: relative;
  text-transform: capitalize;
  width: 110px;
  z-index: 1;
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title button {
    width: 70px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title button.hide {
  display: none;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-title button:hover {
  background-color: #032a3b;
  color: #fff;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .joinaccrod-tab {
  display: none;
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .step-buttons,
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .gift-step-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .step-buttons.w-100,
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .gift-step-buttons.w-100 {
  width: 100%;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .step-buttons.justify-content-end,
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .gift-step-buttons.justify-content-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .locat-twocol > .o-layout__item {
  width: 50% !important;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .locat-twocol > .o-layout__item.text-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .pay-title {
  padding-bottom: 10px;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .pay-title h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .pay-title h3 {
    font-size: 18px;
  }
}
@media (min-width: 481px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field {
    margin-bottom: 5px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
  border-radius: 26px;
  font-weight: 500;
  padding: 15px;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
    padding-bottom: 6px;
    padding-top: 6px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input::-webkit-input-placeholder {
  font-weight: inherit;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input::-moz-placeholder {
  font-weight: inherit;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input::-ms-input-placeholder {
  font-weight: inherit;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input::placeholder {
  font-weight: inherit;
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
  font-weight: 500;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
    padding-bottom: 6px;
    padding-top: 6px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
  padding-right: 36px;
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    padding-right: 32px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field .iti--allow-dropdown input.form-control {
  text-indent: 13px;
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field .iti--allow-dropdown input.form-control {
    text-indent: 11px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field .iti--allow-dropdown input.form-control {
    text-indent: 8px;
  }
}
.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field .iti--separate-dial-code input {
  text-indent: 8px;
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field .iti--separate-dial-code input {
    text-indent: 3px;
  }
}
.gym-join-popup .join-progress-contents .joinform-step {
  width: 100%;
}
.gym-join-popup .join-progress-contents .joinform-step .stp-in {
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents .joinform-step .stp-in.step-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.gym-join-popup .join-progress-contents .joinform-step .left {
  float: left;
  padding: 0 76px 0 22px;
  width: 55%;
}
@media (max-width: 1440px) {
  .gym-join-popup .join-progress-contents .joinform-step .left {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents .joinform-step .left {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents .joinform-step .left {
    padding-right: 0;
    width: 100%;
  }
}
.gym-join-popup .join-progress-contents .joinform-step .right {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px #0000001a;
          box-shadow: 0 0 10px #0000001a;
  float: left;
  padding: 20px 25px;
  width: 45%;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents .joinform-step .right {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents .joinform-step .right {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents .joinform-step .right {
    padding: 20px 15px;
  }
}
@media (max-width: 520px) {
  .gym-join-popup .join-progress-contents .joinform-step .right .pay-layout .o-layout__item {
    padding-bottom: 0;
  }
}
.gym-join-popup .join-progress-contents .joinform-step .left-iframe {
  float: left;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}
.gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  text-align: left;
  text-transform: capitalize;
}
@media (max-width: 461px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 449px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title {
    padding-left: 3px;
    padding-right: 3px;
  }
}
@media (max-width: 431px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title {
    padding-left: 12px;
    padding-right: 13px;
  }
}
@media (max-width: 360px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title {
    font-size: 14px;
  }
}
.gym-join-popup .join-progress-contents .joinform-step .left-iframe .method-title[style="display: none;"] + .pay-method-group {
  margin-top: 20px;
}
.gym-join-popup .join-progress-contents .joinform-step .left-iframe iframe {
  border: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  max-width: 992px;
  min-height: 315px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe iframe {
    max-width: 790px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe iframe {
    min-height: 557px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe iframe {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .join-progress-contents .joinform-step .left-iframe iframe {
    min-height: 570px;
  }
}
.gym-join-popup .form-div {
  width: 100%;
}
.gym-join-popup .form-div .form-title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .form-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .form-div .form-title {
    margin-bottom: 20px;
  }
}
.gym-join-popup .form-div .form-title:last-child {
  margin-bottom: 0;
}
.gym-join-popup .form-div .form-title h3 {
  margin: 0;
}
@media (max-width: 767px) {
  .gym-join-popup .form-div .form-title h3 {
    font-size: 20px;
  }
}
.gym-join-popup .form-div .fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 10px;
  margin-left: -7px;
  margin-right: -7px;
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset {
    margin: 0 -5px 0 -5px;
  }
}
.gym-join-popup .form-div .fieldset.field-2 .hs-field {
  width: 50%;
}
@media (max-width: 399px) {
  .gym-join-popup .form-div .fieldset.field-2 .hs-field.ui.calendar {
    width: 58%;
  }
}
@media (max-width: 399px) {
  .gym-join-popup .form-div .fieldset.field-2 .hs-field.ui.calendar + .hs-field {
    width: 42%;
  }
}
@media (max-width: 1199px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:nth-child(2) {
    width: calc(100% - 280px);
  }
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:nth-child(2) {
    width: calc(100% - 300px);
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:nth-child(2) {
    width: calc(100% - 270px);
  }
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:nth-child(2) {
    width: calc(100% - 150px) !important;
  }
}
@media (max-width: 360px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:nth-child(2) {
    width: 100% !important;
  }
}
.gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:last-child {
  width: calc(50% - 150px);
}
@media (max-width: 1199px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:last-child {
    width: 130px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:last-child {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:last-child {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.field-3.phone-country.gender-third .hs-field:last-child {
    width: 100%;
  }
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field {
  width: 50%;
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.field-3 .hs-field {
    width: 100%;
  }
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field .gender-select {
  position: relative;
  z-index: 1;
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field .gender-select::before {
  background-image: url("../../../../../../build/img/down-select.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 52px;
  margin: 0;
  position: absolute;
  right: 8px;
  top: 0;
  width: 12px;
  z-index: -1;
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field .active-gender.gender-select {
  position: relative;
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field .active-gender.gender-select::before {
  -webkit-transform: rotate(-180deg) !important;
      -ms-transform: rotate(-180deg) !important;
          transform: rotate(-180deg) !important;
}
.gym-join-popup .form-div .fieldset.field-3 .hs-field-2 {
  padding-left: 5px;
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.field-3 .hs-field-2 {
    padding-left: 10px;
    width: 100% !important;
  }
}
.gym-join-popup .form-div .fieldset.phone-country .hs-field:first-child {
  width: 150px;
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.phone-country .hs-field:first-child {
    width: 100%;
  }
}
.gym-join-popup .form-div .fieldset.phone-country .hs-field:last-child {
  width: calc(100% - 150px);
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset.phone-country .hs-field:last-child {
    width: 100%;
  }
}
.gym-join-popup .form-div .fieldset .hs-field {
  float: left;
  margin-bottom: 10px;
  padding-left: 7px;
  padding-right: 7px;
  width: 100%;
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset .hs-field {
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .input {
  width: 100%;
}
.gym-join-popup .form-div .fieldset .hs-field .input.ui {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-style: normal;
  font-weight: normal;
  position: relative;
}
.gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon {
  border-radius: 0 0.28571429rem 0.28571429rem 0;
  height: 100%;
  line-height: 1;
  margin: 0;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 2.67142857em;
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon {
    right: 2px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon::before {
  background-image: url("/build/img/calendar2.png") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 16px auto !important;
  content: " ";
  display: inline-block;
  height: 100%;
  margin-top: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon::before {
    background-size: 13px auto !important;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
  background-color: #fff;
  color: #f00;
  display: block;
  font-size: 12px;
  font-weight: 500;
  left: 14px;
  letter-spacing: 0;
  line-height: 15px;
  margin: -6px 0 0;
  padding: 0 3px;
  position: relative;
  top: -50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}
@media (max-width: 1199px) {
  .gym-join-popup .form-div .fieldset .hs-field .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
    top: -46px;
  }
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset .hs-field .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
    top: -44px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
    top: -34px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .form-div .fieldset .hs-field .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
    left: 9px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .gender-select .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .gender-select .custom-phone-validation {
  z-index: 2;
}
.gym-join-popup .form-div .fieldset .hs-field .custom-phone-validation {
  display: none;
}
.gym-join-popup .form-div .fieldset .hs-field input,
.gym-join-popup .form-div .fieldset .hs-field select,
.gym-join-popup .form-div .fieldset .hs-field textarea {
  background-color: transparent;
  border: 2px solid #032a3b;
  border-radius: 26px;
  color: #032a3b;
  height: auto;
  line-height: 14px;
  margin: 0;
  padding: 15px;
  width: 100%;
}
.gym-join-popup .form-div .fieldset .hs-field select {
  padding-right: 28px;
}
.gym-join-popup .form-div .fieldset .hs-field select:focus {
  outline: none;
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code .iti__selected-flag {
  background-color: #fff;
  border-radius: 26px;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code .iti__selected-flag {
    margin-left: 4px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code .iti__selected-flag {
    margin-left: 2px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 13px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__flag-container {
  top: 5px;
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__flag-container {
    top: 4px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__flag-container {
    top: 2px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__selected-flag {
  border: 1px solid #022a3a;
  border-radius: 96px;
  height: 38px;
  padding: 0 11px;
}
@media (max-width: 1199px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__selected-flag {
    height: 34px;
  }
}
@media (max-width: 575px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__selected-flag {
    height: 28px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__arrow {
  background: transparent;
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  height: 7px;
  margin-left: 6px;
  width: 12px;
}
@media (max-width: 991px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__arrow {
    height: 6px;
    width: 11px;
  }
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .iti__arrow--up {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.gym-join-popup .form-div .fieldset .hs-field .hs-input .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .hs-input .custom-phone-validation {
  margin-top: -10px;
}
@media (max-width: 1199px) {
  .gym-join-popup .form-div .fieldset .hs-field .hs-input .field-validation-error,
.gym-join-popup .form-div .fieldset .hs-field .hs-input .custom-phone-validation {
    margin-top: -7px;
  }
}
.gym-join-popup .have-promo {
  margin-top: 13px;
  width: 100%;
}
@media (max-width: 767px) {
  .gym-join-popup .have-promo {
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .have-promo {
    margin-top: 2px;
  }
}
.gym-join-popup .have-promo h3 {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  margin-right: 20px;
  text-transform: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .gym-join-popup .have-promo h3 {
    font-size: 16px;
  }
}
.gym-join-popup .have-promo .Code-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .Code-wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.gym-join-popup .have-promo .Code-wrap span {
  display: table;
  float: right;
  height: 20px;
  width: 20px;
}
.gym-join-popup .have-promo .Code-wrap span img {
  max-height: 20px;
  max-width: 20px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .gym-join-popup .have-promo .Code-wrap span img {
    max-height: 17px;
    max-width: 17px;
  }
}
.gym-join-popup .have-promo.toggle-promocode .Code-wrap span img {
  -webkit-transform: rotate(-270deg);
      -ms-transform: rotate(-270deg);
          transform: rotate(-270deg);
}
.gym-join-popup .have-promo .promocode--div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 17px 0 23px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .have-promo .promocode--div {
    margin: 8px 0 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .have-promo .promocode--div {
    margin: 8px 0 18px;
  }
}
.gym-join-popup .have-promo .promocode--div .textbox {
  float: left;
  padding: 0;
  width: calc(100% - 151px);
}
@media (max-width: 575px) {
  .gym-join-popup .have-promo .promocode--div .textbox {
    width: calc(100% - 132px);
  }
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .promocode--div .textbox {
    width: 100%;
  }
}
.gym-join-popup .have-promo .promocode--div .textbox input {
  background-color: #022a3a;
  border: 0;
  border-radius: 26px 0 0 26px;
  color: #fff;
  line-height: 19px;
  padding: 14px 15px;
  width: 100%;
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .promocode--div .textbox input {
    border-radius: 26px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .have-promo .promocode--div .textbox input {
    height: 44px;
    line-height: 18px;
    max-height: 44px;
    padding: 13px 15px;
  }
}
.gym-join-popup .have-promo .promocode--div .textbox input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.gym-join-popup .have-promo .promocode--div .textbox input::-webkit-input-placeholder {
  color: #fff;
}
.gym-join-popup .have-promo .promocode--div .textbox input::-moz-placeholder {
  color: #fff;
}
.gym-join-popup .have-promo .promocode--div .textbox input::-ms-input-placeholder {
  color: #fff;
}
.gym-join-popup .have-promo .promocode--div .textbox input::placeholder {
  color: #fff;
}
@media (min-width: 521px) {
  .gym-join-popup .have-promo .promocode--div .messagerow.mobi {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .promocode--div .messagerow.desk {
    display: none !important;
  }
}
.gym-join-popup .have-promo .promocode--div .error {
  color: red;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 5px;
  width: 100%;
}
.gym-join-popup .have-promo .promocode--div .btn-submit {
  float: left;
  padding: 0;
  width: 151px;
}
@media (max-width: 575px) {
  .gym-join-popup .have-promo .promocode--div .btn-submit {
    width: 130px;
  }
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .promocode--div .btn-submit {
    margin-top: 9px;
    width: 100%;
  }
}
.gym-join-popup .have-promo .promocode--div .btn-submit input {
  border: 1px solid #f4cd00;
  border-radius: 0 26px 26px 0;
  height: auto;
  line-height: 13px;
  padding: 17px 20px 15px;
  width: 100%;
}
@media (max-width: 520px) {
  .gym-join-popup .have-promo .promocode--div .btn-submit input {
    border-radius: 26px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .have-promo .promocode--div .btn-submit input {
    height: 44px;
    line-height: 12px;
    max-height: 44px;
    padding: 16px 20px 14px;
  }
}
.gym-join-popup .have-promo .promocode--div .success-promocode {
  border: 1px dotted #022a3a;
  color: #008000;
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 19px;
  padding: 13px 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .have-promo .promocode--div .success-promocode {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.gym-join-popup .have-promo .promocode--div .successpromo-btn {
  background-color: #022a3a;
  border: 1px solid #022a3a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  height: auto;
  line-height: 13px;
  padding: 17px 25px 15px 10px;
  position: relative;
  width: 100%;
}
.gym-join-popup .have-promo .promocode--div .successpromo-btn a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  z-index: 1;
}
.gym-join-popup .accept-check-group {
  margin-bottom: 10px;
  margin-top: 15px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .accept-check-group {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .accept-check-group {
    margin-top: 14px;
  }
}
.gym-join-popup .accept-check-group:last-child {
  margin-bottom: 0;
}
.gym-join-popup .site-footer__payment {
  line-height: 0;
  margin-top: 35px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .gym-join-popup .site-footer__payment {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .site-footer__payment {
    margin-top: 14px;
  }
}
.gym-join-popup .site-footer__payment img {
  display: inline-block;
  height: auto;
  margin: 5px;
  max-height: 65px;
  vertical-align: middle;
  width: auto;
}
.gym-join-popup .bottom-text {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  letter-spacing: 0.8px;
  padding: 0;
}
@media (max-width: 991px) {
  .gym-join-popup .bottom-text {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .bottom-text {
    margin-top: 10px;
  }
}
.gym-join-popup .step-buttons,
.gym-join-popup .gift-step-buttons {
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .gym-join-popup .step-buttons,
.gym-join-popup .gift-step-buttons {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .gym-join-popup .step-buttons,
.gym-join-popup .gift-step-buttons {
    margin-top: 20px;
  }
}
.gym-join-popup .step-buttons .step-btn,
.gym-join-popup .step-buttons .gift-step-btn,
.gym-join-popup .gift-step-buttons .step-btn,
.gym-join-popup .gift-step-buttons .gift-step-btn {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 26px;
  color: #032a3b;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  min-width: 150px;
  padding: 13px 20px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: auto;
}
@media (max-width: 767px) {
  .gym-join-popup .step-buttons .step-btn,
.gym-join-popup .step-buttons .gift-step-btn,
.gym-join-popup .gift-step-buttons .step-btn,
.gym-join-popup .gift-step-buttons .gift-step-btn {
    min-width: 120px;
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .gym-join-popup .step-buttons .step-btn,
.gym-join-popup .step-buttons .gift-step-btn,
.gym-join-popup .gift-step-buttons .step-btn,
.gym-join-popup .gift-step-buttons .gift-step-btn {
    min-width: 120px;
    padding: 11px 20px;
  }
}
.gym-join-popup .step-buttons .step-btn:hover,
.gym-join-popup .step-buttons .gift-step-btn:hover,
.gym-join-popup .gift-step-buttons .step-btn:hover,
.gym-join-popup .gift-step-buttons .gift-step-btn:hover {
  background-color: #032a3b;
  color: #fff;
}
.gym-join-popup .step-buttons .step-btn:disabled,
.gym-join-popup .step-buttons .gift-step-btn:disabled,
.gym-join-popup .gift-step-buttons .step-btn:disabled,
.gym-join-popup .gift-step-buttons .gift-step-btn:disabled {
  background-color: #ccc;
  border-color: #999;
  color: #666;
  cursor: not-allowed;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.gym-join-popup .joining-date {
  margin-top: 15px;
  width: 100%;
}
.gym-join-popup .joining-date:first-child {
  margin-top: 0;
}
.gym-join-popup .joining-date .fieldset {
  margin-bottom: 10px;
}
.gym-join-popup .joining-date .fieldset:last-child {
  margin-bottom: 0;
}
.gym-join-popup .joining-date .fieldset .hs-field {
  margin-bottom: 5px;
}
.gym-join-popup .joining-date .fieldset .input label {
  display: block;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.gym-join-popup .joining-date .fieldset .input input {
  background: transparent;
  border: 2px solid #032a3b;
  border-radius: 0;
  color: #032a3b;
  font-family: "Montserrat", sans-serif;
  height: 52px;
  margin: 0;
  padding: 17px 15px 14px;
  width: 100%;
}
@media (max-width: 1199px) {
  .gym-join-popup .joining-date .fieldset .input input {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}

.accept-check-group .accept-check-box {
  line-height: 0;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.accept-check-group .accept-check-box .field-validation-error,
.accept-check-group .accept-check-box .custom-phone-validation {
  color: #f00;
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
  padding-left: 30px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .accept-check-group .accept-check-box .field-validation-error,
.accept-check-group .accept-check-box .custom-phone-validation {
    padding-left: 28px;
  }
}
.accept-check-group .accept-check-box .custom-phone-validation {
  display: none;
}
.accept-check-group .accept-check-box:last-child {
  margin-bottom: 0;
}
.accept-check-group .accept-check-box input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.accept-check-group .accept-check-box input:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.accept-check-group .accept-check-box input:checked + label::before {
  background-color: #022a3a;
}
.accept-check-group .accept-check-box label {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  padding-left: 31px;
  width: 100%;
}
@media (max-width: 767px) {
  .accept-check-group .accept-check-box label {
    padding-left: 28px;
  }
}
.accept-check-group .accept-check-box label::before, .accept-check-group .accept-check-box label::after {
  content: "";
  display: inline-block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 20px;
}
@media (max-width: 767px) {
  .accept-check-group .accept-check-box label::before, .accept-check-group .accept-check-box label::after {
    height: 18px;
    width: 18px;
  }
}
.accept-check-group .accept-check-box label::before {
  border: 2px solid #022a3a;
  border-radius: 100%;
}
.accept-check-group .accept-check-box label::after {
  background-image: url("../../../build/img/check-sign.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 55% auto;
  opacity: 0;
  visibility: hidden;
}
.accept-check-group .accept-check-box label a {
  color: #0000fe;
  position: relative;
  z-index: 1;
}

.pay-layout hr {
  border-top: 2px solid #2a4b5a;
  margin-bottom: 13px;
}
.pay-layout .pay-title {
  margin-bottom: 10px;
}
.pay-layout .pay-title:last-child {
  margin-bottom: 0;
}
.pay-layout .pay-title h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
@media (max-width: 1199px) {
  .pay-layout .pay-title h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .pay-layout .pay-title h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pay-layout .selected-location h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .pay-layout .o-layout__item {
    font-size: 13px;
    letter-spacing: 0;
  }
}
@media (min-width: 1300px) {
  .pay-layout .o-layout__item:nth-child(2) {
    width: 28.33333% !important;
  }
}
@media (min-width: 1300px) {
  .pay-layout .o-layout__item.u-width-2\/3 {
    width: 71.66667% !important;
  }
}

.bil-table .b-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .bil-table .b-row {
    border-bottom: 1px solid #74888f;
  }
}
@media (max-width: 480px) {
  .bil-table .b-row:last-child {
    border-bottom: 0;
  }
}
.bil-table .b-row .b-col {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}
@media (max-width: 480px) {
  .bil-table .b-row .b-col {
    font-size: 14px;
    letter-spacing: 0;
    width: 50%;
  }
}
.bil-table .b-row .b-col.titles {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

select#startdatecal {
  background-color: transparent;
  border: 2px solid #032a3b;
  color: #032a3b;
  height: auto;
  margin: 0;
  padding: 15px;
  width: 100%;
}

.pay-method-group {
  min-height: 220px;
  width: 100%;
}
@media (max-width: 991px) {
  .pay-method-group {
    min-height: auto;
  }
}
@media (max-width: 461px) {
  .pay-method-group {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 449px) {
  .pay-method-group {
    padding-left: 3px;
    padding-right: 3px;
  }
}
@media (max-width: 431px) {
  .pay-method-group {
    padding-left: 12px;
    padding-right: 13px;
  }
}

.each-pay-method {
  margin-bottom: 10px;
  width: 100%;
}
.each-pay-method:last-child {
  margin-bottom: 0;
}
.each-pay-method .pay-method-btn {
  background-color: #fff;
  border: 1px solid #022a3a;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
  padding: 8px 15px 8px 44px;
  position: relative;
  text-align: left;
  text-transform: capitalize;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  z-index: 1;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    padding-left: 38px;
    padding-top: 10px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn {
    font-size: 14.5px;
    padding-bottom: 9px;
    padding-left: 32px;
    padding-top: 11px;
  }
}
.each-pay-method .pay-method-btn::before, .each-pay-method .pay-method-btn::after {
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.each-pay-method .pay-method-btn::before {
  border: 1px solid #022a3a;
  height: 18px;
  left: 15px;
  width: 18px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn::before {
    height: 16px;
    left: 12px;
    width: 16px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn::before {
    height: 14px;
    left: 10px;
    width: 14px;
  }
}
.each-pay-method .pay-method-btn::after {
  background-color: #022a3a;
  height: 10px;
  left: 19px;
  -webkit-transform: scaleX(0) translateY(-50%);
      -ms-transform: scaleX(0) translateY(-50%);
          transform: scaleX(0) translateY(-50%);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  width: 10px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn::after {
    height: 8px;
    left: 16px;
    width: 8px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn::after {
    left: 13px;
  }
}
.each-pay-method .pay-method-btn.active {
  background-color: #f4cd00;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.each-pay-method .pay-method-btn.active::after {
  -webkit-transform: scaleX(1) translateY(-50%);
      -ms-transform: scaleX(1) translateY(-50%);
          transform: scaleX(1) translateY(-50%);
}
.each-pay-method .pay-method-btn.credit-option {
  padding-right: 128px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn.credit-option {
    padding-right: 100px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn.credit-option {
    padding-right: 80px;
  }
}
.each-pay-method .pay-method-btn.credit-option img {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
}
.each-pay-method .pay-method-btn.credit-option img.visa-icon {
  height: 18px;
  right: 58px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn.credit-option img.visa-icon {
    height: 15px;
    right: 46px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn.credit-option img.visa-icon {
    height: 11px;
    right: 37px;
  }
}
.each-pay-method .pay-method-btn.credit-option img.mastercard-icon {
  height: 22px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn.credit-option img.mastercard-icon {
    height: 18px;
    right: 12px;
  }
}
@media (max-width: 360px) {
  .each-pay-method .pay-method-btn.credit-option img.mastercard-icon {
    height: 15px;
    right: 10px;
  }
}
.each-pay-method .pay-method-btn.apple-option {
  padding-right: 74px;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn.apple-option {
    padding-right: 64px;
  }
}
.each-pay-method .pay-method-btn.apple-option .applepay-icon {
  display: inline-block;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-btn.apple-option .applepay-icon {
    height: 18px;
    right: 12px;
  }
}
.each-pay-method .pay-method-contain {
  border: 1px solid #022a3a;
  border-radius: 0 0 12px 12px;
  border-top: 0;
  display: none;
  padding: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .each-pay-method .pay-method-contain {
    padding: 26px 24px;
  }
}
@media (max-width: 575px) {
  .each-pay-method .pay-method-contain {
    padding: 24px 15px;
  }
}
.each-pay-method .pay-method-contain .pay-iframe-wrap {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 1141px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -6px;
    margin-right: -6px;
  }
}
@media (max-width: 1010px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -3px;
    margin-right: -3px;
  }
}
@media (max-width: 991px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 571px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -5px;
    margin-right: -5px;
  }
}
@media (max-width: 501px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -6px;
    margin-right: -6px;
  }
}
@media (max-width: 481px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -3px;
    margin-right: -3px;
  }
}
@media (max-width: 431px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-left: -13px;
    margin-right: -13px;
  }
}
@media (max-width: 386px) {
  .each-pay-method .pay-method-contain .pay-iframe-wrap {
    margin-right: -11px;
  }
}
.each-pay-method .pay-method-contain .iframe-images {
  margin-bottom: -10px;
}

.header-site .logo-wrap .site-header__logo img {
  margin-top: 0;
}

.page-title-room {
  height: 180px;
  min-height: 180px;
}
@media (max-width: 1023px) {
  .page-title-room {
    height: 150px;
    min-height: 150px;
  }
}
@media (max-width: 719px) {
  .page-title-room {
    height: 120px;
    min-height: 120px;
  }
}

.header-medium-section {
  background-color: #022a3a;
  margin-bottom: -2px;
  padding: 40px 0 2px;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .header-medium-section {
    padding-top: 30px;
  }
}
.header-medium-section .header--logo {
  height: 98px;
}
@media (max-width: 991px) {
  .header-medium-section .header--logo {
    height: 72px;
  }
}
@media (max-width: 767px) {
  .header-medium-section .header--logo {
    height: 68px;
  }
}
@media (max-width: 575px) {
  .header-medium-section .header--logo {
    height: 64px;
  }
}

.waiting-section {
  background-color: #022a3a;
  overflow: hidden;
  padding: 50px 0 110px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media (max-width: 1640px) {
  .waiting-section {
    padding-bottom: 80px;
  }
}
@media (max-width: 1199px) {
  .waiting-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .waiting-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .waiting-section {
    padding-bottom: 45px;
    padding-top: 40px;
  }
}
@media (max-width: 575px) {
  .waiting-section {
    padding-bottom: 40px;
  }
}
.waiting-section::after {
  background-image: url("../img/room-bottom-shapes.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -24px;
  content: "";
  display: block;
  height: 240px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1640px) {
  .waiting-section::after {
    bottom: -12px;
    height: 130px;
  }
}
@media (max-width: 1199px) {
  .waiting-section::after {
    bottom: -8px;
    height: 100px;
  }
}
@media (max-width: 991px) {
  .waiting-section::after {
    bottom: -6px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .waiting-section::after {
    height: 44px;
  }
}
.waiting-section .logo-header {
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  padding: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .waiting-section .logo-header {
    margin-bottom: 32px;
  }
}
.waiting-section .logo-header.text-center {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .waiting-section .logo-header.text-center {
    padding-top: 10px;
  }
}
.waiting-section .logo-header.text-center .header--logo {
  margin: 0 auto;
}
.waiting-section .logo-header.text-center .language-switch {
  margin: 20px 0 0;
  text-align: center;
  width: 100%;
}
.waiting-section .logo-header.text-center .language-switch .lang-btn {
  margin: 0;
}
.waiting-section .logo-header .language-switch {
  margin: 0 auto;
}
@media (max-width: 480px) {
  .waiting-section .logo-header .language-switch {
    margin: 0 0 0 auto;
  }
}
.waiting-section .logo-header .language-switch .lang-btn {
  margin: 0 74px 0 0;
}
@media (max-width: 991px) {
  .waiting-section .logo-header .language-switch .lang-btn {
    margin-right: 48px;
  }
}
@media (max-width: 767px) {
  .waiting-section .logo-header .language-switch .lang-btn {
    margin-right: 44px;
  }
}
@media (max-width: 575px) {
  .waiting-section .logo-header .language-switch .lang-btn {
    margin-right: 72px;
  }
}
@media (max-width: 480px) {
  .waiting-section .logo-header .language-switch .lang-btn {
    margin-right: 0;
    margin-top: 65px;
  }
}
.waiting-section .header--logo {
  margin-left: -10px;
  margin-right: -10px;
  max-height: 98px;
}
@media (max-width: 991px) {
  .waiting-section .header--logo {
    margin-left: -15px;
    margin-right: -15px;
    max-height: 82px;
  }
}
@media (max-width: 767px) {
  .waiting-section .header--logo {
    max-height: 78px;
  }
}
@media (max-width: 575px) {
  .waiting-section .header--logo {
    margin-left: 0;
    margin-right: 0;
    max-height: 74px;
  }
}
.waiting-section .in {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin: 0 auto 74px;
  max-width: 100%;
  padding: 20px 30px 30px;
  position: relative;
  width: 1120px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .waiting-section .in {
    margin-bottom: 58px;
    margin-left: auto;
    margin-right: auto;
    width: 908px;
  }
}
@media (max-width: 991px) {
  .waiting-section .in {
    margin-bottom: 50px;
    padding-top: 15px;
    width: 726px;
  }
}
@media (max-width: 575px) {
  .waiting-section .in {
    margin-bottom: 35px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.waiting-section .in::before {
  background-image: url("../img/timer-bottom-shapes.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -73px;
  content: "";
  display: block;
  height: 74px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .waiting-section .in::before {
    bottom: -57px;
    height: 58px;
  }
}
@media (max-width: 991px) {
  .waiting-section .in::before {
    bottom: -50px;
    height: 51px;
  }
}
@media (max-width: 575px) {
  .waiting-section .in::before {
    bottom: -39px;
    height: 40px;
  }
}
.waiting-section h1 {
  color: #022a3a;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .waiting-section h1 {
    font-size: 34px;
  }
}
@media (max-width: 719px) {
  .waiting-section h1 {
    font-size: 28px;
  }
}
.waiting-section h2 {
  color: #022a3a;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .waiting-section h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .waiting-section h2 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 22px;
  }
}
.waiting-section h3 {
  color: #022a3a;
  font-size: 21px;
  line-height: 29px;
  margin-top: 0;
}
@media (max-width: 575px) {
  .waiting-section h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}
.waiting-section .time-date-wrap {
  width: 100%;
}
.waiting-section .time-date {
  background-color: #f9e67f;
  border-radius: 20px;
  color: #022a3a;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  padding: 10px 16px 9px;
  text-transform: uppercase;
  width: auto;
}
@media (max-width: 767px) {
  .waiting-section .time-date {
    padding: 10px 12px 9px;
  }
}
@media (max-width: 575px) {
  .waiting-section .time-date {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .waiting-section .time-date > span {
    display: block;
  }
}
.waiting-section .time-animation {
  display: inline-block;
  line-height: 0;
  margin-bottom: 34px;
  overflow: hidden;
  padding: 6px;
  position: relative;
}
@media (max-width: 991px) {
  .waiting-section .time-animation {
    margin-bottom: 24px;
    padding: 5px;
  }
}
@media (max-width: 575px) {
  .waiting-section .time-animation {
    margin-bottom: 20px;
    padding: 4px;
  }
}
.waiting-section .time-animation .border-anim {
  -webkit-animation: rotate-gradient 5s linear infinite;
          animation: rotate-gradient 5s linear infinite;
  bottom: -1px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
  -webkit-transform: scaleX(4);
      -ms-transform: scaleX(4);
          transform: scaleX(4);
  z-index: -1;
}
.waiting-section .btn-wrap {
  margin-bottom: 26px;
}
.waiting-section .share-link-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .waiting-section .share-link-wrap {
    margin-bottom: 32px;
  }
}
.waiting-section .share-link-wrap:last-child {
  margin-bottom: 0;
}
.waiting-section .share-link-wrap h3 {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-size: 21px;
  letter-spacing: 0;
  margin: 0 15px 0 0;
  text-transform: none;
}
@media (max-width: 991px) {
  .waiting-section .share-link-wrap h3 {
    margin-bottom: 12px;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .waiting-section .share-link-wrap h3 {
    font-size: 21px;
    line-height: 28px;
  }
}
@media (max-width: 435px) {
  .waiting-section .share-link-wrap h3 {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 365px) {
  .waiting-section .share-link-wrap h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 346px) {
  .waiting-section .share-link-wrap h3 {
    font-size: 14px;
    line-height: 22px;
  }
}
.waiting-section .copy-link-box h3 {
  margin: 0 6px 12px;
  width: 100%;
}
@media (max-width: 575px) {
  .waiting-section .copy-link-box h3 {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 489px) {
  .waiting-section .copy-link-box h3 {
    margin: 0 0 8px;
  }
}
.waiting-section .referwrap-box {
  background: transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 576px;
  padding: 0;
  width: 100%;
}
@media (max-width: 575px) {
  .waiting-section .referwrap-box {
    margin-left: 0;
    margin-right: 0;
  }
}
.waiting-section .referwrap-box form {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  background-color: transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 24px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .waiting-section .referwrap-box form {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .waiting-section .referwrap-box form {
    -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
  }
}
.waiting-section .referwrap-box form .referlink {
  border-radius: 24px 0 0 24px;
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 690px) {
  .waiting-section .referwrap-box form .referlink {
    font-size: 15px;
  }
}
@media (max-width: 485px) {
  .waiting-section .referwrap-box form .referlink {
    font-size: 13px;
  }
}
@media (max-width: 410px) {
  .waiting-section .referwrap-box form .referlink {
    font-size: 11px;
    height: 40px;
    max-height: 40px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 369px) {
  .waiting-section .referwrap-box form .referlink {
    font-size: 10px;
    height: 36px;
    max-height: 36px;
    padding-bottom: 7px;
    padding-top: 7px;
  }
}
.waiting-section .referwrap-box form button {
  border-radius: 0 24px 24px 0;
  font-weight: 400;
  height: 44px;
  letter-spacing: 0;
  max-height: 44px;
  padding-bottom: 10px;
  padding-top: 10px;
  white-space: nowrap;
  width: auto;
}
@media (max-width: 690px) {
  .waiting-section .referwrap-box form button {
    background-image: url("/build/svg/icons/copy-icon-white.svg");
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    font-size: 0;
    width: 44px;
  }
}
@media (max-width: 485px) {
  .waiting-section .referwrap-box form button {
    background-position: 7px center;
    background-size: 20px auto;
  }
}
@media (max-width: 410px) {
  .waiting-section .referwrap-box form button {
    height: 40px;
    max-height: 40px;
  }
}
@media (max-width: 369px) {
  .waiting-section .referwrap-box form button {
    background-size: 17px auto;
    height: 36px;
    max-height: 36px;
    width: 40px;
  }
}
.waiting-section .referwrap-box form button:hover {
  background-color: var(--secondary);
  color: var(--primary);
}
@media (max-width: 690px) {
  .waiting-section .referwrap-box form button:hover {
    background-image: url("/build/svg/icons/copy-icon-dark.svg");
  }
}
.waiting-section .referwrap-box form button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.waiting-section .referwrap-box .tooltiptext {
  background-color: #022a3a;
  border-radius: 6px;
  color: #fff;
  display: none;
  font-size: 15px;
  margin-top: 15px;
  min-width: 150px;
  padding: 5px;
}
.waiting-section .copy-link {
  width: 100%;
}
.waiting-section .invite {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-left: 6px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .waiting-section .invite {
    margin-left: 0;
    margin-top: 12px;
  }
}
@media (max-width: 575px) {
  .waiting-section .invite {
    margin-top: 16px;
  }
}
.waiting-section .each-accordian {
  text-align: left;
}
.waiting-section .fpanel {
  border-radius: 24px;
  padding: 0;
  text-align: left;
}
.waiting-section .fpanel.show {
  padding: 16px;
}

@-webkit-keyframes rotate-gradient {
  0% {
    -webkit-transform: scale(9, 4) rotate(0);
            transform: scale(9, 4) rotate(0);
  }
  50% {
    -webkit-transform: scale(9, 4) rotate(180deg);
            transform: scale(9, 4) rotate(180deg);
  }
  99.9999% {
    -webkit-transform: scale(9, 4) rotate(360deg);
            transform: scale(9, 4) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(9, 4) rotate(0);
            transform: scale(9, 4) rotate(0);
  }
}

@keyframes rotate-gradient {
  0% {
    -webkit-transform: scale(9, 4) rotate(0);
            transform: scale(9, 4) rotate(0);
  }
  50% {
    -webkit-transform: scale(9, 4) rotate(180deg);
            transform: scale(9, 4) rotate(180deg);
  }
  99.9999% {
    -webkit-transform: scale(9, 4) rotate(360deg);
            transform: scale(9, 4) rotate(360deg);
  }
  100% {
    -webkit-transform: scale(9, 4) rotate(0);
            transform: scale(9, 4) rotate(0);
  }
}
.time-btn {
  background-color: #f4cd00;
  border: 0;
  border-radius: 96px;
  color: #022a3a;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding: 11px 20px 11px 44px;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 991px) {
  .time-btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media (max-width: 767px) {
  .time-btn {
    text-align: center;
  }
}
.time-btn:hover {
  background-color: #021e38;
  color: #fff;
}
.time-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.time-btn.reminder-btn {
  font-size: 18px;
  line-height: 24px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .time-btn.reminder-btn {
    font-size: 19px;
    letter-spacing: 0.5px;
    line-height: 27px;
    padding-bottom: 15px;
    padding-top: 16px;
  }
}
.time-btn.reminder-btn img {
  bottom: auto;
  left: auto;
  margin-right: 6px;
  position: relative;
  top: -1px;
  vertical-align: top;
  width: 22px;
}
@media (min-width: 992px) {
  .time-btn.reminder-btn img {
    top: -2px;
    width: 27px;
  }
}
@media (max-width: 767px) {
  .time-btn.reminder-btn img {
    margin-right: 4px;
  }
}
.time-btn img {
  display: inline-block;
  left: 20px;
  position: absolute;
  top: 13px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  vertical-align: text-top;
  width: 16px;
}
@media (max-width: 991px) {
  .time-btn img {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.countdown-waiting {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .countdown-waiting {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .countdown-waiting {
    margin-bottom: 20px;
  }
}
.countdown-waiting ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.countdown-waiting ul li {
  background-color: #f4cd00;
  border-radius: 16px;
  color: #022a3a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 12px;
  min-width: 120px;
  padding: 15px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .countdown-waiting ul li {
    font-size: 12px;
    margin: 0 6px;
    min-width: 95px;
    padding: 15px 10px;
  }
}
@media (max-width: 575px) {
  .countdown-waiting ul li {
    border-radius: 10px;
    font-size: 11px;
    letter-spacing: 0;
    margin-left: 3px;
    margin-right: 3px;
    min-width: 70px;
    padding: 14px 6px 10px;
  }
}
@media (max-width: 421px) {
  .countdown-waiting ul li {
    font-size: 10px;
  }
}
@media (max-width: 374px) {
  .countdown-waiting ul li {
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    margin-left: 1px;
    margin-right: 0;
    min-width: 60px;
    padding: 12px 5px 8px;
  }
}
@media (max-width: 374px) {
  .countdown-waiting ul li:first-child {
    margin-left: 0;
  }
}
@media (max-width: 374px) {
  .countdown-waiting ul li:last-child {
    margin-right: 0;
  }
}
.countdown-waiting ul li span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .countdown-waiting ul li span {
    font-size: 40px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .countdown-waiting ul li span {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 22px;
    margin-bottom: 4px;
  }
}

.social-share {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-share li {
  margin-right: 10px;
}
.social-share li:last-child {
  margin-right: 0;
}
.social-share .social-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #022a3a;
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  padding: 8px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 50px;
}
@media (max-width: 991px) {
  .social-share .social-btn {
    height: 44px;
    width: 44px;
  }
}
@media (max-width: 767px) {
  .social-share .social-btn {
    height: 40px;
    width: 40px;
  }
}
.social-share .social-btn:hover {
  background-color: #f4cd00;
}
.social-share .social-btn:hover img {
  -webkit-filter: none;
          filter: none;
}
.social-share .social-btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  height: auto;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 22px;
}
@media (max-width: 991px) {
  .social-share .social-btn img {
    width: 16px;
  }
}

.faq-section {
  padding: 50px 0 60px;
}
@media (max-width: 991px) {
  .faq-section {
    padding-bottom: 40px;
  }
}
.faq-section .sec-in {
  margin: 0 auto;
  max-width: 100%;
  width: 1120px;
}
@media (max-width: 1199px) {
  .faq-section .sec-in {
    width: 908px;
  }
}
@media (max-width: 991px) {
  .faq-section .sec-in {
    width: 726px;
  }
}
.faq-section h2 {
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .faq-section h2 {
    font-size: 36px;
  }
}

.message-update {
  background-color: #f1f1f1;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px rgba(2, 42, 58, 0.2);
          box-shadow: 0 0 4px rgba(2, 42, 58, 0.2);
  display: inline-block;
  margin-bottom: 30px;
  padding: 20px 30px;
  text-align: center;
}
@media (max-width: 575px) {
  .message-update {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.message-update:last-child {
  margin-bottom: 0;
}
.message-update h4 {
  color: #022a3a;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .message-update h4 {
    font-size: 17px;
  }
}
.message-update p {
  color: #022a3a;
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: 24px;
  margin: 0 0 10px;
}
.message-update p:last-child {
  margin-bottom: 0;
}
.message-update .messages {
  width: 100%;
}

.visitor-count-box {
  background-color: #f4cd00;
  border: 0;
  border-radius: 150px 20px 150px 60px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  height: auto;
  left: auto;
  margin: 0;
  padding: 21px 50px 13px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: auto;
}
@media (max-width: 991px) {
  .visitor-count-box {
    padding: 21px 32px 13px;
  }
}
@media (max-width: 767px) {
  .visitor-count-box {
    padding: 16px 30px 13px;
  }
}
@media (max-width: 574px) {
  .visitor-count-box {
    padding: 13px 30px 10px;
  }
}
.visitor-count-box p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25px;
  line-height: 20px;
  margin: 10px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .visitor-count-box p {
    display: inline-block;
    margin-top: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 574px) {
  .visitor-count-box p {
    font-size: 11px;
    margin-top: 2px;
  }
}
.visitor-count-box .view-count-num {
  font-size: 34px;
  font-weight: 700;
  line-height: 26px;
}
@media (max-width: 991px) {
  .visitor-count-box .view-count-num {
    font-size: 30px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .visitor-count-box .view-count-num {
    font-size: 26px;
    line-height: 22px;
  }
}
@media (max-width: 574px) {
  .visitor-count-box .view-count-num {
    font-size: 22px;
    line-height: 20px;
  }
}

.location_dropdown-white.dropd-border ul::before {
  display: none !important;
}

.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .membership_dropdown-white.dropd-border .membership_label,
.hrx-new-form .membership_dropdown-white.dropd-border .reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .contract_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Position_label,
.hrx-new-form .membership_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Position_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Position_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Position_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .contract_dropdown-white.dropd-border .membership_label,
.hrx-new-form .contract_dropdown-white.dropd-border .reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .contract_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Position_label,
.hrx-new-form .contract_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .membership_dropdown-white.dropd-border .membership_label,
.curved-new-form .membership_dropdown-white.dropd-border .reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .contract_label,
.curved-new-form .membership_dropdown-white.dropd-border .Reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .Position_label,
.curved-new-form .membership_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .Reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Position_dropdown-white.dropd-border .membership_label,
.curved-new-form .Position_dropdown-white.dropd-border .reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .contract_label,
.curved-new-form .Position_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .Position_label,
.curved-new-form .Position_dropdown-white.dropd-border .free-location_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .contract_dropdown-white.dropd-border .membership_label,
.curved-new-form .contract_dropdown-white.dropd-border .reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .contract_label,
.curved-new-form .contract_dropdown-white.dropd-border .Reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .Position_label,
.curved-new-form .contract_dropdown-white.dropd-border .free-location_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .free-location_dropdown-white.dropd-border .membership_label,
.curved-new-form .free-location_dropdown-white.dropd-border .reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .contract_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Position_label,
.curved-new-form .free-location_dropdown-white.dropd-border .free-location_label {
  border: 2px solid #032a3b;
  padding-bottom: 13px;
  padding-top: 13px;
  text-align: left;
}
@media (max-width: 1199px) {
  .hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .membership_dropdown-white.dropd-border .membership_label,
.hrx-new-form .membership_dropdown-white.dropd-border .reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .contract_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Position_label,
.hrx-new-form .membership_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Position_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Position_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Position_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .contract_dropdown-white.dropd-border .membership_label,
.hrx-new-form .contract_dropdown-white.dropd-border .reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .contract_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Position_label,
.hrx-new-form .contract_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .membership_dropdown-white.dropd-border .membership_label,
.curved-new-form .membership_dropdown-white.dropd-border .reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .contract_label,
.curved-new-form .membership_dropdown-white.dropd-border .Reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .Position_label,
.curved-new-form .membership_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .Reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Position_dropdown-white.dropd-border .membership_label,
.curved-new-form .Position_dropdown-white.dropd-border .reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .contract_label,
.curved-new-form .Position_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .Position_label,
.curved-new-form .Position_dropdown-white.dropd-border .free-location_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .contract_dropdown-white.dropd-border .membership_label,
.curved-new-form .contract_dropdown-white.dropd-border .reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .contract_label,
.curved-new-form .contract_dropdown-white.dropd-border .Reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .Position_label,
.curved-new-form .contract_dropdown-white.dropd-border .free-location_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .free-location_dropdown-white.dropd-border .membership_label,
.curved-new-form .free-location_dropdown-white.dropd-border .reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .contract_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Position_label,
.curved-new-form .free-location_dropdown-white.dropd-border .free-location_label {
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .membership_dropdown-white.dropd-border .membership_label,
.hrx-new-form .membership_dropdown-white.dropd-border .reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .contract_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Position_label,
.hrx-new-form .membership_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Position_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Position_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Position_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .contract_dropdown-white.dropd-border .membership_label,
.hrx-new-form .contract_dropdown-white.dropd-border .reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .contract_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Position_label,
.hrx-new-form .contract_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .membership_dropdown-white.dropd-border .membership_label,
.curved-new-form .membership_dropdown-white.dropd-border .reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .contract_label,
.curved-new-form .membership_dropdown-white.dropd-border .Reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .Position_label,
.curved-new-form .membership_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .Reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Position_dropdown-white.dropd-border .membership_label,
.curved-new-form .Position_dropdown-white.dropd-border .reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .contract_label,
.curved-new-form .Position_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .Position_label,
.curved-new-form .Position_dropdown-white.dropd-border .free-location_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .contract_dropdown-white.dropd-border .membership_label,
.curved-new-form .contract_dropdown-white.dropd-border .reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .contract_label,
.curved-new-form .contract_dropdown-white.dropd-border .Reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .Position_label,
.curved-new-form .contract_dropdown-white.dropd-border .free-location_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .free-location_dropdown-white.dropd-border .membership_label,
.curved-new-form .free-location_dropdown-white.dropd-border .reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .contract_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Position_label,
.curved-new-form .free-location_dropdown-white.dropd-border .free-location_label {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .location_label,
.hrx-new-form .location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .location_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .membership_dropdown-white.dropd-border .membership_label,
.hrx-new-form .membership_dropdown-white.dropd-border .reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .location_label,
.hrx-new-form .membership_dropdown-white.dropd-border .contract_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .membership_dropdown-white.dropd-border .Position_label,
.hrx-new-form .membership_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .Position_dropdown-white.dropd-border .membership_label,
.hrx-new-form .Position_dropdown-white.dropd-border .reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .location_label,
.hrx-new-form .Position_dropdown-white.dropd-border .contract_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .Position_dropdown-white.dropd-border .Position_label,
.hrx-new-form .Position_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .contract_dropdown-white.dropd-border .membership_label,
.hrx-new-form .contract_dropdown-white.dropd-border .reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .location_label,
.hrx-new-form .contract_dropdown-white.dropd-border .contract_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .contract_dropdown-white.dropd-border .Position_label,
.hrx-new-form .contract_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .reason_dropdown-white.dropd-border .membership_label,
.hrx-new-form .reason_dropdown-white.dropd-border .reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .location_label,
.hrx-new-form .reason_dropdown-white.dropd-border .contract_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .reason_dropdown-white.dropd-border .Position_label,
.hrx-new-form .reason_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .location_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.hrx-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .membership_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .location_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .contract_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .Position_label,
.hrx-new-form .free-location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .location_dropdown-white.dropd-border .membership_label,
.curved-new-form .location_dropdown-white.dropd-border .reason_label,
.curved-new-form .location_dropdown-white.dropd-border .location_label,
.curved-new-form .location_dropdown-white.dropd-border .contract_label,
.curved-new-form .location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .location_dropdown-white.dropd-border .Position_label,
.curved-new-form .location_dropdown-white.dropd-border .free-location_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .membership_dropdown-white.dropd-border .membership_label,
.curved-new-form .membership_dropdown-white.dropd-border .reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .location_label,
.curved-new-form .membership_dropdown-white.dropd-border .contract_label,
.curved-new-form .membership_dropdown-white.dropd-border .Reason_label,
.curved-new-form .membership_dropdown-white.dropd-border .Position_label,
.curved-new-form .membership_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .Reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .location_label,
.curved-new-form .Reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .Reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .Position_dropdown-white.dropd-border .membership_label,
.curved-new-form .Position_dropdown-white.dropd-border .reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .location_label,
.curved-new-form .Position_dropdown-white.dropd-border .contract_label,
.curved-new-form .Position_dropdown-white.dropd-border .Reason_label,
.curved-new-form .Position_dropdown-white.dropd-border .Position_label,
.curved-new-form .Position_dropdown-white.dropd-border .free-location_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .contract_dropdown-white.dropd-border .membership_label,
.curved-new-form .contract_dropdown-white.dropd-border .reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .location_label,
.curved-new-form .contract_dropdown-white.dropd-border .contract_label,
.curved-new-form .contract_dropdown-white.dropd-border .Reason_label,
.curved-new-form .contract_dropdown-white.dropd-border .Position_label,
.curved-new-form .contract_dropdown-white.dropd-border .free-location_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .reason_dropdown-white.dropd-border .membership_label,
.curved-new-form .reason_dropdown-white.dropd-border .reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .location_label,
.curved-new-form .reason_dropdown-white.dropd-border .contract_label,
.curved-new-form .reason_dropdown-white.dropd-border .Reason_label,
.curved-new-form .reason_dropdown-white.dropd-border .Position_label,
.curved-new-form .reason_dropdown-white.dropd-border .free-location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .membership_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .location_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .contract_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Reason_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .Position_label,
.curved-new-form .enquiry_dropdown-white.dropd-border .free-location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .enquiry_label,
.curved-new-form .free-location_dropdown-white.dropd-border .membership_label,
.curved-new-form .free-location_dropdown-white.dropd-border .reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .location_label,
.curved-new-form .free-location_dropdown-white.dropd-border .contract_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Reason_label,
.curved-new-form .free-location_dropdown-white.dropd-border .Position_label,
.curved-new-form .free-location_dropdown-white.dropd-border .free-location_label {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
.hrx-new-form .location_dropdown-white.dropd-border ul,
.hrx-new-form .enquiry_dropdown-white.dropd-border ul,
.hrx-new-form .location_dropdown-white.dropd-border ul,
.hrx-new-form .membership_dropdown-white.dropd-border ul,
.hrx-new-form .Reason_dropdown-white.dropd-border ul,
.hrx-new-form .Position_dropdown-white.dropd-border ul,
.hrx-new-form .contract_dropdown-white.dropd-border ul,
.hrx-new-form .reason_dropdown-white.dropd-border ul,
.hrx-new-form .enquiry_dropdown-white.dropd-border ul,
.hrx-new-form .free-location_dropdown-white.dropd-border ul,
.curved-new-form .location_dropdown-white.dropd-border ul,
.curved-new-form .enquiry_dropdown-white.dropd-border ul,
.curved-new-form .location_dropdown-white.dropd-border ul,
.curved-new-form .membership_dropdown-white.dropd-border ul,
.curved-new-form .Reason_dropdown-white.dropd-border ul,
.curved-new-form .Position_dropdown-white.dropd-border ul,
.curved-new-form .contract_dropdown-white.dropd-border ul,
.curved-new-form .reason_dropdown-white.dropd-border ul,
.curved-new-form .enquiry_dropdown-white.dropd-border ul,
.curved-new-form .free-location_dropdown-white.dropd-border ul {
  border: 2px solid #032a3b;
}
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .enquiry_label,
.hrx-new-form .membership_dropdown-white .membership_label,
.hrx-new-form .membership_dropdown-white .reason_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .contract_label,
.hrx-new-form .membership_dropdown-white .Reason_label,
.hrx-new-form .membership_dropdown-white .Position_label,
.hrx-new-form .membership_dropdown-white .free-location_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .enquiry_label,
.hrx-new-form .Reason_dropdown-white .membership_label,
.hrx-new-form .Reason_dropdown-white .reason_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .contract_label,
.hrx-new-form .Reason_dropdown-white .Reason_label,
.hrx-new-form .Reason_dropdown-white .Position_label,
.hrx-new-form .Reason_dropdown-white .free-location_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .enquiry_label,
.hrx-new-form .Position_dropdown-white .membership_label,
.hrx-new-form .Position_dropdown-white .reason_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .contract_label,
.hrx-new-form .Position_dropdown-white .Reason_label,
.hrx-new-form .Position_dropdown-white .Position_label,
.hrx-new-form .Position_dropdown-white .free-location_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .enquiry_label,
.hrx-new-form .contract_dropdown-white .membership_label,
.hrx-new-form .contract_dropdown-white .reason_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .contract_label,
.hrx-new-form .contract_dropdown-white .Reason_label,
.hrx-new-form .contract_dropdown-white .Position_label,
.hrx-new-form .contract_dropdown-white .free-location_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .enquiry_label,
.hrx-new-form .reason_dropdown-white .membership_label,
.hrx-new-form .reason_dropdown-white .reason_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .contract_label,
.hrx-new-form .reason_dropdown-white .Reason_label,
.hrx-new-form .reason_dropdown-white .Position_label,
.hrx-new-form .reason_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .enquiry_label,
.hrx-new-form .free-location_dropdown-white .membership_label,
.hrx-new-form .free-location_dropdown-white .reason_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .contract_label,
.hrx-new-form .free-location_dropdown-white .Reason_label,
.hrx-new-form .free-location_dropdown-white .Position_label,
.hrx-new-form .free-location_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .enquiry_label,
.curved-new-form .membership_dropdown-white .membership_label,
.curved-new-form .membership_dropdown-white .reason_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .contract_label,
.curved-new-form .membership_dropdown-white .Reason_label,
.curved-new-form .membership_dropdown-white .Position_label,
.curved-new-form .membership_dropdown-white .free-location_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .enquiry_label,
.curved-new-form .Reason_dropdown-white .membership_label,
.curved-new-form .Reason_dropdown-white .reason_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .contract_label,
.curved-new-form .Reason_dropdown-white .Reason_label,
.curved-new-form .Reason_dropdown-white .Position_label,
.curved-new-form .Reason_dropdown-white .free-location_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .enquiry_label,
.curved-new-form .Position_dropdown-white .membership_label,
.curved-new-form .Position_dropdown-white .reason_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .contract_label,
.curved-new-form .Position_dropdown-white .Reason_label,
.curved-new-form .Position_dropdown-white .Position_label,
.curved-new-form .Position_dropdown-white .free-location_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .enquiry_label,
.curved-new-form .contract_dropdown-white .membership_label,
.curved-new-form .contract_dropdown-white .reason_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .contract_label,
.curved-new-form .contract_dropdown-white .Reason_label,
.curved-new-form .contract_dropdown-white .Position_label,
.curved-new-form .contract_dropdown-white .free-location_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .enquiry_label,
.curved-new-form .reason_dropdown-white .membership_label,
.curved-new-form .reason_dropdown-white .reason_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .contract_label,
.curved-new-form .reason_dropdown-white .Reason_label,
.curved-new-form .reason_dropdown-white .Position_label,
.curved-new-form .reason_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .enquiry_label,
.curved-new-form .free-location_dropdown-white .membership_label,
.curved-new-form .free-location_dropdown-white .reason_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .contract_label,
.curved-new-form .free-location_dropdown-white .Reason_label,
.curved-new-form .free-location_dropdown-white .Position_label,
.curved-new-form .free-location_dropdown-white .free-location_label {
  border-radius: 24px;
  color: #022a3a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  overflow: hidden;
  padding: 15px 60px 15px 24px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  text-transform: capitalize;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .enquiry_label,
.hrx-new-form .membership_dropdown-white .membership_label,
.hrx-new-form .membership_dropdown-white .reason_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .contract_label,
.hrx-new-form .membership_dropdown-white .Reason_label,
.hrx-new-form .membership_dropdown-white .Position_label,
.hrx-new-form .membership_dropdown-white .free-location_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .enquiry_label,
.hrx-new-form .Reason_dropdown-white .membership_label,
.hrx-new-form .Reason_dropdown-white .reason_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .contract_label,
.hrx-new-form .Reason_dropdown-white .Reason_label,
.hrx-new-form .Reason_dropdown-white .Position_label,
.hrx-new-form .Reason_dropdown-white .free-location_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .enquiry_label,
.hrx-new-form .Position_dropdown-white .membership_label,
.hrx-new-form .Position_dropdown-white .reason_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .contract_label,
.hrx-new-form .Position_dropdown-white .Reason_label,
.hrx-new-form .Position_dropdown-white .Position_label,
.hrx-new-form .Position_dropdown-white .free-location_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .enquiry_label,
.hrx-new-form .contract_dropdown-white .membership_label,
.hrx-new-form .contract_dropdown-white .reason_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .contract_label,
.hrx-new-form .contract_dropdown-white .Reason_label,
.hrx-new-form .contract_dropdown-white .Position_label,
.hrx-new-form .contract_dropdown-white .free-location_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .enquiry_label,
.hrx-new-form .reason_dropdown-white .membership_label,
.hrx-new-form .reason_dropdown-white .reason_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .contract_label,
.hrx-new-form .reason_dropdown-white .Reason_label,
.hrx-new-form .reason_dropdown-white .Position_label,
.hrx-new-form .reason_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .enquiry_label,
.hrx-new-form .free-location_dropdown-white .membership_label,
.hrx-new-form .free-location_dropdown-white .reason_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .contract_label,
.hrx-new-form .free-location_dropdown-white .Reason_label,
.hrx-new-form .free-location_dropdown-white .Position_label,
.hrx-new-form .free-location_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .enquiry_label,
.curved-new-form .membership_dropdown-white .membership_label,
.curved-new-form .membership_dropdown-white .reason_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .contract_label,
.curved-new-form .membership_dropdown-white .Reason_label,
.curved-new-form .membership_dropdown-white .Position_label,
.curved-new-form .membership_dropdown-white .free-location_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .enquiry_label,
.curved-new-form .Reason_dropdown-white .membership_label,
.curved-new-form .Reason_dropdown-white .reason_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .contract_label,
.curved-new-form .Reason_dropdown-white .Reason_label,
.curved-new-form .Reason_dropdown-white .Position_label,
.curved-new-form .Reason_dropdown-white .free-location_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .enquiry_label,
.curved-new-form .Position_dropdown-white .membership_label,
.curved-new-form .Position_dropdown-white .reason_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .contract_label,
.curved-new-form .Position_dropdown-white .Reason_label,
.curved-new-form .Position_dropdown-white .Position_label,
.curved-new-form .Position_dropdown-white .free-location_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .enquiry_label,
.curved-new-form .contract_dropdown-white .membership_label,
.curved-new-form .contract_dropdown-white .reason_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .contract_label,
.curved-new-form .contract_dropdown-white .Reason_label,
.curved-new-form .contract_dropdown-white .Position_label,
.curved-new-form .contract_dropdown-white .free-location_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .enquiry_label,
.curved-new-form .reason_dropdown-white .membership_label,
.curved-new-form .reason_dropdown-white .reason_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .contract_label,
.curved-new-form .reason_dropdown-white .Reason_label,
.curved-new-form .reason_dropdown-white .Position_label,
.curved-new-form .reason_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .enquiry_label,
.curved-new-form .free-location_dropdown-white .membership_label,
.curved-new-form .free-location_dropdown-white .reason_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .contract_label,
.curved-new-form .free-location_dropdown-white .Reason_label,
.curved-new-form .free-location_dropdown-white .Position_label,
.curved-new-form .free-location_dropdown-white .free-location_label {
    height: 46px;
    max-height: 46px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .enquiry_label,
.hrx-new-form .membership_dropdown-white .membership_label,
.hrx-new-form .membership_dropdown-white .reason_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .contract_label,
.hrx-new-form .membership_dropdown-white .Reason_label,
.hrx-new-form .membership_dropdown-white .Position_label,
.hrx-new-form .membership_dropdown-white .free-location_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .enquiry_label,
.hrx-new-form .Reason_dropdown-white .membership_label,
.hrx-new-form .Reason_dropdown-white .reason_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .contract_label,
.hrx-new-form .Reason_dropdown-white .Reason_label,
.hrx-new-form .Reason_dropdown-white .Position_label,
.hrx-new-form .Reason_dropdown-white .free-location_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .enquiry_label,
.hrx-new-form .Position_dropdown-white .membership_label,
.hrx-new-form .Position_dropdown-white .reason_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .contract_label,
.hrx-new-form .Position_dropdown-white .Reason_label,
.hrx-new-form .Position_dropdown-white .Position_label,
.hrx-new-form .Position_dropdown-white .free-location_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .enquiry_label,
.hrx-new-form .contract_dropdown-white .membership_label,
.hrx-new-form .contract_dropdown-white .reason_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .contract_label,
.hrx-new-form .contract_dropdown-white .Reason_label,
.hrx-new-form .contract_dropdown-white .Position_label,
.hrx-new-form .contract_dropdown-white .free-location_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .enquiry_label,
.hrx-new-form .reason_dropdown-white .membership_label,
.hrx-new-form .reason_dropdown-white .reason_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .contract_label,
.hrx-new-form .reason_dropdown-white .Reason_label,
.hrx-new-form .reason_dropdown-white .Position_label,
.hrx-new-form .reason_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .enquiry_label,
.hrx-new-form .free-location_dropdown-white .membership_label,
.hrx-new-form .free-location_dropdown-white .reason_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .contract_label,
.hrx-new-form .free-location_dropdown-white .Reason_label,
.hrx-new-form .free-location_dropdown-white .Position_label,
.hrx-new-form .free-location_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .enquiry_label,
.curved-new-form .membership_dropdown-white .membership_label,
.curved-new-form .membership_dropdown-white .reason_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .contract_label,
.curved-new-form .membership_dropdown-white .Reason_label,
.curved-new-form .membership_dropdown-white .Position_label,
.curved-new-form .membership_dropdown-white .free-location_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .enquiry_label,
.curved-new-form .Reason_dropdown-white .membership_label,
.curved-new-form .Reason_dropdown-white .reason_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .contract_label,
.curved-new-form .Reason_dropdown-white .Reason_label,
.curved-new-form .Reason_dropdown-white .Position_label,
.curved-new-form .Reason_dropdown-white .free-location_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .enquiry_label,
.curved-new-form .Position_dropdown-white .membership_label,
.curved-new-form .Position_dropdown-white .reason_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .contract_label,
.curved-new-form .Position_dropdown-white .Reason_label,
.curved-new-form .Position_dropdown-white .Position_label,
.curved-new-form .Position_dropdown-white .free-location_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .enquiry_label,
.curved-new-form .contract_dropdown-white .membership_label,
.curved-new-form .contract_dropdown-white .reason_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .contract_label,
.curved-new-form .contract_dropdown-white .Reason_label,
.curved-new-form .contract_dropdown-white .Position_label,
.curved-new-form .contract_dropdown-white .free-location_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .enquiry_label,
.curved-new-form .reason_dropdown-white .membership_label,
.curved-new-form .reason_dropdown-white .reason_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .contract_label,
.curved-new-form .reason_dropdown-white .Reason_label,
.curved-new-form .reason_dropdown-white .Position_label,
.curved-new-form .reason_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .enquiry_label,
.curved-new-form .free-location_dropdown-white .membership_label,
.curved-new-form .free-location_dropdown-white .reason_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .contract_label,
.curved-new-form .free-location_dropdown-white .Reason_label,
.curved-new-form .free-location_dropdown-white .Position_label,
.curved-new-form .free-location_dropdown-white .free-location_label {
    height: auto;
    padding: 12px 50px 12px 20px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .enquiry_label,
.hrx-new-form .location_dropdown-white .membership_label,
.hrx-new-form .location_dropdown-white .reason_label,
.hrx-new-form .location_dropdown-white .location_label,
.hrx-new-form .location_dropdown-white .contract_label,
.hrx-new-form .location_dropdown-white .Reason_label,
.hrx-new-form .location_dropdown-white .Position_label,
.hrx-new-form .location_dropdown-white .free-location_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .enquiry_label,
.hrx-new-form .membership_dropdown-white .membership_label,
.hrx-new-form .membership_dropdown-white .reason_label,
.hrx-new-form .membership_dropdown-white .location_label,
.hrx-new-form .membership_dropdown-white .contract_label,
.hrx-new-form .membership_dropdown-white .Reason_label,
.hrx-new-form .membership_dropdown-white .Position_label,
.hrx-new-form .membership_dropdown-white .free-location_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .enquiry_label,
.hrx-new-form .Reason_dropdown-white .membership_label,
.hrx-new-form .Reason_dropdown-white .reason_label,
.hrx-new-form .Reason_dropdown-white .location_label,
.hrx-new-form .Reason_dropdown-white .contract_label,
.hrx-new-form .Reason_dropdown-white .Reason_label,
.hrx-new-form .Reason_dropdown-white .Position_label,
.hrx-new-form .Reason_dropdown-white .free-location_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .enquiry_label,
.hrx-new-form .Position_dropdown-white .membership_label,
.hrx-new-form .Position_dropdown-white .reason_label,
.hrx-new-form .Position_dropdown-white .location_label,
.hrx-new-form .Position_dropdown-white .contract_label,
.hrx-new-form .Position_dropdown-white .Reason_label,
.hrx-new-form .Position_dropdown-white .Position_label,
.hrx-new-form .Position_dropdown-white .free-location_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .enquiry_label,
.hrx-new-form .contract_dropdown-white .membership_label,
.hrx-new-form .contract_dropdown-white .reason_label,
.hrx-new-form .contract_dropdown-white .location_label,
.hrx-new-form .contract_dropdown-white .contract_label,
.hrx-new-form .contract_dropdown-white .Reason_label,
.hrx-new-form .contract_dropdown-white .Position_label,
.hrx-new-form .contract_dropdown-white .free-location_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .enquiry_label,
.hrx-new-form .reason_dropdown-white .membership_label,
.hrx-new-form .reason_dropdown-white .reason_label,
.hrx-new-form .reason_dropdown-white .location_label,
.hrx-new-form .reason_dropdown-white .contract_label,
.hrx-new-form .reason_dropdown-white .Reason_label,
.hrx-new-form .reason_dropdown-white .Position_label,
.hrx-new-form .reason_dropdown-white .free-location_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .enquiry_label,
.hrx-new-form .enquiry_dropdown-white .membership_label,
.hrx-new-form .enquiry_dropdown-white .reason_label,
.hrx-new-form .enquiry_dropdown-white .location_label,
.hrx-new-form .enquiry_dropdown-white .contract_label,
.hrx-new-form .enquiry_dropdown-white .Reason_label,
.hrx-new-form .enquiry_dropdown-white .Position_label,
.hrx-new-form .enquiry_dropdown-white .free-location_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .enquiry_label,
.hrx-new-form .free-location_dropdown-white .membership_label,
.hrx-new-form .free-location_dropdown-white .reason_label,
.hrx-new-form .free-location_dropdown-white .location_label,
.hrx-new-form .free-location_dropdown-white .contract_label,
.hrx-new-form .free-location_dropdown-white .Reason_label,
.hrx-new-form .free-location_dropdown-white .Position_label,
.hrx-new-form .free-location_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .enquiry_label,
.curved-new-form .location_dropdown-white .membership_label,
.curved-new-form .location_dropdown-white .reason_label,
.curved-new-form .location_dropdown-white .location_label,
.curved-new-form .location_dropdown-white .contract_label,
.curved-new-form .location_dropdown-white .Reason_label,
.curved-new-form .location_dropdown-white .Position_label,
.curved-new-form .location_dropdown-white .free-location_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .enquiry_label,
.curved-new-form .membership_dropdown-white .membership_label,
.curved-new-form .membership_dropdown-white .reason_label,
.curved-new-form .membership_dropdown-white .location_label,
.curved-new-form .membership_dropdown-white .contract_label,
.curved-new-form .membership_dropdown-white .Reason_label,
.curved-new-form .membership_dropdown-white .Position_label,
.curved-new-form .membership_dropdown-white .free-location_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .enquiry_label,
.curved-new-form .Reason_dropdown-white .membership_label,
.curved-new-form .Reason_dropdown-white .reason_label,
.curved-new-form .Reason_dropdown-white .location_label,
.curved-new-form .Reason_dropdown-white .contract_label,
.curved-new-form .Reason_dropdown-white .Reason_label,
.curved-new-form .Reason_dropdown-white .Position_label,
.curved-new-form .Reason_dropdown-white .free-location_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .enquiry_label,
.curved-new-form .Position_dropdown-white .membership_label,
.curved-new-form .Position_dropdown-white .reason_label,
.curved-new-form .Position_dropdown-white .location_label,
.curved-new-form .Position_dropdown-white .contract_label,
.curved-new-form .Position_dropdown-white .Reason_label,
.curved-new-form .Position_dropdown-white .Position_label,
.curved-new-form .Position_dropdown-white .free-location_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .enquiry_label,
.curved-new-form .contract_dropdown-white .membership_label,
.curved-new-form .contract_dropdown-white .reason_label,
.curved-new-form .contract_dropdown-white .location_label,
.curved-new-form .contract_dropdown-white .contract_label,
.curved-new-form .contract_dropdown-white .Reason_label,
.curved-new-form .contract_dropdown-white .Position_label,
.curved-new-form .contract_dropdown-white .free-location_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .enquiry_label,
.curved-new-form .reason_dropdown-white .membership_label,
.curved-new-form .reason_dropdown-white .reason_label,
.curved-new-form .reason_dropdown-white .location_label,
.curved-new-form .reason_dropdown-white .contract_label,
.curved-new-form .reason_dropdown-white .Reason_label,
.curved-new-form .reason_dropdown-white .Position_label,
.curved-new-form .reason_dropdown-white .free-location_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .enquiry_label,
.curved-new-form .enquiry_dropdown-white .membership_label,
.curved-new-form .enquiry_dropdown-white .reason_label,
.curved-new-form .enquiry_dropdown-white .location_label,
.curved-new-form .enquiry_dropdown-white .contract_label,
.curved-new-form .enquiry_dropdown-white .Reason_label,
.curved-new-form .enquiry_dropdown-white .Position_label,
.curved-new-form .enquiry_dropdown-white .free-location_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .enquiry_label,
.curved-new-form .free-location_dropdown-white .membership_label,
.curved-new-form .free-location_dropdown-white .reason_label,
.curved-new-form .free-location_dropdown-white .location_label,
.curved-new-form .free-location_dropdown-white .contract_label,
.curved-new-form .free-location_dropdown-white .Reason_label,
.curved-new-form .free-location_dropdown-white .Position_label,
.curved-new-form .free-location_dropdown-white .free-location_label {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding: 7px 36px 7px 13px;
  }
}
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .enquiry_label::before,
.hrx-new-form .membership_dropdown-white .membership_label::before,
.hrx-new-form .membership_dropdown-white .reason_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .contract_label::before,
.hrx-new-form .membership_dropdown-white .Reason_label::before,
.hrx-new-form .membership_dropdown-white .Position_label::before,
.hrx-new-form .membership_dropdown-white .free-location_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .enquiry_label::before,
.hrx-new-form .Reason_dropdown-white .membership_label::before,
.hrx-new-form .Reason_dropdown-white .reason_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .contract_label::before,
.hrx-new-form .Reason_dropdown-white .Reason_label::before,
.hrx-new-form .Reason_dropdown-white .Position_label::before,
.hrx-new-form .Reason_dropdown-white .free-location_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .enquiry_label::before,
.hrx-new-form .Position_dropdown-white .membership_label::before,
.hrx-new-form .Position_dropdown-white .reason_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .contract_label::before,
.hrx-new-form .Position_dropdown-white .Reason_label::before,
.hrx-new-form .Position_dropdown-white .Position_label::before,
.hrx-new-form .Position_dropdown-white .free-location_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .enquiry_label::before,
.hrx-new-form .contract_dropdown-white .membership_label::before,
.hrx-new-form .contract_dropdown-white .reason_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .contract_label::before,
.hrx-new-form .contract_dropdown-white .Reason_label::before,
.hrx-new-form .contract_dropdown-white .Position_label::before,
.hrx-new-form .contract_dropdown-white .free-location_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .enquiry_label::before,
.hrx-new-form .reason_dropdown-white .membership_label::before,
.hrx-new-form .reason_dropdown-white .reason_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .contract_label::before,
.hrx-new-form .reason_dropdown-white .Reason_label::before,
.hrx-new-form .reason_dropdown-white .Position_label::before,
.hrx-new-form .reason_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .enquiry_label::before,
.hrx-new-form .free-location_dropdown-white .membership_label::before,
.hrx-new-form .free-location_dropdown-white .reason_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .contract_label::before,
.hrx-new-form .free-location_dropdown-white .Reason_label::before,
.hrx-new-form .free-location_dropdown-white .Position_label::before,
.hrx-new-form .free-location_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .enquiry_label::before,
.curved-new-form .membership_dropdown-white .membership_label::before,
.curved-new-form .membership_dropdown-white .reason_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .contract_label::before,
.curved-new-form .membership_dropdown-white .Reason_label::before,
.curved-new-form .membership_dropdown-white .Position_label::before,
.curved-new-form .membership_dropdown-white .free-location_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .enquiry_label::before,
.curved-new-form .Reason_dropdown-white .membership_label::before,
.curved-new-form .Reason_dropdown-white .reason_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .contract_label::before,
.curved-new-form .Reason_dropdown-white .Reason_label::before,
.curved-new-form .Reason_dropdown-white .Position_label::before,
.curved-new-form .Reason_dropdown-white .free-location_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .enquiry_label::before,
.curved-new-form .Position_dropdown-white .membership_label::before,
.curved-new-form .Position_dropdown-white .reason_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .contract_label::before,
.curved-new-form .Position_dropdown-white .Reason_label::before,
.curved-new-form .Position_dropdown-white .Position_label::before,
.curved-new-form .Position_dropdown-white .free-location_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .enquiry_label::before,
.curved-new-form .contract_dropdown-white .membership_label::before,
.curved-new-form .contract_dropdown-white .reason_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .contract_label::before,
.curved-new-form .contract_dropdown-white .Reason_label::before,
.curved-new-form .contract_dropdown-white .Position_label::before,
.curved-new-form .contract_dropdown-white .free-location_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .enquiry_label::before,
.curved-new-form .reason_dropdown-white .membership_label::before,
.curved-new-form .reason_dropdown-white .reason_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .contract_label::before,
.curved-new-form .reason_dropdown-white .Reason_label::before,
.curved-new-form .reason_dropdown-white .Position_label::before,
.curved-new-form .reason_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .enquiry_label::before,
.curved-new-form .free-location_dropdown-white .membership_label::before,
.curved-new-form .free-location_dropdown-white .reason_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .contract_label::before,
.curved-new-form .free-location_dropdown-white .Reason_label::before,
.curved-new-form .free-location_dropdown-white .Position_label::before,
.curved-new-form .free-location_dropdown-white .free-location_label::before {
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  height: 12px;
  right: 30px;
  width: 20px;
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .enquiry_label::before,
.hrx-new-form .membership_dropdown-white .membership_label::before,
.hrx-new-form .membership_dropdown-white .reason_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .contract_label::before,
.hrx-new-form .membership_dropdown-white .Reason_label::before,
.hrx-new-form .membership_dropdown-white .Position_label::before,
.hrx-new-form .membership_dropdown-white .free-location_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .enquiry_label::before,
.hrx-new-form .Reason_dropdown-white .membership_label::before,
.hrx-new-form .Reason_dropdown-white .reason_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .contract_label::before,
.hrx-new-form .Reason_dropdown-white .Reason_label::before,
.hrx-new-form .Reason_dropdown-white .Position_label::before,
.hrx-new-form .Reason_dropdown-white .free-location_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .enquiry_label::before,
.hrx-new-form .Position_dropdown-white .membership_label::before,
.hrx-new-form .Position_dropdown-white .reason_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .contract_label::before,
.hrx-new-form .Position_dropdown-white .Reason_label::before,
.hrx-new-form .Position_dropdown-white .Position_label::before,
.hrx-new-form .Position_dropdown-white .free-location_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .enquiry_label::before,
.hrx-new-form .contract_dropdown-white .membership_label::before,
.hrx-new-form .contract_dropdown-white .reason_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .contract_label::before,
.hrx-new-form .contract_dropdown-white .Reason_label::before,
.hrx-new-form .contract_dropdown-white .Position_label::before,
.hrx-new-form .contract_dropdown-white .free-location_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .enquiry_label::before,
.hrx-new-form .reason_dropdown-white .membership_label::before,
.hrx-new-form .reason_dropdown-white .reason_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .contract_label::before,
.hrx-new-form .reason_dropdown-white .Reason_label::before,
.hrx-new-form .reason_dropdown-white .Position_label::before,
.hrx-new-form .reason_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .enquiry_label::before,
.hrx-new-form .free-location_dropdown-white .membership_label::before,
.hrx-new-form .free-location_dropdown-white .reason_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .contract_label::before,
.hrx-new-form .free-location_dropdown-white .Reason_label::before,
.hrx-new-form .free-location_dropdown-white .Position_label::before,
.hrx-new-form .free-location_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .enquiry_label::before,
.curved-new-form .membership_dropdown-white .membership_label::before,
.curved-new-form .membership_dropdown-white .reason_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .contract_label::before,
.curved-new-form .membership_dropdown-white .Reason_label::before,
.curved-new-form .membership_dropdown-white .Position_label::before,
.curved-new-form .membership_dropdown-white .free-location_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .enquiry_label::before,
.curved-new-form .Reason_dropdown-white .membership_label::before,
.curved-new-form .Reason_dropdown-white .reason_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .contract_label::before,
.curved-new-form .Reason_dropdown-white .Reason_label::before,
.curved-new-form .Reason_dropdown-white .Position_label::before,
.curved-new-form .Reason_dropdown-white .free-location_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .enquiry_label::before,
.curved-new-form .Position_dropdown-white .membership_label::before,
.curved-new-form .Position_dropdown-white .reason_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .contract_label::before,
.curved-new-form .Position_dropdown-white .Reason_label::before,
.curved-new-form .Position_dropdown-white .Position_label::before,
.curved-new-form .Position_dropdown-white .free-location_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .enquiry_label::before,
.curved-new-form .contract_dropdown-white .membership_label::before,
.curved-new-form .contract_dropdown-white .reason_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .contract_label::before,
.curved-new-form .contract_dropdown-white .Reason_label::before,
.curved-new-form .contract_dropdown-white .Position_label::before,
.curved-new-form .contract_dropdown-white .free-location_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .enquiry_label::before,
.curved-new-form .reason_dropdown-white .membership_label::before,
.curved-new-form .reason_dropdown-white .reason_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .contract_label::before,
.curved-new-form .reason_dropdown-white .Reason_label::before,
.curved-new-form .reason_dropdown-white .Position_label::before,
.curved-new-form .reason_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .enquiry_label::before,
.curved-new-form .free-location_dropdown-white .membership_label::before,
.curved-new-form .free-location_dropdown-white .reason_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .contract_label::before,
.curved-new-form .free-location_dropdown-white .Reason_label::before,
.curved-new-form .free-location_dropdown-white .Position_label::before,
.curved-new-form .free-location_dropdown-white .free-location_label::before {
    height: 10px;
    right: 20px;
    width: 17px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .enquiry_label::before,
.hrx-new-form .location_dropdown-white .membership_label::before,
.hrx-new-form .location_dropdown-white .reason_label::before,
.hrx-new-form .location_dropdown-white .location_label::before,
.hrx-new-form .location_dropdown-white .contract_label::before,
.hrx-new-form .location_dropdown-white .Reason_label::before,
.hrx-new-form .location_dropdown-white .Position_label::before,
.hrx-new-form .location_dropdown-white .free-location_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .enquiry_label::before,
.hrx-new-form .membership_dropdown-white .membership_label::before,
.hrx-new-form .membership_dropdown-white .reason_label::before,
.hrx-new-form .membership_dropdown-white .location_label::before,
.hrx-new-form .membership_dropdown-white .contract_label::before,
.hrx-new-form .membership_dropdown-white .Reason_label::before,
.hrx-new-form .membership_dropdown-white .Position_label::before,
.hrx-new-form .membership_dropdown-white .free-location_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .enquiry_label::before,
.hrx-new-form .Reason_dropdown-white .membership_label::before,
.hrx-new-form .Reason_dropdown-white .reason_label::before,
.hrx-new-form .Reason_dropdown-white .location_label::before,
.hrx-new-form .Reason_dropdown-white .contract_label::before,
.hrx-new-form .Reason_dropdown-white .Reason_label::before,
.hrx-new-form .Reason_dropdown-white .Position_label::before,
.hrx-new-form .Reason_dropdown-white .free-location_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .enquiry_label::before,
.hrx-new-form .Position_dropdown-white .membership_label::before,
.hrx-new-form .Position_dropdown-white .reason_label::before,
.hrx-new-form .Position_dropdown-white .location_label::before,
.hrx-new-form .Position_dropdown-white .contract_label::before,
.hrx-new-form .Position_dropdown-white .Reason_label::before,
.hrx-new-form .Position_dropdown-white .Position_label::before,
.hrx-new-form .Position_dropdown-white .free-location_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .enquiry_label::before,
.hrx-new-form .contract_dropdown-white .membership_label::before,
.hrx-new-form .contract_dropdown-white .reason_label::before,
.hrx-new-form .contract_dropdown-white .location_label::before,
.hrx-new-form .contract_dropdown-white .contract_label::before,
.hrx-new-form .contract_dropdown-white .Reason_label::before,
.hrx-new-form .contract_dropdown-white .Position_label::before,
.hrx-new-form .contract_dropdown-white .free-location_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .enquiry_label::before,
.hrx-new-form .reason_dropdown-white .membership_label::before,
.hrx-new-form .reason_dropdown-white .reason_label::before,
.hrx-new-form .reason_dropdown-white .location_label::before,
.hrx-new-form .reason_dropdown-white .contract_label::before,
.hrx-new-form .reason_dropdown-white .Reason_label::before,
.hrx-new-form .reason_dropdown-white .Position_label::before,
.hrx-new-form .reason_dropdown-white .free-location_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .enquiry_label::before,
.hrx-new-form .enquiry_dropdown-white .membership_label::before,
.hrx-new-form .enquiry_dropdown-white .reason_label::before,
.hrx-new-form .enquiry_dropdown-white .location_label::before,
.hrx-new-form .enquiry_dropdown-white .contract_label::before,
.hrx-new-form .enquiry_dropdown-white .Reason_label::before,
.hrx-new-form .enquiry_dropdown-white .Position_label::before,
.hrx-new-form .enquiry_dropdown-white .free-location_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .enquiry_label::before,
.hrx-new-form .free-location_dropdown-white .membership_label::before,
.hrx-new-form .free-location_dropdown-white .reason_label::before,
.hrx-new-form .free-location_dropdown-white .location_label::before,
.hrx-new-form .free-location_dropdown-white .contract_label::before,
.hrx-new-form .free-location_dropdown-white .Reason_label::before,
.hrx-new-form .free-location_dropdown-white .Position_label::before,
.hrx-new-form .free-location_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .enquiry_label::before,
.curved-new-form .location_dropdown-white .membership_label::before,
.curved-new-form .location_dropdown-white .reason_label::before,
.curved-new-form .location_dropdown-white .location_label::before,
.curved-new-form .location_dropdown-white .contract_label::before,
.curved-new-form .location_dropdown-white .Reason_label::before,
.curved-new-form .location_dropdown-white .Position_label::before,
.curved-new-form .location_dropdown-white .free-location_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .enquiry_label::before,
.curved-new-form .membership_dropdown-white .membership_label::before,
.curved-new-form .membership_dropdown-white .reason_label::before,
.curved-new-form .membership_dropdown-white .location_label::before,
.curved-new-form .membership_dropdown-white .contract_label::before,
.curved-new-form .membership_dropdown-white .Reason_label::before,
.curved-new-form .membership_dropdown-white .Position_label::before,
.curved-new-form .membership_dropdown-white .free-location_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .enquiry_label::before,
.curved-new-form .Reason_dropdown-white .membership_label::before,
.curved-new-form .Reason_dropdown-white .reason_label::before,
.curved-new-form .Reason_dropdown-white .location_label::before,
.curved-new-form .Reason_dropdown-white .contract_label::before,
.curved-new-form .Reason_dropdown-white .Reason_label::before,
.curved-new-form .Reason_dropdown-white .Position_label::before,
.curved-new-form .Reason_dropdown-white .free-location_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .enquiry_label::before,
.curved-new-form .Position_dropdown-white .membership_label::before,
.curved-new-form .Position_dropdown-white .reason_label::before,
.curved-new-form .Position_dropdown-white .location_label::before,
.curved-new-form .Position_dropdown-white .contract_label::before,
.curved-new-form .Position_dropdown-white .Reason_label::before,
.curved-new-form .Position_dropdown-white .Position_label::before,
.curved-new-form .Position_dropdown-white .free-location_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .enquiry_label::before,
.curved-new-form .contract_dropdown-white .membership_label::before,
.curved-new-form .contract_dropdown-white .reason_label::before,
.curved-new-form .contract_dropdown-white .location_label::before,
.curved-new-form .contract_dropdown-white .contract_label::before,
.curved-new-form .contract_dropdown-white .Reason_label::before,
.curved-new-form .contract_dropdown-white .Position_label::before,
.curved-new-form .contract_dropdown-white .free-location_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .enquiry_label::before,
.curved-new-form .reason_dropdown-white .membership_label::before,
.curved-new-form .reason_dropdown-white .reason_label::before,
.curved-new-form .reason_dropdown-white .location_label::before,
.curved-new-form .reason_dropdown-white .contract_label::before,
.curved-new-form .reason_dropdown-white .Reason_label::before,
.curved-new-form .reason_dropdown-white .Position_label::before,
.curved-new-form .reason_dropdown-white .free-location_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .enquiry_label::before,
.curved-new-form .enquiry_dropdown-white .membership_label::before,
.curved-new-form .enquiry_dropdown-white .reason_label::before,
.curved-new-form .enquiry_dropdown-white .location_label::before,
.curved-new-form .enquiry_dropdown-white .contract_label::before,
.curved-new-form .enquiry_dropdown-white .Reason_label::before,
.curved-new-form .enquiry_dropdown-white .Position_label::before,
.curved-new-form .enquiry_dropdown-white .free-location_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .enquiry_label::before,
.curved-new-form .free-location_dropdown-white .membership_label::before,
.curved-new-form .free-location_dropdown-white .reason_label::before,
.curved-new-form .free-location_dropdown-white .location_label::before,
.curved-new-form .free-location_dropdown-white .contract_label::before,
.curved-new-form .free-location_dropdown-white .Reason_label::before,
.curved-new-form .free-location_dropdown-white .Position_label::before,
.curved-new-form .free-location_dropdown-white .free-location_label::before {
    height: 8px;
    right: 15px;
    width: 13px;
  }
}
.hrx-new-form .location_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .location_dropdown-white ul,
.hrx-new-form .membership_dropdown-white ul,
.hrx-new-form .Reason_dropdown-white ul,
.hrx-new-form .Position_dropdown-white ul,
.hrx-new-form .contract_dropdown-white ul,
.hrx-new-form .reason_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .free-location_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .membership_dropdown-white ul,
.curved-new-form .Reason_dropdown-white ul,
.curved-new-form .Position_dropdown-white ul,
.curved-new-form .contract_dropdown-white ul,
.curved-new-form .reason_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .free-location_dropdown-white ul {
  border-radius: 0 0 24px 24px;
  margin-top: -20px !important;
  padding: 35px 0 15px !important;
}
.hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .membership_dropdown-white ul::before,
.hrx-new-form .Reason_dropdown-white ul::before,
.hrx-new-form .Position_dropdown-white ul::before,
.hrx-new-form .contract_dropdown-white ul::before,
.hrx-new-form .reason_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .free-location_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .membership_dropdown-white ul::before,
.curved-new-form .Reason_dropdown-white ul::before,
.curved-new-form .Position_dropdown-white ul::before,
.curved-new-form .contract_dropdown-white ul::before,
.curved-new-form .reason_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .free-location_dropdown-white ul::before {
  border-top: 1px solid #f4cd00;
  content: "";
  display: block;
  position: absolute;
  top: 50px;
  width: 100%;
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .membership_dropdown-white ul::before,
.hrx-new-form .Reason_dropdown-white ul::before,
.hrx-new-form .Position_dropdown-white ul::before,
.hrx-new-form .contract_dropdown-white ul::before,
.hrx-new-form .reason_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .free-location_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .membership_dropdown-white ul::before,
.curved-new-form .Reason_dropdown-white ul::before,
.curved-new-form .Position_dropdown-white ul::before,
.curved-new-form .contract_dropdown-white ul::before,
.curved-new-form .reason_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .free-location_dropdown-white ul::before {
    top: 45px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .location_dropdown-white ul::before,
.hrx-new-form .membership_dropdown-white ul::before,
.hrx-new-form .Reason_dropdown-white ul::before,
.hrx-new-form .Position_dropdown-white ul::before,
.hrx-new-form .contract_dropdown-white ul::before,
.hrx-new-form .reason_dropdown-white ul::before,
.hrx-new-form .enquiry_dropdown-white ul::before,
.hrx-new-form .free-location_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .location_dropdown-white ul::before,
.curved-new-form .membership_dropdown-white ul::before,
.curved-new-form .Reason_dropdown-white ul::before,
.curved-new-form .Position_dropdown-white ul::before,
.curved-new-form .contract_dropdown-white ul::before,
.curved-new-form .reason_dropdown-white ul::before,
.curved-new-form .enquiry_dropdown-white ul::before,
.curved-new-form .free-location_dropdown-white ul::before {
    top: 34px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .location_dropdown-white ul,
.hrx-new-form .membership_dropdown-white ul,
.hrx-new-form .Reason_dropdown-white ul,
.hrx-new-form .Position_dropdown-white ul,
.hrx-new-form .contract_dropdown-white ul,
.hrx-new-form .reason_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .free-location_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .membership_dropdown-white ul,
.curved-new-form .Reason_dropdown-white ul,
.curved-new-form .Position_dropdown-white ul,
.curved-new-form .contract_dropdown-white ul,
.curved-new-form .reason_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .free-location_dropdown-white ul {
    margin-top: -20px !important;
    padding-top: 32px !important;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .location_dropdown-white ul,
.hrx-new-form .membership_dropdown-white ul,
.hrx-new-form .Reason_dropdown-white ul,
.hrx-new-form .Position_dropdown-white ul,
.hrx-new-form .contract_dropdown-white ul,
.hrx-new-form .reason_dropdown-white ul,
.hrx-new-form .enquiry_dropdown-white ul,
.hrx-new-form .free-location_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .location_dropdown-white ul,
.curved-new-form .membership_dropdown-white ul,
.curved-new-form .Reason_dropdown-white ul,
.curved-new-form .Position_dropdown-white ul,
.curved-new-form .contract_dropdown-white ul,
.curved-new-form .reason_dropdown-white ul,
.curved-new-form .enquiry_dropdown-white ul,
.curved-new-form .free-location_dropdown-white ul {
    margin-top: -15px !important;
    padding-top: 23px !important;
  }
}
.hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .membership_dropdown-white ul li span,
.hrx-new-form .Reason_dropdown-white ul li span,
.hrx-new-form .Position_dropdown-white ul li span,
.hrx-new-form .contract_dropdown-white ul li span,
.hrx-new-form .reason_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .free-location_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .membership_dropdown-white ul li span,
.curved-new-form .Reason_dropdown-white ul li span,
.curved-new-form .Position_dropdown-white ul li span,
.curved-new-form .contract_dropdown-white ul li span,
.curved-new-form .reason_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .free-location_dropdown-white ul li span {
  color: #022a3a;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 24px;
  padding-right: 24px;
  text-align: left;
  -webkit-transition: backgroun-color 0.3s linear;
  -o-transition: backgroun-color 0.3s linear;
  transition: backgroun-color 0.3s linear;
}
@media (max-width: 991px) {
  .hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .membership_dropdown-white ul li span,
.hrx-new-form .Reason_dropdown-white ul li span,
.hrx-new-form .Position_dropdown-white ul li span,
.hrx-new-form .contract_dropdown-white ul li span,
.hrx-new-form .reason_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .free-location_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .membership_dropdown-white ul li span,
.curved-new-form .Reason_dropdown-white ul li span,
.curved-new-form .Position_dropdown-white ul li span,
.curved-new-form .contract_dropdown-white ul li span,
.curved-new-form .reason_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .free-location_dropdown-white ul li span {
    padding: 7px 20px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .location_dropdown-white ul li span,
.hrx-new-form .membership_dropdown-white ul li span,
.hrx-new-form .Reason_dropdown-white ul li span,
.hrx-new-form .Position_dropdown-white ul li span,
.hrx-new-form .contract_dropdown-white ul li span,
.hrx-new-form .reason_dropdown-white ul li span,
.hrx-new-form .enquiry_dropdown-white ul li span,
.hrx-new-form .free-location_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .location_dropdown-white ul li span,
.curved-new-form .membership_dropdown-white ul li span,
.curved-new-form .Reason_dropdown-white ul li span,
.curved-new-form .Position_dropdown-white ul li span,
.curved-new-form .contract_dropdown-white ul li span,
.curved-new-form .reason_dropdown-white ul li span,
.curved-new-form .enquiry_dropdown-white ul li span,
.curved-new-form .free-location_dropdown-white ul li span {
    font-size: 13px;
    line-height: 20px;
    padding: 5px 13px;
  }
}
.hrx-new-form .iti--separate-dial-code .iti__selected-flag,
.curved-new-form .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-radius: 26px;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .hrx-new-form .iti--separate-dial-code .iti__selected-flag,
.curved-new-form .iti--separate-dial-code .iti__selected-flag {
    margin-left: 2px;
  }
}
.hrx-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code,
.curved-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
}
@media (max-width: 991px) {
  .hrx-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code,
.curved-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code,
.curved-new-form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 13px;
  }
}
.hrx-new-form .iti__flag-container,
.curved-new-form .iti__flag-container {
  top: 5px;
}
@media (max-width: 1199px) {
  .hrx-new-form .iti__flag-container,
.curved-new-form .iti__flag-container {
    top: 3px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form .iti__flag-container,
.curved-new-form .iti__flag-container {
    top: 2px;
  }
}
.hrx-new-form .iti__selected-flag,
.curved-new-form .iti__selected-flag {
  border: 1px solid #022a3a;
  border-radius: 96px;
  height: 38px;
  padding: 0 11px;
}
@media (max-width: 575px) {
  .hrx-new-form .iti__selected-flag,
.curved-new-form .iti__selected-flag {
    height: 28px;
  }
}
.hrx-new-form .iti__arrow,
.curved-new-form .iti__arrow {
  background: transparent;
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  height: 7px;
  margin-left: 6px;
  width: 12px;
}
@media (max-width: 991px) {
  .hrx-new-form .iti__arrow,
.curved-new-form .iti__arrow {
    height: 6px;
    width: 11px;
  }
}
.hrx-new-form .iti__arrow--up,
.curved-new-form .iti__arrow--up {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
  padding: 15px 24px;
}
@media (max-width: 1199px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    height: 44px;
    max-height: 44px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    height: 34px;
    max-height: 34px;
    padding: 7px 13px;
  }
}
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input.input-date,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea.input-date,
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select.input-date,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field input.input-date,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field textarea.input-date,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select.input-date {
  padding-right: 45px;
}
.hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: calc(100% - 30px) center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    background-position: calc(100% - 20px) center;
    background-size: 17px auto;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select,
.curved-new-form.gym-join-popup .join-progress-contents.join-progress-accordian .form-div .fieldset .hs-field select {
    background-position: calc(100% - 15px) center;
    background-size: 13px auto;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .join-progress-contents .joinform-step .right,
.curved-new-form.gym-join-popup .join-progress-contents .joinform-step .right {
    margin-bottom: 30px;
  }
}
.hrx-new-form.gym-join-popup .iti--allow-dropdown input,
.curved-new-form.gym-join-popup .iti--allow-dropdown input {
  text-indent: 13px;
}
@media (max-width: 767px) {
  .hrx-new-form.gym-join-popup .iti--allow-dropdown input,
.curved-new-form.gym-join-popup .iti--allow-dropdown input {
    text-indent: 11px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.gym-join-popup .iti--allow-dropdown input,
.curved-new-form.gym-join-popup .iti--allow-dropdown input {
    text-indent: 8px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .iti__flag-container,
.curved-new-form.gym-join-popup .iti__flag-container {
    top: 3px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.gym-join-popup .iti__flag-container,
.curved-new-form.gym-join-popup .iti__flag-container {
    top: 3px;
  }
}
@media (max-width: 1199px) {
  .hrx-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag,
.curved-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag {
    margin-left: 3px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag,
.curved-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag {
    height: 36px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag,
.curved-new-form.gym-join-popup .iti--separate-dial-code .iti__selected-flag {
    height: 26px;
  }
}

.curved-new-form .iti {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.curved-new-form .iti__flag-container {
  bottom: unset;
  top: unset;
}

.gift-checkout {
  min-height: unset;
}
@media (max-width: 991px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step {
    max-width: 100%;
  }
}
@media (max-width: 1240px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step {
    width: 52%;
  }
}
@media (max-width: 1199px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .left-step {
    width: 100%;
  }
}
.gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch {
  -webkit-flex-wrap: unset;
      -ms-flex-wrap: unset;
          flex-wrap: unset;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch > .o-layout__item {
  width: auto !important;
}
@media (max-width: 1199px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch > .o-layout__item {
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch > .o-layout__item {
    font-size: 12px;
  }
}
@media (max-width: 390px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch > .o-layout__item {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .gift-checkout.gym-join-popup .join-progress-contents.join-progress-accordian .joinform-step .pay-layout .o-layout--stretch > .o-layout__item {
    font-size: 10px;
  }
}
.gift-checkout.gym-join-popup .join-progress-contents .joinform-step .mm-tooltip-title {
  text-transform: uppercase;
}
@media (max-width: 1240px) {
  .gift-checkout.gym-join-popup .join-progress-contents .joinform-step .right {
    width: 48%;
  }
}
@media (max-width: 1199px) {
  .gift-checkout.gym-join-popup .join-progress-contents .joinform-step .right {
    width: 52%;
  }
}
@media (max-width: 991px) {
  .gift-checkout.gym-join-popup .join-progress-contents .joinform-step .right {
    width: 100%;
  }
}

.mm-tooltip-title {
  position: relative;
}
.mm-tooltip-title.hover .mm-tooltip-description {
  opacity: 1;
  visibility: visible;
}
.mm-tooltip-title .mm-tooltip-mark {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  border-radius: 100%;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
  width: 20px;
}
.mm-tooltip-title .mm-tooltip-mark img {
  display: inline-block;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mm-tooltip-title .mm-tooltip-description {
  background-color: #f4cd00;
  border: 1px solid #022a3a;
  border-radius: 24px;
  bottom: calc(100% + 6px);
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  text-align: left;
  -webkit-transition: opacity, visibility 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity, visibility 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity, visibility 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 200px;
  word-break: break-word;
  z-index: 5;
}
@media (max-width: 420px) {
  .mm-tooltip-title .mm-tooltip-description {
    width: 303px;
  }
}
@media (max-width: 365px) {
  .mm-tooltip-title .mm-tooltip-description {
    width: 250px;
  }
}
.mm-tooltip-title .mm-tooltip-description .tooltip-arrow {
  border-bottom: 10px solid #f4cd00;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: none;
  height: 0;
  left: 24px;
  position: absolute;
  top: -9px;
  width: 0;
}
@media (max-width: 420px) {
  .mm-tooltip-title .mm-tooltip-description .tooltip-arrow {
    top: -8px;
  }
}
.mm-tooltip-title .mm-tooltip-description h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 12px;
}
@media (max-width: 420px) {
  .mm-tooltip-title .mm-tooltip-description h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
.mm-tooltip-title .mm-tooltip-description h3:last-child {
  margin-bottom: 0;
}
.mm-tooltip-title .mm-tooltip-description p {
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 16px;
  text-transform: uppercase;
}
.mm-tooltip-title .mm-tooltip-description img {
  height: auto;
  max-width: 100%;
}

.gift-image-text .editor-content img {
  height: auto;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .gift-image-text .editor-content img {
    margin-bottom: 20px;
  }
}
.gift-image-text .editor-content img:last-child {
  margin-bottom: 0;
}
.gift-image-text .editor-content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .gift-image-text .editor-content p {
    margin-bottom: 20px;
  }
}
.gift-image-text .editor-content p:last-child {
  margin-bottom: 0;
}

.referwrap-box.icon-newrefer-box {
  background-color: #fff;
  border: 2px solid #022a3a;
}
.referwrap-box.icon-newrefer-box h2 {
  margin-bottom: 10px;
}
.referwrap-box.icon-newrefer-box h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: unset;
}
.referwrap-box.icon-newrefer-box h6 {
  font-size: 14px;
  text-transform: unset;
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .link-share-box {
  max-width: 80%;
}
@media (max-width: 575px) {
  .referwrap-box.icon-newrefer-box .thnk-social-share-main .link-share-box {
    max-width: 100%;
  }
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .link-share-box button {
  background-image: url("../../../build/svg/icons/copy-icon-white.svg");
  background-position: 6px center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  font-size: 0;
  width: 44px;
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .link-share-box button:hover {
  background-image: url("../../../build/svg/icons/copy-icon-dark.svg");
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .thnk-msg-social-share {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .thnk-msg-social-share .textcontent {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 10px;
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .thnk-msg-social-share .social-share-btn {
  font-size: 0;
  min-width: 44px;
  padding: 10px;
}
@media (max-width: 767px) {
  .referwrap-box.icon-newrefer-box .thnk-social-share-main .thnk-msg-social-share .social-share-btn {
    font-size: 0 !important;
    min-width: 40px !important;
    width: 40px !important;
  }
}
.referwrap-box.icon-newrefer-box .thnk-social-share-main .thnk-msg-social-share .social-share-btn img {
  margin-right: 0 !important;
}

.gender-select-dropdown,
.abtus-dropdown {
  position: relative;
  width: 100%;
  z-index: 2;
}
.gender-select-dropdown .gender-label,
.gender-select-dropdown .abtus-label,
.abtus-dropdown .gender-label,
.abtus-dropdown .abtus-label {
  background-color: #fff;
  border: 2px solid #032a3b;
  border-radius: 26px;
  color: #022a3a;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 0;
  line-height: 18px;
  max-height: 50px;
  overflow: hidden;
  padding: 14px 36px 14px 15px;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 3;
}
@media (max-width: 1199px) {
  .gender-select-dropdown .gender-label,
.gender-select-dropdown .abtus-label,
.abtus-dropdown .gender-label,
.abtus-dropdown .abtus-label {
    height: 46px;
    max-height: 46px;
    padding-block: 12px;
  }
}
@media (max-width: 991px) {
  .gender-select-dropdown .gender-label,
.gender-select-dropdown .abtus-label,
.abtus-dropdown .gender-label,
.abtus-dropdown .abtus-label {
    height: 44px;
    max-height: 44px;
    padding-block: 11px;
  }
}
@media (max-width: 575px) {
  .gender-select-dropdown .gender-label,
.gender-select-dropdown .abtus-label,
.abtus-dropdown .gender-label,
.abtus-dropdown .abtus-label {
    font-size: 13px;
    height: 34px;
    line-height: 16px;
    max-height: 34px;
    padding-block: 7px;
    padding-right: 32px;
  }
}
@media (max-width: 480px) {
  .gender-select-dropdown .gender-label,
.gender-select-dropdown .abtus-label,
.abtus-dropdown .gender-label,
.abtus-dropdown .abtus-label {
    padding-left: 10px;
  }
}
.gender-select-dropdown .gender-label::before,
.gender-select-dropdown .abtus-label::before,
.abtus-dropdown .gender-label::before,
.abtus-dropdown .abtus-label::before {
  background-image: url("/build/img/down-select.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 12px;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 12px;
}
.gender-select-dropdown .gender-label.active::before,
.gender-select-dropdown .abtus-label.active::before,
.abtus-dropdown .gender-label.active::before,
.abtus-dropdown .abtus-label.active::before {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.gender-select-dropdown .gender-item-group,
.gender-select-dropdown .abtus-list,
.abtus-dropdown .gender-item-group,
.abtus-dropdown .abtus-list {
  background-color: #fff;
  border: 2px solid #032a3b;
  border-radius: 0 0 26px 26px;
  display: none;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 31px 0 8px;
  position: absolute;
  top: calc(100% - 25px);
  width: 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .gender-select-dropdown .gender-item-group,
.gender-select-dropdown .abtus-list,
.abtus-dropdown .gender-item-group,
.abtus-dropdown .abtus-list {
    padding-top: 29px;
    top: calc(100% - 23px);
  }
}
@media (max-width: 991px) {
  .gender-select-dropdown .gender-item-group,
.gender-select-dropdown .abtus-list,
.abtus-dropdown .gender-item-group,
.abtus-dropdown .abtus-list {
    padding-top: 28px;
    top: calc(100% - 22px);
  }
}
@media (max-width: 575px) {
  .gender-select-dropdown .gender-item-group,
.gender-select-dropdown .abtus-list,
.abtus-dropdown .gender-item-group,
.abtus-dropdown .abtus-list {
    padding-top: 23px;
    top: calc(100% - 17px);
  }
}
.gender-select-dropdown .gender-item-group li .gndr-text,
.gender-select-dropdown .gender-item-group li .abtus-text,
.gender-select-dropdown .abtus-list li .gndr-text,
.gender-select-dropdown .abtus-list li .abtus-text,
.abtus-dropdown .gender-item-group li .gndr-text,
.abtus-dropdown .gender-item-group li .abtus-text,
.abtus-dropdown .abtus-list li .gndr-text,
.abtus-dropdown .abtus-list li .abtus-text {
  color: #022a3a;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
  padding: 7px 15px;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 575px) {
  .gender-select-dropdown .gender-item-group li .gndr-text,
.gender-select-dropdown .gender-item-group li .abtus-text,
.gender-select-dropdown .abtus-list li .gndr-text,
.gender-select-dropdown .abtus-list li .abtus-text,
.abtus-dropdown .gender-item-group li .gndr-text,
.abtus-dropdown .gender-item-group li .abtus-text,
.abtus-dropdown .abtus-list li .gndr-text,
.abtus-dropdown .abtus-list li .abtus-text {
    font-size: 13px;
    line-height: 16px;
  }
}
@media (max-width: 480px) {
  .gender-select-dropdown .gender-item-group li .gndr-text,
.gender-select-dropdown .gender-item-group li .abtus-text,
.gender-select-dropdown .abtus-list li .gndr-text,
.gender-select-dropdown .abtus-list li .abtus-text,
.abtus-dropdown .gender-item-group li .gndr-text,
.abtus-dropdown .gender-item-group li .abtus-text,
.abtus-dropdown .abtus-list li .gndr-text,
.abtus-dropdown .abtus-list li .abtus-text {
    padding: 5px 10px;
  }
}
.gender-select-dropdown .gender-item-group li .gndr-text:hover,
.gender-select-dropdown .gender-item-group li .abtus-text:hover,
.gender-select-dropdown .abtus-list li .gndr-text:hover,
.gender-select-dropdown .abtus-list li .abtus-text:hover,
.abtus-dropdown .gender-item-group li .gndr-text:hover,
.abtus-dropdown .gender-item-group li .abtus-text:hover,
.abtus-dropdown .abtus-list li .gndr-text:hover,
.abtus-dropdown .abtus-list li .abtus-text:hover {
  background-color: #e2e2e2;
}

.abtus-dropdown {
  z-index: 1;
}
.abtus-dropdown.opened {
  z-index: 2;
}
.abtus-dropdown .abtus-label {
  text-transform: unset;
}

.radio-boxwrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.radio-boxwrap .each-radiobox input[type=radio]:checked, .radio-boxwrap .each-radiobox input[type=radio]:not(:checked) {
  left: -9999px;
  position: absolute;
}
.radio-boxwrap .each-radiobox input[type=radio]:checked + label, .radio-boxwrap .each-radiobox input[type=radio]:not(:checked) + label {
  cursor: pointer;
  display: inline-block;
  padding-left: 28px;
  position: relative;
}
.radio-boxwrap .each-radiobox input[type=radio]:checked + label::before, .radio-boxwrap .each-radiobox input[type=radio]:not(:checked) + label::before {
  background: #fff;
  border: 2px solid #022a3a;
  border-radius: 100%;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
.radio-boxwrap .each-radiobox input[type=radio]:checked + label::after, .radio-boxwrap .each-radiobox input[type=radio]:not(:checked) + label::after {
  background: #022a3a;
  border-radius: 100%;
  content: "";
  height: 12px;
  left: 4px;
  position: absolute;
  top: 4px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 12px;
}
.radio-boxwrap .each-radiobox input[type=radio]:not(:checked) + label::after {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.radio-boxwrap .each-radiobox input[type=radio]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

div.wh-widget-send-button-wrapper.wh-widget-right div.wh-widget-send-button-wrapper-list {
  float: right !important;
  right: 0 !important;
}

#google-reviews {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
  width: 100%;
}
#google-reviews .slick-dots {
  bottom: -5%;
}

span.review-profile-image {
  padding-bottom: 15px;
}
span.review-profile-image img {
  width: 40px;
}

.awards {
  padding-top: 2%;
}
.awards .award-img {
  display: block;
  width: 100%;
}
.awards h3 {
  color: #0f2b3b;
  font-weight: 700;
  margin: 0;
  padding-bottom: 20px;
  padding-top: 10px;
  text-align: center;
  text-transform: capitalize;
}
.awards .o-band-medium {
  padding: 40px 0;
}
.awards .slick-dotted.slick-slider {
  padding: 0;
}
.awards .slick-track .slick-slider {
  padding: 10px;
}
.awards .section-icon {
  display: block;
  text-align: center;
}
.awards .section-icon img {
  width: 40px;
}

.modal-backdrop.in {
  display: none;
}

.review-item {
  border: solid 1px rgba(190, 190, 190, 0.35);
  display: block;
  padding: 15px 0 0;
  width: 30%;
}

.review-meta {
  font-size: 115%;
  min-height: 178px;
  text-align: center;
}

.product__body .review-stars ul {
  margin: 0;
}
.product__body .awards-slider .slick-dots {
  bottom: -25px;
  margin-left: 0;
}

.review-author {
  font-weight: bold;
  text-transform: capitalize;
}

.review-date {
  display: block;
  opacity: 0.6;
}

.reviewtext {
  margin-bottom: 6px;
  max-height: 6em;
  max-width: 72em;
  overflow: hidden;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  text-align: justify;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.reviewtext::before {
  bottom: 0;
  content: "...";
  position: absolute;
  right: 0;
}
.reviewtext::after {
  background: white;
  content: "";
  height: 1.1em;
  position: absolute;
  right: 0;
  width: 1em;
}

.review-text {
  margin-bottom: 6px;
  max-height: 6em;
  max-width: 72em;
  overflow: hidden;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
  text-align: center;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.review-text::before {
  bottom: 0;
  content: "...";
  position: absolute;
  right: 0;
}
.review-text::after {
  background: white;
  content: "";
  height: 1.1em;
  position: absolute;
  right: 0;
  width: 1em;
}

p {
  margin-bottom: 0;
}

.review-stars {
  font-size: 115%;
  text-align: center;
}
.review-stars ul {
  display: inline-block;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.review-stars ul li {
  float: left;
  line-height: 1;
  list-style: none !important;
  margin-right: 1px;
}
.review-stars ul li i {
  color: #e4b248;
  font-size: 1.4em;
  font-style: normal;
}
.review-stars ul li i.inactive {
  color: #c6c6c6;
}

.star::after {
  content: "★";
}

.small-image img {
  height: 100%;
  max-height: 300px;
  max-width: 300px;
  width: 100%;
}

.join .review-profile-image {
  display: block;
  width: 100%;
}
.join .review-profile-image img {
  margin: 0 auto;
}
.join .review-meta {
  font-size: 115%;
  min-height: unset;
  text-align: center;
}
.join #google-reviews {
  padding: 0;
}
.join #google-reviews .slick-dots {
  bottom: -25px;
  margin: 0;
}
.join #google-reviews .review-item .review-text::after {
  background: #0d2a3a;
  content: "";
  height: 1.1em;
  position: absolute;
  right: 0;
  width: 1em;
}

@media (min-width: 66.875em) {
  #awards-slider .slick-dots {
    bottom: 0;
    position: relative;
  }
}
@media (max-width: 580px) {
  .review-text::after {
    background: black;
  }

  .s-text::after {
    background: white;
  }

  .review-item {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-height: 273px;
    width: 100%;
  }

  .awards h3 {
    font-size: 20px;
    padding-top: 33px;
  }

  .review-meta {
    font-size: 115%;
    text-align: center;
  }

  .review-profile-image {
    display: block;
    width: 100%;
  }
  .review-profile-image img {
    margin: 0 auto;
  }

  .product__body .awards-slider .slick-dots {
    bottom: 0;
    margin-left: 0;
    position: relative;
  }

  .small-image img {
    max-height: 200px;
    max-width: 200px;
  }
}
@media (max-width: 320px) {
  .review-item {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }

  .review-meta {
    font-size: 115%;
    text-align: center;
  }
}
.slider-wrp.slick-slider .slick-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slider-wrp.slick-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slider-wrp.slick-slider .slick-list .slick-track .slick-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slider-wrp.slick-slider .slick-list .slick-track .slick-slide > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slider-wrp .review-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slider-wrp .review-item .each-review {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
}
.slider-wrp .review-item .review-content {
  height: calc(100% - 120px);
}

html[dir=rtl] #google-reviews {
  direction: rtl;
}
html[dir=rtl] #google-reviews .slick-next,
html[dir=rtl] #google-reviews .slick-prev {
  left: -13px;
  right: auto;
  -webkit-transform: translate(0, -50%) scaleX(-1);
      -ms-transform: translate(0, -50%) scaleX(-1);
          transform: translate(0, -50%) scaleX(-1);
}
@media (max-width: 768px) {
  html[dir=rtl] #google-reviews .slick-next,
html[dir=rtl] #google-reviews .slick-prev {
    left: -10px;
  }
}
html[dir=rtl] #google-reviews .slick-next::before,
html[dir=rtl] #google-reviews .slick-prev::before {
  font-size: 17px;
}
html[dir=rtl] #google-reviews .slick-prev {
  left: auto;
  right: -13px;
}
@media (max-width: 768px) {
  html[dir=rtl] #google-reviews .slick-prev {
    right: -10px;
  }
}
html[dir=rtl] #google-reviews.slider-wrp .slick-slider .slick-next::before,
html[dir=rtl] #google-reviews.slider-wrp .slick-slider .slick-prev::before {
  font-size: 17px;
}

.each-accordian {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
  border-radius: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 10px 15px;
  position: relative;
  width: 100%;
}
.each-accordian p {
  float: right;
  max-width: calc(100% - 50px);
  padding: 0;
  width: 100%;
}
@media (max-width: 420px) {
  .each-accordian p {
    max-width: calc(100% - 40px);
  }
}
.each-accordian span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 30px;
  margin-right: 20px;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  visibility: visible;
  width: 30px;
}
@media (max-width: 420px) {
  .each-accordian span {
    margin-right: 10px;
  }
}
.each-accordian span.minus-sign {
  left: 15px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-80deg);
      -ms-transform: translateY(-50%) rotate(-80deg);
          transform: translateY(-50%) rotate(-80deg);
  visibility: hidden;
}
.each-accordian.active span.plus-sign {
  opacity: 0;
  -webkit-transform: rotate(80deg);
      -ms-transform: rotate(80deg);
          transform: rotate(80deg);
  visibility: visible;
}
.each-accordian.active span.minus-sign {
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  visibility: visible;
}

/* Style the element that is used for the panel class */
div.fpanel {
  background-color: white;
  border-radius: 24px;
  display: none;
  margin-bottom: 10px;
  padding: 5px 5px 0;
  word-break: break-word;
}
div.fpanel p {
  line-height: normal;
  padding: 10px;
}
div.fpanel a {
  word-break: break-word;
}
div.fpanel ul,
div.fpanel ol {
  padding-left: 18px;
}
div.fpanel ul li p,
div.fpanel ol li p {
  padding: 0;
}

.faq-each-accordian {
  margin-bottom: 20px;
  width: 100%;
}
.faq-each-accordian:last-child {
  margin-bottom: 0;
}

.img-circle {
  border-radius: 50%;
  margin: 5px auto;
  margin-top: 5px;
  max-width: 30%;
}

@media (min-width: 61.25em) {
  .media-block:nth-of-type(odd) .media-block__bdy {
    padding-right: 0;
  }

  .media-block:nth-of-type(even) .media-block__bdy {
    padding-left: 0;
  }
}
.TSBox {
  color: #022a3a;
  font-size: 11pt;
  max-height: 400px;
  min-height: 400px;
  padding-top: 15px;
  text-align: center;
  vertical-align: middle;
}

.CLSBox {
  color: #022a3a;
  font-size: 11pt;
  padding-top: 15px;
  text-align: center;
  vertical-align: middle;
}

.item {
  margin-bottom: 30px;
  margin-left: 0%;
}

.content-slider li {
  background-color: #022a3a;
  color: #fff;
  text-align: center;
}

.content-slider h3 {
  margin: 0;
  padding: 70px 0;
}

@media (min-width: 20em) {
  .instagram\@mobile {
    margin-left: -42px;
    padding-top: 10px;
    text-align: left;
  }
}
@media (min-width: 46.25em) {
  .instagram\@tablet {
    padding-top: 10px;
    text-align: left;
  }
}
@media (min-width: 61.25em) {
  .instagram\@desktop {
    margin-left: 0;
    padding-top: 10px;
    text-align: left;
  }
}
.partnerform {
  background-color: #022a3a;
  text-align: center;
}

.descrp {
  padding-right: 20px;
}

.descrp ul {
  padding-left: 21px;
}

.tab-wrapper {
  padding-top: 0;
}

.faq-tablinks {
  display: inline-block;
  width: 100%;
}
.faq-tablinks .nav-item {
  background-color: #0d2a3a;
  border-radius: 24px;
  margin-bottom: 15px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 15px;
}
.faq-tablinks .nav-tabs {
  list-style-type: none;
  padding-left: 0;
}
@media only screen and (max-width: 992px) {
  .faq-tablinks .nav-tabs {
    display: none;
  }
}
.faq-tablinks .nav-tabs a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.faq-tablinks .nav-tabs a:hover {
  color: #f4cd00;
}
.faq-tablinks .nav-tabs a.active {
  color: #f4cd00;
}
.faq-tablinks .fpanel ol,
.faq-tablinks .fpanel ul {
  margin-bottom: 0;
  padding: 15px 20px 0;
}
.faq-tablinks .tab-content .tab-pane {
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .faq-tablinks .tab-content .tab-pane {
    margin-bottom: 30px;
  }
}
.faq-tablinks .tab-content .tab-pane:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .faq-tablinks .tab-content .tab-pane h2 {
    background: #0d2a3a;
    border-radius: 20px;
    color: white;
    font-size: 18px;
    font-weight: normal;
    padding: 10px 15px;
  }
}

.faq-center-wrp .faq-tablinks .flist-wrap {
  position: sticky;
  top: 120px;
}
@media (max-width: 1199px) {
  .faq-center-wrp .faq-tablinks .flist-wrap {
    top: 105px;
  }
}
@media (max-width: 991px) {
  .faq-center-wrp .faq-tablinks .search-faqs .tab-content .u-h2 {
    position: sticky;
    top: 105px;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .faq-center-wrp .faq-tablinks .search-faqs .tab-content .u-h2 {
    top: 92px;
  }
}

.video-wrp {
  text-align: center;
  width: 100%;
}
.video-wrp .video-wrp-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  width: 100%;
}
@media (max-width: 580px) {
  .video-wrp .video-wrp-inner {
    display: block;
    padding: 11px;
  }
}
@media (max-width: 580px) {
  .video-wrp .video-wrp-inner .button {
    margin-bottom: 20px;
  }
}
.video-wrp .video-card,
.video-wrp .card-medium {
  background-color: #f5f6f7;
  border: 3px solid #f4cd00;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  width: 33%;
}
@media (max-width: 580px) {
  .video-wrp .video-card,
.video-wrp .card-medium {
    max-width: 400px !important;
    width: 100%;
  }
}
.video-wrp .video-card:hover,
.video-wrp .card-medium:hover {
  border-color: #f5f6f7;
}
.video-wrp .video-card:hover .button,
.video-wrp .card-medium:hover .button {
  background-color: #022a3a;
  color: #fff;
}
.video-wrp .video-card .video-card-img,
.video-wrp .card-medium .video-card-img {
  border: 0;
  border-radius: 20px;
}
.video-wrp .video-card .video-card-img img,
.video-wrp .card-medium .video-card-img img {
  border-radius: 20px;
}
.video-wrp .video-card .video-card-body,
.video-wrp .card-medium .video-card-body {
  background: #f5f6f7;
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .video-wrp .video-card .video-card-body .fix-height-wrp,
.video-wrp .card-medium .video-card-body .fix-height-wrp {
    height: auto;
  }
}
.video-wrp .video-card .video-card-body .button:last-child,
.video-wrp .card-medium .video-card-body .button:last-child {
  margin-bottom: 0;
}
.video-wrp .video-card {
  background-color: transparent;
}
.video-wrp h4 {
  color: #fff;
}
.video-wrp .u-text-center {
  color: #fff;
}
.video-wrp .u-text-center a {
  color: #fff;
}

.border_rs .video-card {
  border: 0;
  position: relative;
}
.border_rs .video-card:hover::before {
  border-color: #f5f6f7;
}
.border_rs .video-card::before {
  background: transparent;
  border: 3px solid #f4cd00;
  border-radius: 20px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .border_rs .video-card .video-card-img img {
    width: 100%;
  }
}

.membership-location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}

.location-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid transparent;
  border-radius: 20px;
  display: inline-block;
  max-height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 20em) {
  .location-img {
    max-height: 100%;
  }
}

.membership-location .each-location-card {
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  background-color: #f4cd00;
  border-radius: 20px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  float: left;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 100%;
}
@media (min-width: 581px) {
  .membership-location .each-location-card {
    height: calc(100% - 20px);
  }
}
.membership-location .each-location-card::after {
  border: 4px solid #f4cd00;
  border-radius: 20px;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (min-width: 581px) and (max-width: 1599px) {
  .membership-location .each-location-card .location-img {
    position: relative;
  }
}
@media (min-width: 581px) and (max-width: 1599px) {
  .membership-location .each-location-card .location-img::before {
    content: "";
    display: block;
    padding-top: 58.99%;
  }
}
.membership-location .each-location-card .location-img img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 581px) and (max-width: 1599px) {
  .membership-location .each-location-card .location-img img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .membership-location .each-location-card .location-img img {
    height: auto;
  }
}
.membership-location .each-location-card .top-box {
  width: 100%;
}
.membership-location .each-location-card .bottom-box {
  padding-top: 0;
  width: 100%;
}
.membership-location .each-location-card h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.membership-location .each-location-card p {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  height: 67px;
  letter-spacing: 0.5px;
  line-height: 22px;
  overflow: hidden;
  width: 100%;
}
.membership-location .each-location-card:hover {
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.membership-location .each-location-card:hover .button {
  background-color: #fff;
  border: 2px solid #022a3a;
  color: #022a3a;
}
.membership-location .each-location-card:hover .location-img::after {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.membership-location .each-location-card:hover::after {
  border: 4px solid #022a3a;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .membership-location .u-width-1\/5\@desktop {
    width: 25% !important;
  }
}
@media (min-width: 980px) and (max-width: 1199px) {
  .membership-location .u-width-1\/5\@desktop {
    width: 33% !important;
  }
}

.hover-map {
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 20px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  width: 100%;
}

.membership-location .each-location-card:hover .hover-map {
  visibility: visible;
}

.location-cards .u-margin {
  margin: 0 0 10px !important;
}

.each-location-card .coming-soon {
  bottom: 0;
  color: white;
  display: block;
  height: 31px;
  left: 0;
  margin: 0 auto;
  padding: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
  width: 130px;
}
.each-location-card .coming-soon p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 99;
}
.each-location-card .coming-soon::after {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  content: "";
  height: 37px;
  left: 0;
  position: absolute;
  width: 132px;
}

.location-cards {
  display: inline-block;
  padding: 10px;
  width: 100%;
  z-index: 9;
}
.location-cards h3 {
  margin: 10px !important;
}
.location-cards .button {
  background-color: #022a3a;
  border: 2px solid #022a3a;
  color: #f4cd00;
  margin-bottom: 10px;
  margin-top: 10px;
}
.location-cards .button:hover {
  background-color: #fff;
  border: 2px solid #022a3a;
  color: #022a3a;
}

.mrl-0 {
  margin-left: 0;
}

@media only screen and (max-width: 1200px) {
  .location-cards {
    padding: 0 10px 5px;
  }

  .each-location-card .coming-soon p {
    font-size: 12px;
    height: unset;
    line-height: unset;
    padding: 5px 0 0;
  }

  .location-cards h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .each-location-card .coming-soon::after {
    height: 30px;
  }
}
@media only screen and (max-width: 1100px) {
  .each-location-card .coming-soon {
    top: 51%;
  }
}
@media only screen and (max-width: 1024px) {
  .location-cards {
    padding: 0 10px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .each-location-card .coming-soon {
    top: 62%;
  }

  .location-cards {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .each-location-card .coming-soon {
    top: 57%;
  }
}
@media only screen and (max-width: 580px) {
  .each-location-card .coming-soon::after {
    background-color: rgba(0, 0, 0, 0.6);
    height: 37px;
    left: 0;
    right: 0;
    width: 132px;
  }

  .location-cards {
    text-align: center;
    width: 100%;
  }

  .each-location-card .coming-soon {
    left: 0;
    padding: 0;
    top: 57%;
  }
  .each-location-card .coming-soon p {
    text-align: center;
  }

  .membership-location .o-layout__item {
    width: 100% !important;
  }
}
@media only screen and (max-width: 420px) {
  .membership-location .each-location-card {
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 320px) {
  .membership-location .each-location-card {
    max-width: 100% !important;
  }
}
.gymnearme-section {
  padding: 50px 0 56px;
}
.gymnearme-section .para p {
  margin-bottom: 24px;
}
.gymnearme-section .para p:last-child {
  margin-bottom: 0;
}

.gymnearme-tab-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 840px) {
  .gymnearme-tab-main .search-btn-wrap {
    text-align: center;
    width: 100%;
  }
}

.gymnearme-dropdown {
  margin: 0 18px 30px 0;
  max-width: 100%;
  position: relative;
  width: 500px;
}
@media (max-width: 840px) {
  .gymnearme-dropdown {
    margin: 0 auto 24px;
  }
}
.gymnearme-dropdown .gymnearme-tab-label {
  border: 2px solid #022a3a;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 24px;
  overflow: hidden;
  padding: 15px 55px 15px 20px;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}
.gymnearme-dropdown .gymnearme-tab-label::before {
  border-left: 11px solid transparent;
  border-radius: 3px;
  border-right: 11px solid transparent;
  border-top: 12px solid #022a3a;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 0;
  z-index: -1;
}
.gymnearme-dropdown .gymnearme-tab-label.open::before {
  -webkit-transform: translateY(-50%) scaleY(-1);
      -ms-transform: translateY(-50%) scaleY(-1);
          transform: translateY(-50%) scaleY(-1);
}
.gymnearme-dropdown .gymnearme-tab-lists {
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px 0 #022a3a80;
          box-shadow: 0 0 4px 0 #022a3a80;
  display: none;
  width: 100%;
}
.gymnearme-dropdown .gymnearme-tab-lists .gymnearme-tab-btn {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #022a3a1a;
  color: #7c7c78;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.gymnearme-dropdown .gymnearme-tab-lists .gymnearme-tab-btn:hover {
  background-color: rgba(2, 42, 58, 0.01);
}
.gymnearme-dropdown .gymnearme-tab-lists .gymnearme-tab-btn.tab-active {
  background-color: #fff;
  color: #022a3a;
}

.search-btn {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  background-color: #022a3a;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 24px;
  margin-bottom: 30px;
  outline: none;
  padding: 17px 24px 17px 56px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .search-btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media (max-width: 767px) {
  .search-btn {
    font-size: 16px;
    line-height: 22px;
    padding: 15px 20px 15px 56px;
  }
}
.search-btn:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
.search-btn:hover img {
  -webkit-filter: none;
          filter: none;
}
.search-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.search-btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  height: auto;
  left: 20px;
  position: absolute;
  top: 17px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  width: 24px;
  z-index: -1;
}
@media (max-width: 991px) {
  .search-btn img {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
@media (max-width: 767px) {
  .search-btn img {
    top: 15px;
  }
}

.gymnearme-tab-contents {
  width: 100%;
}
.gymnearme-tab-contents .gymnearme-tab-item {
  display: none;
}
.gymnearme-tab-contents .gymnearme-tab-item .membership-location {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -20px;
}
.gymnearme-tab-contents .gymnearme-tab-item .membership-location > .o-layout__item {
  padding: 10px 10px 0;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .gymnearme-tab-contents .gymnearme-tab-item .membership-location > .o-layout__item {
    width: 33.33% !important;
  }
}
@media (max-width: 580px) {
  .gymnearme-tab-contents .gymnearme-tab-item .membership-location > .o-layout__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.gymnearme-tab-contents .gymnearme-tab-item .membership-location .location-img img {
  width: 100%;
}
@media (max-width: 992px) {
  .gymnearme-tab-contents .gymnearme-tab-item .membership-location .each-location-card {
    padding-bottom: 16px;
  }
}
@media (max-width: 580px) {
  .gymnearme-tab-contents .gymnearme-tab-item .membership-location .each-location-card p {
    height: auto;
  }
}
.gymnearme-tab-contents .gymnearme-tab-item .membership-location .location-cards h3 {
  font-size: 23px;
}
@media (max-width: 991px) {
  .gymnearme-tab-contents .gymnearme-tab-item .membership-location .location-cards h3 {
    font-size: 22px;
  }
}

.search-faqs .search-container {
  background-color: #022a3a;
  border-radius: 20px;
  color: white;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  min-height: 164px;
  padding: 34px;
  text-align: center;
  width: 100%;
}
.search-faqs .search-container span {
  display: inline-block;
  padding-bottom: 20px;
}
.search-faqs input#search-bar {
  border: 1px solid #d0cfce;
  border-radius: 20px;
  font-size: 1rem;
  height: 45px;
  margin: 0 auto;
  outline: none;
  padding: 10px 60px 10px 20px;
  width: 100%;
}
.search-faqs input#search-bar:focus {
  border: 1px solid #008abf;
  color: #008abf;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
}
.search-faqs input#search-bar:focus::-webkit-input-placeholder, .search-faqs input#search-bar:focus::-moz-placeholder, .search-faqs input#search-bar:focus:-ms-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  -o-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
}
.search-faqs .search-contain-in {
  position: relative;
  width: 100%;
}
.search-faqs .search-contain-in a,
.search-faqs .search-contain-in button {
  height: 100%;
  right: 15px;
  top: 0;
}

.search-blog .search-container {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.search-blog input#search-bar {
  border: 1px solid #d0cfce;
  font-size: 1rem;
  height: 45px;
  margin: 0 auto;
  outline: none;
  padding: 0 20px;
  width: 100%;
}
.search-blog input#search-bar:focus {
  border: 1px solid #008abf;
  color: #008abf;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
}
.search-blog input#search-bar:focus::-webkit-input-placeholder, .search-blog input#search-bar:focus::-moz-placeholder, .search-blog input#search-bar:focus:-ms-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  -o-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
}
.search-blog .blrow-wrp {
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.blrow-wrp {
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.srch-result-bar {
  border: 1px solid #d0cfce;
  border-radius: 24px;
  float: left;
  font-size: 1rem;
  outline: none;
  padding: 17px 20px;
  width: calc(80% - 40px);
}
@media (max-width: 767px) {
  .srch-result-bar {
    width: 70%;
  }
}

.srch-block {
  display: inline-block;
  padding: 20px 0;
  width: 100%;
}
.srch-block h1 {
  text-align: center;
}

.search-info-wrp {
  background-color: #022a3a;
  border-radius: 20px;
  color: #fff;
  padding: 20px;
  text-transform: uppercase;
}

.search-result {
  border-left: 2px solid #022a3a;
  border-radius: 20px;
  -webkit-box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.2), 0 15px 50px 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.2), 0 15px 50px 0 rgba(0, 0, 0, 0.1) !important;
  margin-bottom: 10px;
  padding: 25px 10px;
}
.search-result h2 {
  margin-bottom: 0;
}
.search-result a {
  color: #333;
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.pagination-outer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

#pagination {
  margin: 20px auto;
  padding: 0;
  text-align: center;
}
#pagination span {
  background: #022a3a;
  color: #fff !important;
}
#pagination li {
  display: inline-block;
  width: 30px;
}
#pagination li:first-child {
  width: 100px;
}
#pagination li:last-child {
  width: 100px;
}
#pagination li a {
  border: 1px solid #022a3a;
  color: #022a3a;
  display: block;
  float: left;
  font-weight: bold;
  padding: 5px 10px;
  text-decoration: none;
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
#pagination li a:hover:not(.active) {
  background: #022a3a;
  color: #fff;
}
#pagination li span {
  border: 1px solid #022a3a;
  color: #022a3a;
  display: block;
  float: left;
  font-weight: bold;
  padding: 5px 10px;
  text-decoration: none;
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
#pagination li span:hover:not(.active) {
  background: #022a3a;
  color: #fff;
}

#pagination.active {
  background-color: #4caf50;
  color: #022a3a;
}

@media (max-width: 420px) {
  #pagination li {
    display: none;
  }
  #pagination li:first-child {
    display: inline-block;
  }
  #pagination li:last-child {
    display: inline-block;
  }
}
.searchbar {
  position: relative;
}

.searchbar.showSearchbar .togglesearch {
  display: block;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.index-search-i {
  background: #022a3a;
  color: #f4cd00;
  cursor: pointer;
  display: block;
  padding: 0 10px;
  position: relative;
  text-decoration: none;
}
.index-search-i:hover {
  background: transparent;
  border-bottom: 1px solid #f4cd00;
  color: #f4cd00;
}
@media (max-width: 1300px) {
  .index-search-i:hover {
    border-bottom: 0;
  }
}

.mobile-show .tgl-search-ip {
  border: 1px solid #022a3b;
  line-height: 30px;
  outline: none;
  padding: 5px 65px 5px 15px;
  width: 100%;
}
.mobile-show .tgl-search-btn {
  background-color: #f4cd00;
  border: 1px solid #022a3a;
  color: #022a3a;
  cursor: pointer;
  font-weight: 700;
  line-height: 0;
  outline: none;
  padding: 20px 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
}

.desktop-show .tgl-search-ip {
  border: 1px solid #022a3b;
  outline: none;
  padding: 10px 65px 10px 15px;
  width: 100%;
}
.desktop-show .tgl-search-btn {
  background-color: #f4cd00;
  border: 1px solid #022a3a;
  color: #022a3a;
  cursor: pointer;
  font-weight: 700;
  outline: none;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
}
.desktop-show .togglesearch {
  display: none;
  height: auto;
  line-height: 25px;
  position: absolute;
  right: 0;
  top: 60px;
  width: 306px;
  z-index: 9;
}

.ezsearch-no-results {
  color: red;
  text-align: center;
}

.ezsearch-custom-results {
  text-align: center;
}

.search-container {
  display: inline-block;
  position: relative;
  width: 100%;
}
.search-container button {
  display: block;
  font-size: -20px;
  position: absolute;
  right: 0;
  top: 2px;
}
.search-container .o-icon {
  height: 42px;
  width: 29px;
}

.nav-mobile .togglesearch {
  height: auto;
  line-height: 25px;
  position: center;
  right: 0;
  top: unset;
  width: 306px;
  z-index: 9;
}
@media (max-width: 1024px) {
  .nav-mobile .togglesearch {
    width: 300px;
  }
}
@media (max-width: 320px) {
  .nav-mobile .togglesearch {
    width: 250px;
  }
}
.nav-mobile .index-search-i {
  background: #022a3a;
  color: #f4cd00;
  cursor: pointer;
  display: block;
  padding: unset;
  position: relative;
  text-decoration: none;
  vertical-align: top;
}
.nav-mobile input {
  border-radius: 0;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10000000;
}

.modal-dialog {
  margin: 10px;
  position: relative;
  width: auto;
}
@media (min-width: 768px) {
  .modal-dialog {
    margin: 30px auto;
    width: 600px;
  }
}
.modal-dialog .iti__country-list {
  margin-left: 0;
  width: 513px;
}

.modal-title {
  line-height: 1.42857143;
  margin: 0;
}

.modal-body {
  padding: 15px;
  position: relative;
}

.modal-content {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
  position: relative;
}
@media (max-width: 768px) {
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}

.modal {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  display: none;
  left: 0;
  outline: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
}
.modal .modal-overlay {
  backdrop-filter: blur(5px);
  background: transparent;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.modal .modal-dialog {
  position: relative;
  z-index: 2;
}

.free-trial-popup.modal .modal-dialog {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  min-height: calc(100% - 40px);
  top: 20px !important;
}
.free-trial-popup.modal .modal-dialog .modal-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
  overflow: hidden;
  width: 100%;
  z-index: 9;
}
.free-trial-popup .checkbox {
  display: inline-block;
  max-width: 3%;
  width: 100%;
}
@media (max-width: 580px) {
  .free-trial-popup .checkbox {
    margin: 0;
    max-width: 7%;
  }
}
@media (max-width: 420px) {
  .free-trial-popup .success-desc-msg h3 {
    margin-top: 10px;
  }
}
@media (max-width: 580px) {
  .free-trial-popup .success-desc-msg h3 {
    margin: 11px;
  }
}
.free-trial-popup .titleagree {
  display: inline-block;
  max-width: 97%;
  width: 100%;
}
@media (max-width: 580px) {
  .free-trial-popup .titleagree {
    margin: 0;
    max-width: 93%;
  }
}
.free-trial-popup p {
  color: #fff;
}
@media (max-width: 580px) {
  .free-trial-popup p {
    font-size: 14px;
  }
}
.free-trial-popup .umbraco-forms-submitmessage {
  color: white;
  font-size: xx-large;
  text-align: center;
}
.free-trial-popup .modal-pt .modal-header .close {
  background-color: #022a3a;
  font-size: 35px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
}
.free-trial-popup .modal-header {
  background-color: #f4cd00;
  color: white;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
  text-align: center;
}
.free-trial-popup .modal-header .close {
  margin-right: -25px;
  margin-top: -47px;
}
@media (max-width: 420px) {
  .free-trial-popup .modal-header .close {
    margin-right: -19px;
    margin-top: -73px;
  }
}
@media (max-width: 320px) {
  .free-trial-popup .modal-header .close {
    margin-right: -24px;
    margin-top: -77px;
  }
}
@media (max-width: 420px) {
  .free-trial-popup .modal-header {
    padding: 0;
  }
}
@media (max-width: 320px) {
  .free-trial-popup .modal-header {
    padding: 25px 25px 15px;
  }
}
.free-trial-popup .button:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
@media (max-width: 320px) {
  .free-trial-popup .button {
    padding: 16px 40px;
  }
}
.free-trial-popup .modal-body {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
  padding: 25px 35px;
  position: relative;
}
@media (max-width: 580px) {
  .free-trial-popup .modal-body {
    padding: 25px 15px;
  }
}
@media (max-width: 580px) {
  .free-trial-popup .modal-body h3 {
    color: white;
    font-size: 20px;
    margin: 20px;
  }
}
@media (max-width: 420px) {
  .free-trial-popup .modal-body h3 {
    padding: 16px 60px;
  }
}
@media (max-width: 320px) {
  .free-trial-popup .modal-body h3 {
    padding: 11px;
  }
}
.free-trial-popup .modal-body ul {
  margin-left: 16px;
}
.free-trial-popup .modal-body .iti__country-list {
  margin-left: 0;
}
@media (max-width: 580px) {
  .free-trial-popup .form__field {
    margin: 18px 0;
  }
}
@media (max-width: 320px) {
  .free-trial-popup .form__field {
    margin: 14px 0;
  }
}
@media (max-width: 320px) {
  .free-trial-popup .input-text {
    padding: 8px 11px 9px;
  }
}
.free-trial-popup .hyroxform .form-group .input-text {
  background-color: #fff;
}
@media (max-width: 420px) {
  .free-trial-popup .hyroxform .form-group .input-text {
    font-size: 13px;
  }
}
.free-trial-popup .hyroxform .form-group .input-text::-webkit-input-placeholder {
  font-size: 16px;
}
.free-trial-popup .hyroxform .form-group .input-text::-moz-placeholder {
  font-size: 16px;
}
.free-trial-popup .hyroxform .form-group .input-text::-ms-input-placeholder {
  font-size: 16px;
}
.free-trial-popup .hyroxform .form-group .input-text::placeholder {
  font-size: 16px;
}
@media (max-width: 420px) {
  .free-trial-popup .hyroxform .form-group .input-text::-webkit-input-placeholder {
    font-size: 13px;
  }
  .free-trial-popup .hyroxform .form-group .input-text::-moz-placeholder {
    font-size: 13px;
  }
  .free-trial-popup .hyroxform .form-group .input-text::-ms-input-placeholder {
    font-size: 13px;
  }
  .free-trial-popup .hyroxform .form-group .input-text::placeholder {
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .free-trial-popup .hyroxform .form-group.countrycodewithmobile .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 13px;
  }
}
.free-trial-popup.freetrial-new {
  backdrop-filter: blur(0);
  background-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
}
.free-trial-popup.freetrial-new.modal.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.free-trial-popup.freetrial-new.modal.fade:not(.In) {
  opacity: 0;
}
.free-trial-popup.freetrial-new.modal.fade.In .modal-dialog {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.free-trial-popup.freetrial-new.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
.free-trial-popup.freetrial-new.modal.fade .modal-dialog .modal-body {
  overflow: unset;
}
.free-trial-popup.freetrial-new.modal .modal-dialog {
  height: auto;
  margin: 1.75rem auto;
  max-width: 1124px;
  min-height: calc(100% - 3.5rem);
  padding-bottom: 15px;
  padding-top: 15px;
  top: 0 !important;
  width: calc(100% - 30px);
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new.modal .modal-dialog {
    max-width: 740px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new.modal .modal-dialog {
    margin-bottom: 0;
    margin-top: 0;
    min-height: calc(100% - 1rem);
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.free-trial-popup.freetrial-new.modal .modal-dialog .modal-content {
  overflow: unset;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new.modal .modal-dialog .modal-content {
    overflow: unset;
  }
}
.free-trial-popup.freetrial-new.privy-popup .modal-content::before {
  background-image: unset !important;
  display: none;
}
.free-trial-popup.freetrial-new.privy-popup .form-thank-you-msg {
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new.privy-popup .form-thank-you-msg {
    margin-bottom: 0;
  }
}
.free-trial-popup.freetrial-new .modal-content {
  background-clip: padding-box;
  background-color: #fff;
  border: 2px solid #022a3a;
  border-radius: 22px;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .modal-content {
    margin-top: 45px;
  }
}
.free-trial-popup.freetrial-new .modal-content::before {
  background-image: url("/build/svg/freetrial-strip-shape.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 236px;
  position: absolute;
  right: 0;
  width: 422px;
  z-index: 0;
}
@media (max-width: 1199px) {
  .free-trial-popup.freetrial-new .modal-content::before {
    height: 176px;
    width: 392px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .modal-content::before {
    height: 120px;
    width: 224px;
  }
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .modal-content::before {
    height: 103px;
    width: 193px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .modal-content::before {
    background-image: url("/build/svg/freetrial-strip-shape-mobi-icon.svg");
    height: 93px;
    width: 173px;
  }
}
.free-trial-popup.freetrial-new .modal-content .modal-header {
  padding: 0;
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary);
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 20px;
  border: 2px solid transparent;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 5px;
  top: 5px;
  width: 40px;
  z-index: 3;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .modal-content .modal-header .close {
    background-size: auto 14px;
    height: 24px;
    width: 24px;
  }
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close::after, .free-trial-popup.freetrial-new .modal-content .modal-header .close::before {
  background-color: var(--white);
  content: " ";
  display: block;
  height: 26px;
  position: absolute;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 3px;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .modal-content .modal-header .close::after, .free-trial-popup.freetrial-new .modal-content .modal-header .close::before {
    height: 16px;
    width: 2px;
  }
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close:hover {
  background-color: var(--white);
  border-color: var(--primary);
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close:hover::before, .free-trial-popup.freetrial-new .modal-content .modal-header .close:hover::after {
  background-color: var(--primary);
}
.free-trial-popup.freetrial-new .modal-content .modal-header .close span {
  display: none;
}
.free-trial-popup.freetrial-new .modal-dialog .modal-body {
  padding: 42px 40px 52px;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .modal-dialog .modal-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 480px) {
  .free-trial-popup.freetrial-new .modal-dialog .modal-body {
    padding-left: 13px;
    padding-right: 13px;
  }
}
.free-trial-popup.freetrial-new form {
  width: 100%;
}
.free-trial-popup.freetrial-new .form-title {
  margin-bottom: 20px;
  padding: 0 76px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form-title {
    padding-left: 34px;
    padding-right: 34px;
  }
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .form-title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form-title {
    padding-left: 0;
    padding-right: 0;
  }
}
.free-trial-popup.freetrial-new .form-title h3 {
  color: #022a3a;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0 0 10px;
  padding: 0;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .free-trial-popup.freetrial-new .form-title h3 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form-title h3 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .form-title h3 {
    font-size: 27px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form-title h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 4px;
  }
}
.free-trial-popup.freetrial-new .form-title h3:last-child {
  margin-bottom: 0;
}
.free-trial-popup.freetrial-new p {
  color: var(--primary);
}
.free-trial-popup.freetrial-new .umbraco-forms-page {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  width: 563px;
  z-index: 2;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .umbraco-forms-page {
    width: 260px;
  }
}
.free-trial-popup.freetrial-new .form__field {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .form__field {
    margin-bottom: 14px;
  }
}
.free-trial-popup.freetrial-new .form__field.phone.cnt-phone-space .input-text-white {
  text-indent: 13px;
}
.free-trial-popup.freetrial-new .form__field.phone .iti + .field-validation-error,
.free-trial-popup.freetrial-new .form__field.phone .iti + .custom-phone-validation {
  margin-top: 4px;
}
.free-trial-popup.freetrial-new .form__field.phone .iti__country {
  padding: 9px 10px;
}
.free-trial-popup.freetrial-new .form__field.phone .iti__country-name {
  color: #000;
}
.free-trial-popup.freetrial-new .form__field.phone .iti__country-name, .free-trial-popup.freetrial-new .form__field.phone .iti__country-code {
  font-size: 14px;
  line-height: 18px;
}
.free-trial-popup.freetrial-new .form__field.phone .iti__flag-container {
  bottom: auto;
  left: 0;
  padding: 1px;
  position: absolute;
  top: 5px;
}
@media (max-width: 1199px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container {
    top: 3px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container {
    top: 2px;
  }
}
.free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag {
  background-color: transparent;
  border: 1px solid #022a3a;
  border-radius: 96px;
  height: 38px;
  margin-left: 5px;
  padding: 0 11px;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag {
    margin-left: 2px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag {
    height: 28px;
  }
}
.free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-left: 6px;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__selected-dial-code {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__selected-dial-code {
    font-size: 13px;
  }
}
.free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__arrow {
  background: transparent;
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  height: 7px;
  margin-left: 6px;
  width: 12px;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__arrow {
    height: 6px;
    width: 11px;
  }
}
.free-trial-popup.freetrial-new .form__field.phone .iti__flag-container .iti__selected-flag .iti__arrow--up {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.free-trial-popup.freetrial-new .form__field .field-validation-valid {
  color: #f00;
  display: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .form__field .field-validation-valid {
    font-size: 12px;
    line-height: 16px;
  }
}
.free-trial-popup.freetrial-new .form__field .input-text-white {
  background-color: #e4e4e4;
  border: 1px solid #e4e4e4;
  border-radius: 24px;
  color: #022a3a;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 20px;
  max-height: 50px;
  padding: 14px 23px;
  width: 100%;
}
@media (max-width: 1199px) {
  .free-trial-popup.freetrial-new .form__field .input-text-white {
    height: 46px;
    max-height: 46px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .form__field .input-text-white {
    height: 44px;
    max-height: 44px;
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form__field .input-text-white {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding: 6px 13px;
  }
}
.free-trial-popup.freetrial-new .form__field .input-text-white::-webkit-input-placeholder {
  color: #022a3a;
  font-size: 16px;
  opacity: 1;
}
.free-trial-popup.freetrial-new .form__field .input-text-white::-moz-placeholder {
  color: #022a3a;
  font-size: 16px;
  opacity: 1;
}
.free-trial-popup.freetrial-new .form__field .input-text-white::-ms-input-placeholder {
  color: #022a3a;
  font-size: 16px;
  opacity: 1;
}
.free-trial-popup.freetrial-new .form__field .input-text-white::placeholder {
  color: #022a3a;
  font-size: 16px;
  opacity: 1;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .form__field .input-text-white::-webkit-input-placeholder {
    font-size: 13px;
  }
  .free-trial-popup.freetrial-new .form__field .input-text-white::-moz-placeholder {
    font-size: 13px;
  }
  .free-trial-popup.freetrial-new .form__field .input-text-white::-ms-input-placeholder {
    font-size: 13px;
  }
  .free-trial-popup.freetrial-new .form__field .input-text-white::placeholder {
    font-size: 13px;
  }
}
.free-trial-popup.freetrial-new .location-classes .location-validation-error,
.free-trial-popup.freetrial-new .location-classes .field-validation-error,
.free-trial-popup.freetrial-new .location-classes .custom-phone-validation,
.free-trial-popup.freetrial-new .umbraco-forms-field .location-validation-error,
.free-trial-popup.freetrial-new .umbraco-forms-field .field-validation-error,
.free-trial-popup.freetrial-new .umbraco-forms-field .custom-phone-validation {
  color: #f00;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .free-trial-popup.freetrial-new .location-classes .location-validation-error,
.free-trial-popup.freetrial-new .location-classes .field-validation-error,
.free-trial-popup.freetrial-new .location-classes .custom-phone-validation,
.free-trial-popup.freetrial-new .umbraco-forms-field .location-validation-error,
.free-trial-popup.freetrial-new .umbraco-forms-field .field-validation-error,
.free-trial-popup.freetrial-new .umbraco-forms-field .custom-phone-validation {
    font-size: 12px;
    line-height: 16px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white .free-location_label {
  background-color: #e4e4e4;
  border-radius: 24px;
  color: #022a3a;
  font-weight: 500;
  height: 50px;
  letter-spacing: 0;
  line-height: 20px;
  max-height: 50px;
  padding: 15px 60px 15px 24px;
}
@media (max-width: 1199px) {
  .free-trial-popup.freetrial-new .location_dropdown-white .free-location_label {
    height: 46px;
    max-height: 46px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white .free-location_label {
    height: 44px;
    max-height: 44px;
    padding: 12px 50px 12px 20px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white .free-location_label {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding: 7px 36px 7px 13px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white .free-location_label::before {
  background-image: url("/build/svg/icons/angle-down-dark.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  content: "";
  display: inline-block;
  height: 12px;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  width: 20px;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white .free-location_label::before {
    height: 10px;
    right: 20px;
    width: 17px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white .free-location_label::before {
    height: 7px;
    right: 15px;
    width: 13px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white .free-location_label.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.free-trial-popup.freetrial-new .location_dropdown-white .free-location_label.active::before {
  -webkit-transform: translateY(-50%) scaleY(-1);
      -ms-transform: translateY(-50%) scaleY(-1);
          transform: translateY(-50%) scaleY(-1);
}
.free-trial-popup.freetrial-new .location_dropdown-white .loc-item-group-js {
  display: none;
  overflow: hidden;
}
.free-trial-popup.freetrial-new .location_dropdown-white .loc-item-group-js > ul {
  display: block;
}
.free-trial-popup.freetrial-new .location_dropdown-white ul {
  background-color: #e4e4e4;
  border: 1px solid #e4e4e4;
  border-radius: 0 0 24px 24px;
  border-top-color: #fff;
  position: relative;
  top: 0;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul {
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul {
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white ul li span {
  color: #022a3a;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-transition: backgroun-color 0.3s linear;
  -o-transition: backgroun-color 0.3s linear;
  transition: backgroun-color 0.3s linear;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul li span {
    padding: 7px 20px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul li span {
    font-size: 13px;
    line-height: 20px;
    padding: 5px 13px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white ul li span:hover {
  background-color: #fff;
}
.free-trial-popup.freetrial-new .hs-submit {
  background-color: #022a3a;
  border: 1px solid #022a3a;
  border-radius: 96px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  max-width: 100%;
  min-width: 189px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color, border-color, color 0.3s ease;
  -o-transition: background-color, border-color, color 0.3s ease;
  transition: background-color, border-color, color 0.3s ease;
  width: auto;
}
@media (max-width: 1199px) {
  .free-trial-popup.freetrial-new .hs-submit {
    font-size: 20px;
    line-height: 24px;
    min-width: 160px;
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .hs-submit {
    font-size: 16px;
    line-height: 22px;
    min-width: 140px;
    padding-bottom: 11px;
    padding-top: 11px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .hs-submit {
    font-size: 15px;
    line-height: 19px;
    min-width: 76px;
    padding: 6px 24px;
  }
}
.free-trial-popup.freetrial-new .hs-submit:not(:disabled):hover {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #022a3a;
}
.free-trial-popup.freetrial-new .backgroun-click {
  background: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .link-share-box {
    -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
  }
}
.free-trial-popup.freetrial-new .link-share-box .referlink {
  border-radius: 24px 0 0 24px;
}
@media (max-width: 690px) {
  .free-trial-popup.freetrial-new .link-share-box .referlink {
    font-size: 15px;
    margin-bottom: 0;
  }
}
@media (max-width: 485px) {
  .free-trial-popup.freetrial-new .link-share-box .referlink {
    font-size: 13px;
  }
}
@media (max-width: 410px) {
  .free-trial-popup.freetrial-new .link-share-box .referlink {
    font-size: 11px;
    height: 40px;
    max-height: 40px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 369px) {
  .free-trial-popup.freetrial-new .link-share-box .referlink {
    font-size: 10px;
    height: 36px;
    max-height: 36px;
    padding-bottom: 7px;
    padding-top: 7px;
  }
}
.free-trial-popup.freetrial-new .link-share-box button {
  border-radius: 0 24px 24px 0;
}
@media (max-width: 690px) {
  .free-trial-popup.freetrial-new .link-share-box button {
    background-image: url("/build/svg/icons/copy-icon-white.svg");
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    font-size: 0;
    width: 44px;
  }
}
@media (max-width: 485px) {
  .free-trial-popup.freetrial-new .link-share-box button {
    background-position: 7px center;
    background-size: 20px auto;
  }
}
@media (max-width: 410px) {
  .free-trial-popup.freetrial-new .link-share-box button {
    height: 40px;
    max-height: 40px;
  }
}
@media (max-width: 369px) {
  .free-trial-popup.freetrial-new .link-share-box button {
    background-size: 17px auto;
    height: 36px;
    max-height: 36px;
    width: 40px;
  }
}
@media (max-width: 690px) {
  .free-trial-popup.freetrial-new .link-share-box button:hover {
    background-image: url("/build/svg/icons/copy-icon-dark.svg");
  }
}
.free-trial-popup.freetrial-new .thnk-msg-social-share .social-share-btn {
  border-radius: 24px;
}

.modal-backdrop {
  background-color: #000;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1040;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.pr-0 {
  padding-right: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.modal.fade .modal-dialog {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 40px);
  top: calc(50% + 27px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (max-width: 1199px) {
  .modal.fade .modal-dialog {
    height: calc(100% - 44px);
    top: calc(50% + 22px);
  }
}
@media (max-width: 767px) {
  .modal.fade .modal-dialog {
    height: calc(100% - 60px);
    top: calc(50% - 10px);
    width: calc(100% - 30px);
  }
}
@media (max-width: 530px) {
  .modal.fade .modal-dialog {
    height: calc(100% - 52px);
    top: calc(50% - 10px);
  }
}
.modal.fade .modal-dialog .modal-body {
  overflow-y: auto;
}

.modal-footer {
  border-top: 1px solid #e5e5e5;
  padding: 15px;
  text-align: right;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  height: 50px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: 50px;
}

@media (max-width: 768px) {
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.modal-pt .modal-content {
  border: 0;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
  overflow: hidden;
  width: 100%;
}
.modal-pt .modal-content .close {
  background-color: #f4cd00;
  border-radius: 20px;
  color: #fff;
  float: right;
  opacity: 2;
  padding: 5px 10px;
  text-shadow: none;
}
.modal-pt .modal-content .modal-header {
  border-bottom: none;
  padding: 25px 35px;
}
.modal-pt .modal-content .modal-body span#model_introtext {
  color: #a4a7ac;
  display: block;
  font-weight: bold;
  margin-top: -18px;
}
.modal-pt .modal-content .modal-body div#modal_profile {
  display: block;
  padding-top: 15px;
}
@media (min-width: 20em) {
  .modal-pt .modal-content .modal-body h2#modal_trainerName {
    display: block;
    padding-top: 15px;
  }
}
@media (min-width: 46.25em) {
  .modal-pt .modal-content .modal-body h2#modal_trainerName {
    display: block;
    padding-top: 0;
  }
}
@media (min-width: 61.25em) {
  .modal-pt .modal-content .modal-body h2#modal_trainerName {
    display: block;
    padding-top: 0;
  }
}

.close {
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 20em) {
  .hidediv\@mobile {
    display: none;
  }
}

@media (min-width: 20em) {
  .hidedskp {
    display: inline-block;
    padding-left: 5px;
    padding-top: 10px;
  }
}
@media (min-width: 46.25em) {
  .hidedskp {
    display: block;
    padding-top: 0;
  }
}
@media (min-width: 61.25em) {
  .hidedskp {
    display: none;
  }
}

@media (min-width: 46.25em) {
  .hidediv\@tablet {
    display: inline-block;
  }
}

@media (min-width: 61.25em) {
  .hidediv\@desktop {
    display: inline-block;
  }
}

.is-hide {
  display: none;
}

.Confirmation-popup .modal-header {
  background-color: #f4cd00;
}
.Confirmation-popup .modal-header .close {
  margin-right: -25px;
  margin-top: -49px;
}
.Confirmation-popup .modal-footer {
  border-top: none;
}
.Confirmation-popup .modal-body {
  color: #fff;
}
.Confirmation-popup .button {
  margin: 5px;
}

.GNBlue {
  color: #022a3a !important;
}

.GNYellow {
  color: #f4cd00 !important;
}

.GNOrenge {
  color: #e9a630;
}

.new-price {
  background: #fff;
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  padding: 15px 0 0;
  text-align: center;
  width: 100%;
}

.old-price {
  background: #fff;
  color: #f00;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: center;
  text-decoration: line-through;
  text-transform: none;
}

.price-wrapper {
  background: #fff;
  display: inline-block;
  padding: 10px 0 0;
  width: 100%;
}

.month {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 16px;
  margin-top: 13px;
  text-transform: none;
}

.price {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 38px;
  font-weight: bold;
  line-height: 40px;
  padding: 0 3px;
  vertical-align: top;
}

.offer {
  background: #022a3a;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: initial;
  margin: 0 auto;
  max-width: 120px;
  padding: 5px 10px 5px 0;
  text-align: center;
  width: 100%;
}
.offer p {
  float: left;
  font-size: 44px;
  line-height: 27px;
  max-width: 65%;
  padding: 10px 0;
  width: 100%;
}

.off {
  display: inline-block;
  line-height: 20px;
  max-width: 34%;
  padding-top: 5px;
  text-align: center;
  width: 100%;
}

.offer-wrapper {
  background: #022a3a;
  color: #fff;
  display: inline-block;
  width: 100%;
}

#overlay {
  background: rgba(94, 76, 76, 0.6);
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.cv-spinner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.spinner {
  -webkit-animation: sp-anime 0.8s infinite linear;
          animation: sp-anime 0.8s infinite linear;
  border: 4px #ddd solid;
  border-radius: 50%;
  border-top: 4px #2e93e6 solid;
  height: 40px;
  width: 40px;
}

@-webkit-keyframes sp-anime {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sp-anime {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.membership-join-form {
  padding-top: 150px;
}

@media (min-width: 20em) {
  .membership-join-form\@mobile {
    padding-top: 10px;
  }

  .tandcpad {
    padding-left: 8%;
  }
}
@media (min-width: 46.25em) {
  .membership-join-form\@tablet {
    padding-top: 150px;
  }

  .tandcpad {
    padding-left: 10px;
  }
}
@media (min-width: 61.25em) {
  .membership-join-form\@desktop {
    padding-top: 150px;
  }

  .tandcpad {
    padding-left: 10px;
  }
}
.top-pad {
  padding-top: 10px;
}

.bootom-pad {
  padding-bottom: 10px;
}

.tag-blue {
  background-color: #022a3a;
  border-radius: 30px;
  color: #f4cd00;
  font-size: 14px;
  font-weight: 700;
  margin: 0 2px;
  padding: 11px 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tag-yellow {
  background-color: #f4cd00;
  border-radius: 30px;
  color: #022a3a;
  font-size: 14px;
  font-weight: 700;
  margin: 0 2px;
  padding: 11px 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tag-white {
  background-color: #fff;
  border-radius: 30px;
  color: #022a3a;
  font-size: 14px;
  font-weight: 700;
  margin: 0 2px;
  padding: 11px 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.location-address {
  margin: 10px;
}

.location-btn {
  margin: 15px 0;
}

@media (max-width: 768px) {
  .listings .iteml .title {
    font-size: 20px;
  }
}
.btnapp {
  text-align: center;
}
@media (max-width: 586px) {
  .btnapp {
    display: grid;
    text-align: center;
  }
}

.get-app-mobile {
  float: left;
  margin-bottom: 10px;
  padding: 15px;
  width: 100%;
}
.get-app-mobile h4 {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1301px) {
  .get-app-mobile {
    display: none;
  }
}

.get-app-img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (min-width: 1301px) {
  .get-app-img-wrap {
    display: none !important;
  }
}
.get-app-img-wrap a {
  margin-right: 10px;
  text-align: center;
  width: 100%;
}
.get-app-img-wrap a:last-child {
  margin-right: 0;
}

.sugt-old-price {
  color: red;
  font-weight: 700;
}

.ribbon {
  height: 150px;
  overflow: hidden;
  position: absolute;
  width: 150px;
}
.ribbon::before {
  border: 5px solid #e50000;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.ribbon::after {
  border: 5px solid #e50000;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.ribbon span {
  background-color: #f00;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 0;
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  width: 225px;
}

.ribbon-top-left {
  left: -10px;
  top: -10px;
}
.ribbon-top-left::before {
  border-left-color: transparent;
  border-top-color: transparent;
  right: 0;
  top: 0;
}
.ribbon-top-left::after {
  border-left-color: transparent;
  border-top-color: transparent;
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ribbon-top-right {
  right: -10px;
  top: -10px;
}
.ribbon-top-right::before {
  border-right-color: transparent;
  border-top-color: transparent;
  left: 8px;
  top: 0;
}
.ribbon-top-right::after {
  bottom: 8px;
  right: 0;
}
.ribbon-top-right span {
  left: -14px;
  top: 29px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
  left: 0;
  top: 0;
}
.ribbon-bottom-left::before {
  border-bottom-color: transparent;
  border-left-color: transparent;
  bottom: 0;
  right: 0;
}
.ribbon-bottom-left span {
  bottom: 30px;
  right: -25px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}
.ribbon-bottom-right::before {
  border-bottom-color: transparent;
  border-right-color: transparent;
  bottom: 0;
  left: 0;
}
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
  right: 0;
  top: 0;
}
.ribbon-bottom-right span {
  bottom: 30px;
  left: -25px;
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

@media (min-width: 1301px) {
  .get-app-mobile {
    display: none;
  }
}
.hrx-pin-modal.than-poup .modal-dialog {
  height: auto;
  max-width: 100%;
  min-height: auto;
  top: calc(50% - 30px);
  width: 380px;
}
@media (max-width: 767px) {
  .hrx-pin-modal.than-poup .modal-dialog {
    padding-left: 20px;
    padding-right: 20px;
    top: 50%;
  }
}
.hrx-pin-modal.than-poup .modal-content {
  width: 100%;
}
.hrx-pin-modal.than-poup .modal-body {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .hrx-pin-modal.than-poup .modal-body {
    padding: 30px 24px;
  }
}
.hrx-pin-modal.than-poup h2 {
  color: #022a3a;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .hrx-pin-modal.than-poup h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .hrx-pin-modal.than-poup h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 14px;
  }
}
@media (max-width: 575px) {
  .hrx-pin-modal.than-poup .para {
    margin-bottom: 14px;
  }
}
.hrx-pin-modal.than-poup .para .input-text {
  padding-bottom: 14px;
  padding-top: 13px;
}

.modal-backdrops,
.modal-backdrap {
  background-color: #000;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  width: 100vw;
  z-index: -1;
}
.modal-backdrops.fade,
.modal-backdrap.fade {
  opacity: 0;
}
.modal-backdrops.show,
.modal-backdrap.show {
  backdrop-filter: blur(11px);
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  z-index: 100000;
}

#pperrorMsgCustom {
  color: red;
  display: none;
  font-size: 12px;
}

.refersuccess-banner {
  background-color: #fff;
  padding: 60px 0 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .refersuccess-banner {
    padding-top: 50px;
  }
}
.refersuccess-banner .sec-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.refersuccess-banner .left {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  float: left;
  padding-right: 15px;
  width: 50%;
}
@media (max-width: 991px) {
  .refersuccess-banner .left {
    margin-bottom: 30px;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .refersuccess-banner .left {
    margin-bottom: 25px;
  }
}
.refersuccess-banner .left .left-in {
  width: 100%;
}
.refersuccess-banner .left h2 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .refersuccess-banner .left h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 1199px) {
  .refersuccess-banner .left h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .refersuccess-banner .left h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
  }
}
@media (max-width: 767px) {
  .refersuccess-banner .left h2 {
    font-size: 22px;
    line-height: 30px;
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .refersuccess-banner .left h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.refersuccess-banner .left h1 {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .refersuccess-banner .left h1 {
    margin-bottom: 10px;
  }
}
.refersuccess-banner .left h1:last-child {
  margin-bottom: 0;
}
.refersuccess-banner .right {
  float: left;
  padding-left: 15px;
  width: 50%;
}
@media (max-width: 991px) {
  .refersuccess-banner .right {
    padding-left: 0;
    width: 100%;
  }
}

.sunday-event .referwrap-box {
  padding: 40px 0;
}

.referwrap-box {
  background-color: #f4cd00;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .referwrap-box {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  .referwrap-box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.referwrap-box.u-fill-Orange form button:hover {
  background-color: #ffa500;
}
.referwrap-box .thnk-refer-title {
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .referwrap-box .thnk-refer-title {
    margin-bottom: 10px;
  }
}
.referwrap-box h3 {
  margin-bottom: 22px;
}
@media (max-width: 1199px) {
  .referwrap-box h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .referwrap-box h3 {
    margin-bottom: 18px;
  }
}
.referwrap-box h3:last-child {
  margin-bottom: 0;
}
.referwrap-box p {
  margin-bottom: 21px;
}
.referwrap-box p:last-child {
  margin-bottom: 0;
}
.referwrap-box form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 576px;
  width: 100%;
}
@media (max-width: 767px) {
  .referwrap-box form {
    margin-bottom: 18px;
  }
}
@media (max-width: 575px) {
  .referwrap-box form {
    -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.referwrap-box form:last-child {
  margin-bottom: 0;
}
.referwrap-box form input {
  border: 1px solid #022a3a !important;
  border-radius: 24px 0 0 24px;
  height: 44px;
  padding: 11px;
  width: 100%;
}
@media (max-width: 690px) {
  .referwrap-box form input {
    font-size: 15px;
    margin-bottom: 0;
  }
}
@media (max-width: 485px) {
  .referwrap-box form input {
    font-size: 13px;
  }
}
@media (max-width: 410px) {
  .referwrap-box form input {
    font-size: 11px;
    height: 40px;
    max-height: 40px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 369px) {
  .referwrap-box form input {
    font-size: 10px;
    height: 36px;
    max-height: 36px;
    padding-bottom: 7px;
    padding-top: 7px;
  }
}
.referwrap-box form input:focus {
  outline: none;
}
.referwrap-box form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #022a3a;
  border: 1px solid #022a3a;
  border-radius: 0 24px 24px 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  height: 44px;
  line-height: 22px;
  min-width: auto;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  white-space: nowrap;
}
@media (max-width: 690px) {
  .referwrap-box form button {
    background-image: url("/build/svg/icons/copy-icon-white.svg");
    background-position: 6px center;
    background-repeat: no-repeat;
    background-size: 22px auto;
    font-size: 0;
    width: 44px;
  }
}
@media (max-width: 485px) {
  .referwrap-box form button {
    background-position: 7px center;
    background-size: 20px auto;
  }
}
@media (max-width: 410px) {
  .referwrap-box form button {
    height: 40px;
    max-height: 40px;
  }
}
@media (max-width: 369px) {
  .referwrap-box form button {
    background-size: 17px auto;
    height: 36px;
    max-height: 36px;
    width: 40px;
  }
}
.referwrap-box form button:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
@media (max-width: 690px) {
  .referwrap-box form button:hover {
    background-image: url("/build/svg/icons/copy-icon-dark.svg");
  }
}
.referwrap-box .thnk-msg-social-share,
.referwrap-box .thnk-social-share-main {
  padding-bottom: 24px;
}
@media (max-width: 767px) {
  .referwrap-box .thnk-msg-social-share,
.referwrap-box .thnk-social-share-main {
    padding-bottom: 18px;
  }
}
.referwrap-box .thnk-msg-social-share:last-child,
.referwrap-box .thnk-social-share-main:last-child {
  padding-bottom: 0;
}
.referwrap-box .bottom-txt h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .referwrap-box .bottom-txt h3 {
    font-size: 18px;
  }
}

@media (max-width: 690px) {
  .post-checkout-modal .referwrap-box form button {
    background-image: url("/build/svg/icons/copy-icon-dark.svg");
  }
}
@media (max-width: 690px) {
  .post-checkout-modal .referwrap-box form button:hover {
    background-image: url("/build/svg/icons/copy-icon-white.svg");
  }
}
.post-checkout-modal .referwrap-box .thnk-msg-social-share .social-share-btn {
  background-color: #f4cd00;
  color: #022a3a;
}
.post-checkout-modal .referwrap-box .thnk-msg-social-share .social-share-btn:hover {
  background-color: #022a3a;
  -webkit-box-shadow: 0 0 2px #f4cd00;
          box-shadow: 0 0 2px #f4cd00;
  color: #fff;
}
.post-checkout-modal .referwrap-box .thnk-msg-social-share .social-share-btn:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.post-checkout-modal .referwrap-box .thnk-msg-social-share .social-share-btn img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.referscs-prize {
  background-color: #022a3a;
  padding: 80px 0 40px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .referscs-prize {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .referscs-prize {
    padding-bottom: 35px;
    padding-top: 50px;
  }
}
.referscs-prize h2 {
  color: #fff;
  font-size: 33px;
  line-height: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1439px) {
  .referscs-prize h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .referscs-prize h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .referscs-prize h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 26px;
  }
}

.scsprize-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: -30px;
  margin-left: -15px;
  margin-right: -15px;
}
.scsprize-group .scsprize-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 15px 30px;
  width: 25%;
}
@media (max-width: 991px) {
  .scsprize-group .scsprize-box {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .scsprize-group .scsprize-box {
    width: 100%;
  }
}
.scsprize-group .scsprize-box .image {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 5px rgba(244, 205, 0, 0.3);
          box-shadow: 0 0 5px rgba(244, 205, 0, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 270px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .scsprize-group .scsprize-box .image {
    height: 200px;
  }
}
.scsprize-group .scsprize-box .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.scsprize-group .scsprize-box .contian {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 270px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .scsprize-group .scsprize-box .contian {
    height: calc(100% - 200px);
  }
}
@media (max-width: 575px) {
  .scsprize-group .scsprize-box .contian {
    padding-top: 15px;
  }
}
@media (max-width: 480px) {
  .scsprize-group .scsprize-box .contian {
    height: auto;
  }
}
.scsprize-group .scsprize-box .contian h3 {
  color: #fff;
  margin: 0;
}
@media (max-width: 1439px) {
  .scsprize-group .scsprize-box .contian h3 {
    font-size: 23px;
  }
}
@media (max-width: 1199px) {
  .scsprize-group .scsprize-box .contian h3 {
    font-size: 18px;
  }
}

.referfrd-section {
  background-color: #022a3a;
  padding: 40px 0 80px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .referfrd-section {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .referfrd-section {
    padding-bottom: 50px;
    padding-top: 35px;
  }
}
.referfrd-section h2 {
  color: #fff;
  font-size: 33px;
  line-height: 40px;
  margin: 0 0 50px;
}
@media (max-width: 1439px) {
  .referfrd-section h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .referfrd-section h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .referfrd-section h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 26px;
  }
}

/* AMP page */
.imagsld-section {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .imagsld-section {
    padding: 43px 0;
  }
}
@media (max-width: 767px) {
  .imagsld-section {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .imagsld-section.ampvone-sec .sec-title h2 {
    font-size: 35px;
  }
}
.imagsld-section.ampvone-sec .imagsld-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
  width: 25%;
}
@media (max-width: 1199px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .imagsld-section.ampvone-sec .imagsld-group .imagsld-box {
    width: 50%;
  }
}
.imagsld-section.ampvone-sec2 {
  background-color: #022a3a;
  padding-bottom: 70px;
  padding-top: 45px;
}
@media (max-width: 991px) {
  .imagsld-section.ampvone-sec2 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .imagsld-section.ampvone-sec2 {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
.imagsld-section.ampvone-sec2 h2 {
  color: #fff;
}
@media (max-width: 767px) {
  .imagsld-section.ampvone-sec2 h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .imagsld-section.ampvone-sec2 .imagsld-group .imagsld-box {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .imagsld-section.ampvone-sec2 .imagsld-group .imagsld-box {
    width: 50%;
  }
}
.imagsld-section.ampvone-sec2 .imagsld-group .imagsld-box .img::before {
  padding-top: 100%;
}
.imagsld-section .register-btnwrap {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .imagsld-section .register-btnwrap {
    margin-top: 20px;
  }
}
.imagsld-section .register-btnwrap .button {
  border: 1px solid #f4cd00;
}
@media (max-width: 767px) {
  .imagsld-section .register-btnwrap .button {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 739px) {
  .imagsld-section .register-btnwrap .button {
    padding: 15px 36px;
  }
}
@media (max-width: 979px) {
  .imagsld-section .r-wrapper {
    padding-left: 21px;
  }
}
.imagsld-section .sec-title h2 {
  font-size: 44px;
  line-height: 1;
  margin: 0 0 25px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 1199px) {
  .imagsld-section .sec-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .imagsld-section .sec-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .imagsld-section .sec-title h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.imagsld-section .imagsld-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.imagsld-section .imagsld-group .imagsld-box {
  padding: 10px;
  width: 100%;
}
.imagsld-section .imagsld-group .imagsld-box .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
}
.imagsld-section .imagsld-group .imagsld-box .img img {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.imagsld-section .imagsld-group .imagsld-box .img::before {
  content: "";
  display: inline-block;
  padding-top: 98.4%;
}
.imagsld-section .imagsld-group .slick-arrow {
  height: 45px;
  left: -8px;
  top: 50%;
  width: 45px;
}
@media (max-width: 991px) {
  .imagsld-section .imagsld-group .slick-arrow {
    left: 0;
  }
}
.imagsld-section .imagsld-group .slick-arrow::before {
  opacity: 1;
}
.imagsld-section .imagsld-group .slick-arrow:hover::before {
  opacity: 0.8;
}
.imagsld-section .imagsld-group .slick-arrow.slick-prev::before {
  background-image: url("/build/img/left-arrow.png");
  background-repeat: no-repeat;
  background-size: 66% auto;
  color: transparent;
  font-size: 18px;
  line-height: 32px;
  margin-right: -4px;
}
.imagsld-section .imagsld-group .slick-arrow.slick-next {
  left: auto;
  right: -8px;
}
@media (max-width: 991px) {
  .imagsld-section .imagsld-group .slick-arrow.slick-next {
    right: 0;
  }
}

@media (min-width: 66.875em) {
  .ampdata-hero {
    min-height: 700px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.hero-v {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.hero-v .items .button {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .ampdata-hero.new_amphero {
    min-height: 660px;
  }
}
@media (max-width: 1199px) {
  .ampdata-hero.new_amphero {
    min-height: 500px;
  }
}
@media (max-width: 991px) {
  .ampdata-hero.new_amphero {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.new_amphero {
    min-height: 400px;
  }
}
.ampdata-hero.new_amphero .slider-logo {
  margin-bottom: 30px;
}
.ampdata-hero.new_amphero .slider-logo img {
  max-height: 200px;
  max-width: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1399px) {
  .ampdata-hero.new_amphero .slider-logo img {
    max-height: 100px;
  }
}
@media (max-width: 1199px) {
  .ampdata-hero.new_amphero .slider-logo img {
    max-height: 80px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.new_amphero .slider-logo img {
    max-height: 70px;
    max-width: 180px;
  }
}
.ampdata-hero.new_amphero .slider-heading {
  margin-bottom: 12px;
}
.ampdata-hero.new_amphero .slider-heading span {
  color: #f4cd00;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 1399px) {
  .ampdata-hero.new_amphero .slider-heading span {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .ampdata-hero.new_amphero .slider-heading span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.new_amphero .slider-heading span {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
.ampdata-hero.new_amphero .slider-heading h5 {
  font-size: 22px;
}
@media (max-width: 1399px) {
  .ampdata-hero.new_amphero .slider-heading h5 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .ampdata-hero.new_amphero .slider-heading h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero.new_amphero .slider-heading h5 {
    margin-bottom: 0;
  }
}
@media (max-width: 739px) {
  .ampdata-hero.new_amphero .items .button {
    margin-top: 0;
  }
}
.ampdata-hero .slider-logo {
  margin-bottom: 30px;
}
.ampdata-hero .slider-logo img {
  max-height: 90px;
  max-width: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .ampdata-hero .slider-logo img {
    max-height: 70px;
    max-width: 180px;
  }
}
.ampdata-hero .slider-heading {
  font-size: 34px;
  margin-bottom: 33px;
}
@media (max-width: 1199px) {
  .ampdata-hero .slider-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero .slider-heading {
    font-size: 24px;
    margin-bottom: 15px;
    word-break: break-word;
  }
}
.ampdata-hero .slider-heading span {
  display: block;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .ampdata-hero .slider-heading span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ampdata-hero .slider-heading span {
    font-size: 27px;
    margin-bottom: 5px;
  }
}

.than-poup .modal-pt .modal-content .modal-header {
  padding: 20px 0;
}
.than-poup .modal-pt .modal-content .close {
  margin-top: -20px;
}
.than-poup .modal-body {
  padding: 0 40px 40px;
}
@media (max-width: 480px) {
  .than-poup .modal-body {
    padding-left: 20px;
  }
}
.than-poup .modal-dialog {
  width: 650px;
}
@media (max-width: 767px) {
  .than-poup .modal-dialog {
    margin: 0 auto;
    max-width: 480px;
    width: calc(100% - 30px);
  }
}
.than-poup .body-in {
  text-align: center;
  width: 100%;
}
.than-poup .para {
  margin-bottom: 24px;
  width: 100%;
}
.than-poup .para:last-child {
  margin-bottom: 0;
}
.than-poup .para p {
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 15px;
}
.than-poup .para p:last-child {
  margin-bottom: 0;
}
.than-poup .para p a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
.than-poup .para p a:hover {
  text-decoration: none;
}
.than-poup .copy-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .than-poup .copy-link {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .than-poup .copy-link .copy-btn-wrap {
    margin-top: 20px;
    text-align: right;
    width: 100%;
  }
}
.than-poup .copy-link input[type=text] {
  border-color: #022a3a33;
  border-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 20px;
  padding: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .than-poup .copy-link input[type=text] {
    border-right: 2px solid #022a3a33;
  }
}
.than-poup .copy-link input[type=text]:focus {
  outline: none;
}

.ampform-section h2 {
  word-break: break-all;
}

.fas:hover {
  opacity: 0.7;
}

.u-fa-facebook-messenger {
  background: #0072ff;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-facebook {
  background: #3b5998;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-linkedin {
  background: #0073b1;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-twitter {
  background: #000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-whatsapp {
  background: #82c91e;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-envelope {
  background: #fb0000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-google-plus {
  background: #000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-youtube {
  background: #fb0000;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-pinterest {
  background: #c8232c;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-tumblr {
  background: #3b5998;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.u-fa-github {
  background: #009aff;
  border-radius: 3px;
  color: white;
  padding: 10px;
}

.ftitle {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  padding-bottom: 10px;
  text-align: center;
}

.ampdata_register {
  padding: 0 0 50px;
  width: 100%;
}
@media (max-width: 991px) {
  .ampdata_register {
    padding: 50px 0 0;
  }
}
@media (max-width: 991px) {
  .ampdata_register + .post_contain {
    margin-top: 50px;
  }
}
.ampdata_register .r-wrapper {
  max-width: 1140px;
}
@media (max-width: 979px) {
  .ampdata_register .r-wrapper {
    padding-left: 21px;
  }
}
.ampdata_register .secin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.ampdata_register .center-content {
  margin-top: 21px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1199px) {
  .ampdata_register .center-content {
    padding-right: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .ampdata_register .center-content {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    padding: 0;
    width: 100%;
  }
}
.ampdata_register .left {
  float: left;
  padding-right: 40px;
  padding-top: 40px;
  width: calc(100% - 500px);
}
@media (max-width: 1199px) {
  .ampdata_register .left {
    padding-right: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .ampdata_register .left {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding: 40px 0 0;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .ampdata_register .left.u-order-0 {
    padding-top: 50px;
  }
}
.ampdata_register .right {
  float: left;
  width: 500px;
}
@media (max-width: 991px) {
  .ampdata_register .right {
    width: 100%;
  }
}
.ampdata_register .right .amp-form {
  background-color: #f4cd00;
  margin-left: 0;
  margin-top: -70px;
  padding: 40px 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .ampdata_register .right .amp-form {
    margin-top: -50px;
  }
}
@media (max-width: 991px) {
  .ampdata_register .right .amp-form {
    margin: 0 auto !important;
    max-width: 600px;
    padding-bottom: 37px;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .ampdata_register .right .amp-form {
    max-width: 470px;
  }
}
@media (max-width: 480px) {
  .ampdata_register .right .amp-form {
    padding-left: 0;
    padding-right: 0;
  }
}
.ampdata_register .right .amp-form .o-layout__item {
  width: 100% !important;
}
@media (max-width: 991px) {
  .ampdata_register .right .amp-form .o-layout__item {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.ampdata_register .right .amp-form .form_title {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .ampdata_register .right .amp-form .form_title {
    margin-bottom: 20px;
  }
}
.ampdata_register .right .amp-form .form_title h3 {
  color: #022a3a;
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .ampdata_register .right .amp-form .form_title h3 {
    font-size: 22px;
  }
}
.ampdata_register .right .amp-form .form_title p {
  color: #022a3a;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ampdata_register .right .amp-form input.button,
.ampdata_register .right .amp-form button.button {
  background-color: #022a3a;
  border-radius: 4px !important;
  color: #fff;
  font-size: 15px;
  margin-top: 10px;
  max-width: 100%;
  padding-bottom: 15px;
  padding-top: 17px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
}
@media (max-width: 991px) {
  .ampdata_register .right .amp-form input.button,
.ampdata_register .right .amp-form button.button {
    font-size: 14px;
  }
}
.ampdata_register .right .amp-form input.button:hover,
.ampdata_register .right .amp-form button.button:hover {
  background-color: #fff;
  color: #022a3a;
}
.ampdata_register .right .amp-form form input,
.ampdata_register .right .amp-form form select,
.ampdata_register .right .amp-form form textarea {
  background-color: #fff;
  border: none;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}
.ampdata_register .right .amp-form form input::-webkit-input-placeholder,
.ampdata_register .right .amp-form form select::-webkit-input-placeholder,
.ampdata_register .right .amp-form form textarea::-webkit-input-placeholder {
  color: #022a3a;
  font-size: inherit;
  line-height: inherit;
}
.ampdata_register .right .amp-form form input::-moz-placeholder,
.ampdata_register .right .amp-form form select::-moz-placeholder,
.ampdata_register .right .amp-form form textarea::-moz-placeholder {
  color: #022a3a;
  font-size: inherit;
  line-height: inherit;
}
.ampdata_register .right .amp-form form input::-ms-input-placeholder,
.ampdata_register .right .amp-form form select::-ms-input-placeholder,
.ampdata_register .right .amp-form form textarea::-ms-input-placeholder {
  color: #022a3a;
  font-size: inherit;
  line-height: inherit;
}
.ampdata_register .right .amp-form form input::placeholder,
.ampdata_register .right .amp-form form select::placeholder,
.ampdata_register .right .amp-form form textarea::placeholder {
  color: #022a3a;
  font-size: inherit;
  line-height: inherit;
}
@media (max-width: 420px) {
  .ampdata_register .right .amp-form form .location_dropdown-white .location_label {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ampdata_register .center-form {
    width: 100%;
  }
}
.ampdata_register .center-form .amp-form {
  background-color: #f4cd00;
  border-radius: 24px;
  margin-left: 0;
  margin-top: 0;
  padding: 40px 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .ampdata_register .center-form .amp-form {
    margin: 0 auto;
    max-width: 600px;
    padding-bottom: 37px;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .ampdata_register .center-form .amp-form {
    max-width: 700px;
  }
}
@media (max-width: 480px) {
  .ampdata_register .center-form .amp-form {
    padding-left: 0;
    padding-right: 0;
  }
}
.ampdata_register .center-form .amp-form .o-layout__item {
  width: 100% !important;
}
@media (max-width: 991px) {
  .ampdata_register .center-form .amp-form .o-layout__item {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.ampdata_register .center-form .amp-form .form_title {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .ampdata_register .center-form .amp-form .form_title {
    margin-bottom: 20px;
  }
}
.ampdata_register .center-form .amp-form .form_title h3 {
  color: #022a3a;
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .ampdata_register .center-form .amp-form .form_title h3 {
    font-size: 22px;
  }
}
.ampdata_register .center-form .amp-form .form_title p {
  color: #022a3a;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ampdata_register .center-form .amp-form input.button,
.ampdata_register .center-form .amp-form button.button {
  background-color: #022a3a;
  color: #fff;
  font-size: 15px;
  margin-top: 10px;
  max-width: 100%;
  padding-bottom: 15px;
  padding-top: 17px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
}
@media (max-width: 991px) {
  .ampdata_register .center-form .amp-form input.button,
.ampdata_register .center-form .amp-form button.button {
    font-size: 14px;
  }
}
.ampdata_register .center-form .amp-form input.button:hover,
.ampdata_register .center-form .amp-form button.button:hover {
  background-color: #fff;
  color: #022a3a;
}
.ampdata_register .center-form .amp-form form input,
.ampdata_register .center-form .amp-form form select,
.ampdata_register .center-form .amp-form form textarea {
  background-color: #fff;
  border: none;
  font-family: "Montserrat", sans-serif;
}
.ampdata_register .center-form .amp-form form input::-webkit-input-placeholder,
.ampdata_register .center-form .amp-form form select::-webkit-input-placeholder,
.ampdata_register .center-form .amp-form form textarea::-webkit-input-placeholder {
  color: #022a3a;
}
.ampdata_register .center-form .amp-form form input::-moz-placeholder,
.ampdata_register .center-form .amp-form form select::-moz-placeholder,
.ampdata_register .center-form .amp-form form textarea::-moz-placeholder {
  color: #022a3a;
}
.ampdata_register .center-form .amp-form form input::-ms-input-placeholder,
.ampdata_register .center-form .amp-form form select::-ms-input-placeholder,
.ampdata_register .center-form .amp-form form textarea::-ms-input-placeholder {
  color: #022a3a;
}
.ampdata_register .center-form .amp-form form input::placeholder,
.ampdata_register .center-form .amp-form form select::placeholder,
.ampdata_register .center-form .amp-form form textarea::placeholder {
  color: #022a3a;
}
.ampdata_register .amp-cont-group {
  margin-top: 21px;
  max-width: 470px;
  width: 100%;
}
@media (max-width: 768px) {
  .ampdata_register .amp-cont-group .text-container p {
    text-align: center;
  }
}
@media (max-width: 1069px) {
  .ampdata_register .amp-cont-group p {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  .ampdata_register .amp-cont-group {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .ampdata_register .amp-cont-group {
    max-width: 470px;
  }
}
.ampdata_register .amp-cont-group > .o-layout__item {
  padding-left: 0;
}
@media (max-width: 991px) {
  .ampdata_register .amp-cont-group > .o-layout__item {
    padding-bottom: 10px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .ampdata_register .amp-cont-group > .o-layout__item {
    padding-bottom: 20px;
  }
}
@media (max-width: 520px) {
  .ampdata_register .amp-cont-group > .o-layout__item {
    padding-bottom: 30px;
  }
}
.ampdata_register .amp-cont-group > .o-layout__item:first-child {
  padding-top: 0;
}
.ampdata_register .amp-cont-group > .o-layout__item:last-child {
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .ampdata_register .amp-cont-group > .o-layout__item .img-text-container {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .ampdata_register .amp-cont-group ul {
    margin-left: 15px;
  }
}
.ampdata_register .amp-cont-group .amp-cont-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  width: 100%;
}
.ampdata_register .amp-cont-group .amp-cont-box:last-child {
  margin-bottom: 0;
}
.ampdata_register .amp-cont-group .amp-cont-box .icon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #022a3a;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
}
@media (max-width: 575px) {
  .ampdata_register .amp-cont-group .amp-cont-box .icon {
    height: 40px;
    width: 40px;
  }
}
.ampdata_register .amp-cont-group .amp-cont-box .icon svg {
  height: auto;
  max-height: 28px;
  max-width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 575px) {
  .ampdata_register .amp-cont-group .amp-cont-box .icon svg {
    max-height: 21px;
    max-width: 21px;
  }
}
.ampdata_register .amp-cont-group .amp-cont-box .text {
  float: left;
  padding-left: 25px;
  padding-top: 0;
  width: calc(100% - 50px);
}
@media (max-width: 991px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text {
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text {
    padding-left: 15px;
    width: calc(100% - 40px);
  }
}
.ampdata_register .amp-cont-group .amp-cont-box .text h3,
.ampdata_register .amp-cont-group .amp-cont-box .text h4 {
  color: #022a3a;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text h3,
.ampdata_register .amp-cont-group .amp-cont-box .text h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text h3,
.ampdata_register .amp-cont-group .amp-cont-box .text h4 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text h3,
.ampdata_register .amp-cont-group .amp-cont-box .text h4 {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .ampdata_register .amp-cont-group .amp-cont-box .text h3,
.ampdata_register .amp-cont-group .amp-cont-box .text h4 {
    font-size: 19px;
  }
}
.ampdata_register .amp-cont-group .amp-cont-box .text h3:last-child,
.ampdata_register .amp-cont-group .amp-cont-box .text h4:last-child {
  margin-bottom: 0;
}
.ampdata_register .amp-cont-group .amp-cont-box .text p {
  color: #666;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.ampdata_register .amp-cont-group .amp-cont-box .text p:last-child {
  margin-bottom: 0;
}
.ampdata_register .amp-cont-group .amp-cont-box .text p span {
  color: #022a3a;
  font-weight: 700;
}

.free-trial-popup.freetrial-new .location_dropdown-white .free-location_label {
  z-index: 10;
}
.free-trial-popup.freetrial-new .location_dropdown-white ul {
  border: none;
  margin-top: -20px !important;
  padding: 35px 0 15px;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul {
    margin-top: -17px !important;
    padding-top: 29px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul {
    margin-top: -12px !important;
    padding-top: 20px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white ul::before {
  border-top: 1px solid #fff;
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul::before {
    top: 20px;
  }
}
@media (max-width: 575px) {
  .free-trial-popup.freetrial-new .location_dropdown-white ul::before {
    top: 12px;
  }
}
.free-trial-popup.freetrial-new .location_dropdown-white .loc-item-group-js {
  display: none;
  overflow: hidden;
}
.free-trial-popup.freetrial-new .location_dropdown-white .loc-item-group-js > ul {
  display: block;
}

.curved-new-form .contact-us .location_dropdown-white .location_label.active,
.curved-new-form .contact-us .location_dropdown-white .membership_label.active,
.curved-new-form .contact-us .location_dropdown-white .reason_label.active,
.curved-new-form .contact-us .location_dropdown-white .contract_label.active,
.curved-new-form .contact-us .location_dropdown-white .Position_label.active,
.curved-new-form .contact-us .membership_dropdown-white .location_label.active,
.curved-new-form .contact-us .membership_dropdown-white .membership_label.active,
.curved-new-form .contact-us .membership_dropdown-white .reason_label.active,
.curved-new-form .contact-us .membership_dropdown-white .contract_label.active,
.curved-new-form .contact-us .membership_dropdown-white .Position_label.active,
.curved-new-form .contact-us .reason_dropdown-white .location_label.active,
.curved-new-form .contact-us .reason_dropdown-white .membership_label.active,
.curved-new-form .contact-us .reason_dropdown-white .reason_label.active,
.curved-new-form .contact-us .reason_dropdown-white .contract_label.active,
.curved-new-form .contact-us .reason_dropdown-white .Position_label.active,
.curved-new-form .contact-us .enquiry_dropdown-white .location_label.active,
.curved-new-form .contact-us .enquiry_dropdown-white .membership_label.active,
.curved-new-form .contact-us .enquiry_dropdown-white .reason_label.active,
.curved-new-form .contact-us .enquiry_dropdown-white .contract_label.active,
.curved-new-form .contact-us .enquiry_dropdown-white .Position_label.active,
.curved-new-form .contact-us .contract_dropdown-white .location_label.active,
.curved-new-form .contact-us .contract_dropdown-white .membership_label.active,
.curved-new-form .contact-us .contract_dropdown-white .reason_label.active,
.curved-new-form .contact-us .contract_dropdown-white .contract_label.active,
.curved-new-form .contact-us .contract_dropdown-white .Position_label.active,
.curved-new-form .contact-us .Position_dropdown-white .location_label.active,
.curved-new-form .contact-us .Position_dropdown-white .membership_label.active,
.curved-new-form .contact-us .Position_dropdown-white .reason_label.active,
.curved-new-form .contact-us .Position_dropdown-white .contract_label.active,
.curved-new-form .contact-us .Position_dropdown-white .Position_label.active {
  z-index: 10;
}
.curved-new-form .contact-us .location_dropdown-white ul,
.curved-new-form .contact-us .membership_dropdown-white ul,
.curved-new-form .contact-us .reason_dropdown-white ul,
.curved-new-form .contact-us .enquiry_dropdown-white ul,
.curved-new-form .contact-us .contract_dropdown-white ul,
.curved-new-form .contact-us .Position_dropdown-white ul {
  border: none !important;
  margin-top: -20px !important;
  padding: 35px 0 15px !important;
  position: relative;
}
.curved-new-form .contact-us .location_dropdown-white ul::before,
.curved-new-form .contact-us .membership_dropdown-white ul::before,
.curved-new-form .contact-us .reason_dropdown-white ul::before,
.curved-new-form .contact-us .enquiry_dropdown-white ul::before,
.curved-new-form .contact-us .contract_dropdown-white ul::before,
.curved-new-form .contact-us .Position_dropdown-white ul::before {
  border-top: 1px solid #f4cd00;
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .curved-new-form .contact-us .location_dropdown-white ul::before,
.curved-new-form .contact-us .membership_dropdown-white ul::before,
.curved-new-form .contact-us .reason_dropdown-white ul::before,
.curved-new-form .contact-us .enquiry_dropdown-white ul::before,
.curved-new-form .contact-us .contract_dropdown-white ul::before,
.curved-new-form .contact-us .Position_dropdown-white ul::before {
    top: 17px;
  }
}
@media (max-width: 575px) {
  .curved-new-form .contact-us .location_dropdown-white ul::before,
.curved-new-form .contact-us .membership_dropdown-white ul::before,
.curved-new-form .contact-us .reason_dropdown-white ul::before,
.curved-new-form .contact-us .enquiry_dropdown-white ul::before,
.curved-new-form .contact-us .contract_dropdown-white ul::before,
.curved-new-form .contact-us .Position_dropdown-white ul::before {
    top: 12px;
  }
}
@media (max-width: 991px) {
  .curved-new-form .contact-us .location_dropdown-white ul,
.curved-new-form .contact-us .membership_dropdown-white ul,
.curved-new-form .contact-us .reason_dropdown-white ul,
.curved-new-form .contact-us .enquiry_dropdown-white ul,
.curved-new-form .contact-us .contract_dropdown-white ul,
.curved-new-form .contact-us .Position_dropdown-white ul {
    margin-top: -17px !important;
    padding-top: 29px !important;
  }
}
@media (max-width: 575px) {
  .curved-new-form .contact-us .location_dropdown-white ul,
.curved-new-form .contact-us .membership_dropdown-white ul,
.curved-new-form .contact-us .reason_dropdown-white ul,
.curved-new-form .contact-us .enquiry_dropdown-white ul,
.curved-new-form .contact-us .contract_dropdown-white ul,
.curved-new-form .contact-us .Position_dropdown-white ul {
    margin-top: -12px !important;
    padding-top: 20px !important;
  }
}

.contact-us {
  padding-bottom: 50px;
  padding-top: 50px;
}

@media (max-width: 991px) {
  .u-fill-blue .ampdata_register {
    padding-bottom: 50px !important;
  }
}

.hrx-new-form .btp-form form .form__field,
.curved-new-form .btp-form form .form__field {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hrx-new-form .btp-form form .form__field,
.curved-new-form .btp-form form .form__field {
    margin-bottom: 14px;
  }
}
.hrx-new-form .btp-form form .form-group,
.curved-new-form .btp-form form .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 767px) {
  .hrx-new-form .btp-form form .form-group,
.curved-new-form .btp-form form .form-group {
    margin-bottom: 14px !important;
  }
}
.hrx-new-form .btp-form form .umbraco-forms-fieldset .row-fluid,
.hrx-new-form .btp-form form .umbraco-forms-navigation .row-fluid,
.curved-new-form .btp-form form .umbraco-forms-fieldset .row-fluid,
.curved-new-form .btp-form form .umbraco-forms-navigation .row-fluid {
  margin-bottom: 0 !important;
}
.hrx-new-form .btp-form form .umbraco-forms-navigation.row-fluid,
.curved-new-form .btp-form form .umbraco-forms-navigation.row-fluid {
  margin-bottom: 0 !important;
}
.hrx-new-form .btp-form form .field-validation-error span,
.hrx-new-form .btp-form form .location-validation-error span,
.curved-new-form .btp-form form .field-validation-error span,
.curved-new-form .btp-form form .location-validation-error span {
  color: #f00;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .hrx-new-form .btp-form form .field-validation-error span,
.hrx-new-form .btp-form form .location-validation-error span,
.curved-new-form .btp-form form .field-validation-error span,
.curved-new-form .btp-form form .location-validation-error span {
    font-size: 12px;
    line-height: 16px;
  }
}
.hrx-new-form.ampdata_register .right .amp-form .referwrap-box,
.hrx-new-form .ampdata_register .right .amp-form .referwrap-box,
.curved-new-form.ampdata_register .right .amp-form .referwrap-box,
.curved-new-form .ampdata_register .right .amp-form .referwrap-box {
  padding: 0;
}
.hrx-new-form.ampdata_register .amp-form,
.hrx-new-form .ampdata_register .amp-form,
.curved-new-form.ampdata_register .amp-form,
.curved-new-form .ampdata_register .amp-form {
  border-radius: 22px;
}
.hrx-new-form.ampdata_register .amp-form .referwrap-box h2,
.hrx-new-form.ampdata_register .amp-form .referwrap-box h3,
.hrx-new-form.ampdata_register .amp-form .referwrap-box h4,
.hrx-new-form.ampdata_register .amp-form .referwrap-box h5,
.hrx-new-form.ampdata_register .amp-form .referwrap-box p,
.hrx-new-form.ampdata_register .amp-form .referwrap-box .u-h2,
.hrx-new-form .ampdata_register .amp-form .referwrap-box h2,
.hrx-new-form .ampdata_register .amp-form .referwrap-box h3,
.hrx-new-form .ampdata_register .amp-form .referwrap-box h4,
.hrx-new-form .ampdata_register .amp-form .referwrap-box h5,
.hrx-new-form .ampdata_register .amp-form .referwrap-box p,
.hrx-new-form .ampdata_register .amp-form .referwrap-box .u-h2,
.curved-new-form.ampdata_register .amp-form .referwrap-box h2,
.curved-new-form.ampdata_register .amp-form .referwrap-box h3,
.curved-new-form.ampdata_register .amp-form .referwrap-box h4,
.curved-new-form.ampdata_register .amp-form .referwrap-box h5,
.curved-new-form.ampdata_register .amp-form .referwrap-box p,
.curved-new-form.ampdata_register .amp-form .referwrap-box .u-h2,
.curved-new-form .ampdata_register .amp-form .referwrap-box h2,
.curved-new-form .ampdata_register .amp-form .referwrap-box h3,
.curved-new-form .ampdata_register .amp-form .referwrap-box h4,
.curved-new-form .ampdata_register .amp-form .referwrap-box h5,
.curved-new-form .ampdata_register .amp-form .referwrap-box p,
.curved-new-form .ampdata_register .amp-form .referwrap-box .u-h2 {
  color: var(--primary);
}
.hrx-new-form.ampdata_register .amp-form form input,
.hrx-new-form.ampdata_register .amp-form form select,
.hrx-new-form.ampdata_register .amp-form form textarea,
.hrx-new-form .ampdata_register .amp-form form input,
.hrx-new-form .ampdata_register .amp-form form select,
.hrx-new-form .ampdata_register .amp-form form textarea,
.curved-new-form.ampdata_register .amp-form form input,
.curved-new-form.ampdata_register .amp-form form select,
.curved-new-form.ampdata_register .amp-form form textarea,
.curved-new-form .ampdata_register .amp-form form input,
.curved-new-form .ampdata_register .amp-form form select,
.curved-new-form .ampdata_register .amp-form form textarea {
  border-radius: 24px;
  color: #022a3a;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 20px;
  margin-bottom: 0;
  max-height: 50px;
  padding: 15px 24px;
}
@media (max-width: 1199px) {
  .hrx-new-form.ampdata_register .amp-form form input,
.hrx-new-form.ampdata_register .amp-form form select,
.hrx-new-form.ampdata_register .amp-form form textarea,
.hrx-new-form .ampdata_register .amp-form form input,
.hrx-new-form .ampdata_register .amp-form form select,
.hrx-new-form .ampdata_register .amp-form form textarea,
.curved-new-form.ampdata_register .amp-form form input,
.curved-new-form.ampdata_register .amp-form form select,
.curved-new-form.ampdata_register .amp-form form textarea,
.curved-new-form .ampdata_register .amp-form form input,
.curved-new-form .ampdata_register .amp-form form select,
.curved-new-form .ampdata_register .amp-form form textarea {
    height: 46px;
    max-height: 46px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form form input,
.hrx-new-form.ampdata_register .amp-form form select,
.hrx-new-form.ampdata_register .amp-form form textarea,
.hrx-new-form .ampdata_register .amp-form form input,
.hrx-new-form .ampdata_register .amp-form form select,
.hrx-new-form .ampdata_register .amp-form form textarea,
.curved-new-form.ampdata_register .amp-form form input,
.curved-new-form.ampdata_register .amp-form form select,
.curved-new-form.ampdata_register .amp-form form textarea,
.curved-new-form .ampdata_register .amp-form form input,
.curved-new-form .ampdata_register .amp-form form select,
.curved-new-form .ampdata_register .amp-form form textarea {
    height: 44px;
    max-height: 44px;
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.ampdata_register .amp-form form input,
.hrx-new-form.ampdata_register .amp-form form select,
.hrx-new-form.ampdata_register .amp-form form textarea,
.hrx-new-form .ampdata_register .amp-form form input,
.hrx-new-form .ampdata_register .amp-form form select,
.hrx-new-form .ampdata_register .amp-form form textarea,
.curved-new-form.ampdata_register .amp-form form input,
.curved-new-form.ampdata_register .amp-form form select,
.curved-new-form.ampdata_register .amp-form form textarea,
.curved-new-form .ampdata_register .amp-form form input,
.curved-new-form .ampdata_register .amp-form form select,
.curved-new-form .ampdata_register .amp-form form textarea {
    font-size: 13px;
    height: auto;
    max-height: inherit;
    padding: 7px 13px;
  }
}
.hrx-new-form.ampdata_register .amp-form form input::-webkit-input-placeholder,
.hrx-new-form.ampdata_register .amp-form form select::-webkit-input-placeholder,
.hrx-new-form.ampdata_register .amp-form form textarea::-webkit-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form input::-webkit-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form select::-webkit-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form textarea::-webkit-input-placeholder,
.curved-new-form.ampdata_register .amp-form form input::-webkit-input-placeholder,
.curved-new-form.ampdata_register .amp-form form select::-webkit-input-placeholder,
.curved-new-form.ampdata_register .amp-form form textarea::-webkit-input-placeholder,
.curved-new-form .ampdata_register .amp-form form input::-webkit-input-placeholder,
.curved-new-form .ampdata_register .amp-form form select::-webkit-input-placeholder,
.curved-new-form .ampdata_register .amp-form form textarea::-webkit-input-placeholder {
  color: #022a3a;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
}
.hrx-new-form.ampdata_register .amp-form form input::-moz-placeholder,
.hrx-new-form.ampdata_register .amp-form form select::-moz-placeholder,
.hrx-new-form.ampdata_register .amp-form form textarea::-moz-placeholder,
.hrx-new-form .ampdata_register .amp-form form input::-moz-placeholder,
.hrx-new-form .ampdata_register .amp-form form select::-moz-placeholder,
.hrx-new-form .ampdata_register .amp-form form textarea::-moz-placeholder,
.curved-new-form.ampdata_register .amp-form form input::-moz-placeholder,
.curved-new-form.ampdata_register .amp-form form select::-moz-placeholder,
.curved-new-form.ampdata_register .amp-form form textarea::-moz-placeholder,
.curved-new-form .ampdata_register .amp-form form input::-moz-placeholder,
.curved-new-form .ampdata_register .amp-form form select::-moz-placeholder,
.curved-new-form .ampdata_register .amp-form form textarea::-moz-placeholder {
  color: #022a3a;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
}
.hrx-new-form.ampdata_register .amp-form form input::-ms-input-placeholder,
.hrx-new-form.ampdata_register .amp-form form select::-ms-input-placeholder,
.hrx-new-form.ampdata_register .amp-form form textarea::-ms-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form input::-ms-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form select::-ms-input-placeholder,
.hrx-new-form .ampdata_register .amp-form form textarea::-ms-input-placeholder,
.curved-new-form.ampdata_register .amp-form form input::-ms-input-placeholder,
.curved-new-form.ampdata_register .amp-form form select::-ms-input-placeholder,
.curved-new-form.ampdata_register .amp-form form textarea::-ms-input-placeholder,
.curved-new-form .ampdata_register .amp-form form input::-ms-input-placeholder,
.curved-new-form .ampdata_register .amp-form form select::-ms-input-placeholder,
.curved-new-form .ampdata_register .amp-form form textarea::-ms-input-placeholder {
  color: #022a3a;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
}
.hrx-new-form.ampdata_register .amp-form form input::placeholder,
.hrx-new-form.ampdata_register .amp-form form select::placeholder,
.hrx-new-form.ampdata_register .amp-form form textarea::placeholder,
.hrx-new-form .ampdata_register .amp-form form input::placeholder,
.hrx-new-form .ampdata_register .amp-form form select::placeholder,
.hrx-new-form .ampdata_register .amp-form form textarea::placeholder,
.curved-new-form.ampdata_register .amp-form form input::placeholder,
.curved-new-form.ampdata_register .amp-form form select::placeholder,
.curved-new-form.ampdata_register .amp-form form textarea::placeholder,
.curved-new-form .ampdata_register .amp-form form input::placeholder,
.curved-new-form .ampdata_register .amp-form form select::placeholder,
.curved-new-form .ampdata_register .amp-form form textarea::placeholder {
  color: #022a3a;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
}
.hrx-new-form.ampdata_register .amp-form form input.hidden-input,
.hrx-new-form.ampdata_register .amp-form form select.hidden-input,
.hrx-new-form.ampdata_register .amp-form form textarea.hidden-input,
.hrx-new-form .ampdata_register .amp-form form input.hidden-input,
.hrx-new-form .ampdata_register .amp-form form select.hidden-input,
.hrx-new-form .ampdata_register .amp-form form textarea.hidden-input,
.curved-new-form.ampdata_register .amp-form form input.hidden-input,
.curved-new-form.ampdata_register .amp-form form select.hidden-input,
.curved-new-form.ampdata_register .amp-form form textarea.hidden-input,
.curved-new-form .ampdata_register .amp-form form input.hidden-input,
.curved-new-form .ampdata_register .amp-form form select.hidden-input,
.curved-new-form .ampdata_register .amp-form form textarea.hidden-input {
  border: 0;
  height: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
}
.hrx-new-form.ampdata_register .amp-form form select.form-control,
.hrx-new-form .ampdata_register .amp-form form select.form-control,
.curved-new-form.ampdata_register .amp-form form select.form-control,
.curved-new-form .ampdata_register .amp-form form select.form-control {
  background-position: calc(100% - 30px) center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  margin-bottom: 0 !important;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form form select.form-control,
.hrx-new-form .ampdata_register .amp-form form select.form-control,
.curved-new-form.ampdata_register .amp-form form select.form-control,
.curved-new-form .ampdata_register .amp-form form select.form-control {
    background-position: calc(100% - 25px) center;
    background-size: 17px auto;
    padding-right: 50px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.ampdata_register .amp-form form select.form-control,
.hrx-new-form .ampdata_register .amp-form form select.form-control,
.curved-new-form.ampdata_register .amp-form form select.form-control,
.curved-new-form .ampdata_register .amp-form form select.form-control {
    background-position: calc(100% - 20px) center;
    background-size: 13px auto;
    padding-right: 36px;
  }
}
.hrx-new-form.ampdata_register .amp-form form textarea,
.hrx-new-form .ampdata_register .amp-form form textarea,
.curved-new-form.ampdata_register .amp-form form textarea,
.curved-new-form .ampdata_register .amp-form form textarea {
  height: inherit;
  max-height: inherit;
}
.hrx-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.hrx-new-form .ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form .ampdata_register .amp-form form .iti--allow-dropdown input {
  padding-left: 109px !important;
  text-indent: 13px;
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.hrx-new-form .ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form .ampdata_register .amp-form form .iti--allow-dropdown input {
    padding-left: 107px !important;
  }
}
@media (max-width: 767px) {
  .hrx-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.hrx-new-form .ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form .ampdata_register .amp-form form .iti--allow-dropdown input {
    padding-left: 103px !important;
    text-indent: 11px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.hrx-new-form .ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form.ampdata_register .amp-form form .iti--allow-dropdown input,
.curved-new-form .ampdata_register .amp-form form .iti--allow-dropdown input {
    padding-left: 101px !important;
    text-indent: 8px;
  }
}
@media (max-width: 420px) {
  .hrx-new-form.ampdata_register .amp-form form .location_dropdown-white .location_label,
.hrx-new-form .ampdata_register .amp-form form .location_dropdown-white .location_label,
.curved-new-form.ampdata_register .amp-form form .location_dropdown-white .location_label,
.curved-new-form .ampdata_register .amp-form form .location_dropdown-white .location_label {
    font-size: 13px;
  }
}
.hrx-new-form.ampdata_register .amp-form form .termandcondition input[type=checkbox],
.hrx-new-form .ampdata_register .amp-form form .termandcondition input[type=checkbox],
.curved-new-form.ampdata_register .amp-form form .termandcondition input[type=checkbox],
.curved-new-form .ampdata_register .amp-form form .termandcondition input[type=checkbox] {
  height: auto;
  max-height: unset;
}
.hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc {
  margin-bottom: 40px !important;
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 495px) {
  .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc {
    margin-bottom: 35px !important;
  }
}
.hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error {
  bottom: 0;
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error {
    bottom: 6px;
  }
}
@media (max-width: 495px) {
  .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error, .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.checkbox .field-validation-error,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group.titlefortandc .field-validation-error {
    bottom: 3px;
  }
}
.hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p {
  font-weight: 500;
}
@media (max-width: 575px) {
  .hrx-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.hrx-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.curved-new-form.ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p,
.curved-new-form .ampdata_register .amp-form form .termandcondition.umbraco-forms-fieldset .form-group p {
    font-size: 13px;
  }
}
.hrx-new-form.ampdata_register .amp-form input.button,
.hrx-new-form.ampdata_register .amp-form button.button,
.hrx-new-form .ampdata_register .amp-form input.button,
.hrx-new-form .ampdata_register .amp-form button.button,
.curved-new-form.ampdata_register .amp-form input.button,
.curved-new-form.ampdata_register .amp-form button.button,
.curved-new-form .ampdata_register .amp-form input.button,
.curved-new-form .ampdata_register .amp-form button.button {
  border-radius: 96px !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  max-width: 100%;
  min-width: 189px;
  padding: 14px 24px;
  width: auto;
}
@media (max-width: 1199px) {
  .hrx-new-form.ampdata_register .amp-form input.button,
.hrx-new-form.ampdata_register .amp-form button.button,
.hrx-new-form .ampdata_register .amp-form input.button,
.hrx-new-form .ampdata_register .amp-form button.button,
.curved-new-form.ampdata_register .amp-form input.button,
.curved-new-form.ampdata_register .amp-form button.button,
.curved-new-form .ampdata_register .amp-form input.button,
.curved-new-form .ampdata_register .amp-form button.button {
    font-size: 20px;
    line-height: 24px;
    min-width: 160px;
    padding: 13px 20px;
  }
}
@media (max-width: 991px) {
  .hrx-new-form.ampdata_register .amp-form input.button,
.hrx-new-form.ampdata_register .amp-form button.button,
.hrx-new-form .ampdata_register .amp-form input.button,
.hrx-new-form .ampdata_register .amp-form button.button,
.curved-new-form.ampdata_register .amp-form input.button,
.curved-new-form.ampdata_register .amp-form button.button,
.curved-new-form .ampdata_register .amp-form input.button,
.curved-new-form .ampdata_register .amp-form button.button {
    font-size: 16px;
    line-height: 22px;
    min-width: 140px;
    padding-bottom: 12px;
    padding-top: 12px;
  }
}
@media (max-width: 575px) {
  .hrx-new-form.ampdata_register .amp-form input.button,
.hrx-new-form.ampdata_register .amp-form button.button,
.hrx-new-form .ampdata_register .amp-form input.button,
.hrx-new-form .ampdata_register .amp-form button.button,
.curved-new-form.ampdata_register .amp-form input.button,
.curved-new-form.ampdata_register .amp-form button.button,
.curved-new-form .ampdata_register .amp-form input.button,
.curved-new-form .ampdata_register .amp-form button.button {
    min-width: 76px;
    padding: 10px 24px;
  }
}

html[dir=rtl] .ampdata_register .left {
  padding-left: 40px;
  padding-right: 0;
}
@media (max-width: 1199px) {
  html[dir=rtl] .ampdata_register .left {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  html[dir=rtl] .ampdata_register .left {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  html[dir=rtl] .ampdata_register .amp-cont-group ul {
    margin-left: 0;
    margin-right: 15px;
  }
}
html[dir=rtl] .ampdata_register .amp-cont-group .amp-cont-box .text {
  padding-left: 0;
  padding-right: 25px;
}
@media (max-width: 991px) {
  html[dir=rtl] .ampdata_register .amp-cont-group .amp-cont-box .text {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  html[dir=rtl] .ampdata_register .amp-cont-group .amp-cont-box .text {
    padding-right: 15px;
  }
}

.btp-form form .form__field {
  margin: 0 0 15px;
}
.btp-form form .form__field input,
.btp-form form .form__field button,
.btp-form form .form__field select,
.btp-form form .form__field textarea {
  background-color: #fff;
  margin: 0 0 5px;
}
.btp-form form .form__field .form__field {
  margin: 0;
}
.btp-form form .termandcondition {
  margin-bottom: 0;
}
.btp-form form .checkbox-wrap .each-checkbox {
  margin-right: 10px;
  position: relative;
}
.btp-form form .checkbox-wrap .each-checkbox::before {
  display: none !important;
}
.btp-form form .checkbox-wrap .each-checkbox:last-child {
  margin-right: 0;
}
.btp-form form .checkbox-wrap .each-checkbox input[type=checkbox] {
  display: inline-block;
  margin: auto 0;
  vertical-align: middle;
}
.btp-form form .checkbox-wrap .each-checkbox > span {
  display: inline-block;
  vertical-align: middle;
}
.btp-form .referwrap-box {
  padding: 40px 18px;
}

textarea.input-text {
  height: auto;
}

@media (max-width: 739px) {
  .cta-ncomp .o-layout > .lft {
    margin-bottom: 16px;
    width: 100%;
  }
}
@media (max-width: 739px) {
  .cta-ncomp .o-layout > .lft:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 739px) {
  .cta-ncomp .o-layout > .rgt .button {
    width: auto;
  }
}
@media (max-width: 530px) {
  .cta-ncomp .o-layout > .rgt .button {
    width: 100%;
  }
}

.amp-form.u-fill-Orange .referwrap-box {
  background-color: orange;
}

.post-ckt-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.post-ckt-box {
  border-radius: 20px;
  -webkit-box-shadow: 1px 0 12px 4px rgba(0, 0, 0, 0.05), 2px 2px 10px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 0 12px 4px rgba(0, 0, 0, 0.05), 2px 2px 10px 5px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  width: 100%;
}
@media (max-width: 480px) {
  .post-ckt-box {
    margin-bottom: 10px;
    padding: 20px 15px;
  }
}
.post-ckt-box:last-child {
  margin-bottom: 0;
}
.post-ckt-box input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.post-ckt-box input:checked + .left-side::before {
  background-color: #022a3a;
  -webkit-box-shadow: 0 0 3px #fff;
          box-shadow: 0 0 3px #fff;
}
.post-ckt-box input:checked + .left-side::after {
  opacity: 1;
  visibility: visible;
}
.post-ckt-box .left-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-right: 50px;
  position: relative;
  width: 100%;
}
@media (max-width: 480px) {
  .post-ckt-box .left-side {
    padding-left: 0;
    padding-right: 21px;
  }
}
.post-ckt-box .left-side::before, .post-ckt-box .left-side::after {
  border-radius: 100%;
  content: "";
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 30px;
}
@media (max-width: 480px) {
  .post-ckt-box .left-side::before, .post-ckt-box .left-side::after {
    height: 22px;
    left: auto;
    right: -2px;
    width: 22px;
  }
}
.post-ckt-box .left-side::before {
  background-color: #fff;
  border: 2px solid #022a3a;
  border-radius: 100%;
}
.post-ckt-box .left-side::after {
  background-image: url("../../build/img/check2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  opacity: 0;
  visibility: hidden;
}
.post-ckt-box .left-side .icon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
}
@media (max-width: 480px) {
  .post-ckt-box .left-side .icon {
    max-width: 40px;
  }
}
.post-ckt-box .left-side .icon img {
  max-width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media (max-width: 480px) {
  .post-ckt-box .left-side .icon img {
    max-width: 40px;
  }
}
.post-ckt-box .left-side .about-product {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: calc(100% - 65px);
  padding-left: 20px;
  width: 100%;
}
@media (max-width: 480px) {
  .post-ckt-box .left-side .about-product {
    max-width: calc(100% - 40px);
    padding-left: 15px;
  }
}
.post-ckt-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
  text-transform: none;
  width: 100%;
}
@media (max-width: 480px) {
  .post-ckt-box h3 {
    font-size: 16px;
  }
}
.post-ckt-box p {
  font-size: 14px;
}
@media (max-width: 480px) {
  .post-ckt-box p {
    font-size: 12px;
  }
}
.post-ckt-box span {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .post-ckt-box span {
    margin: 0 auto 10px;
  }
}

.post-checkout-modal .close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
}
.post-checkout-modal .modal-dialog {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
  max-height: calc(100% - 60px);
  top: auto !important;
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
@media (max-width: 767px) {
  .post-checkout-modal .modal-dialog {
    margin-bottom: 15px;
    margin-top: 15px;
    max-height: calc(100% - 30px);
  }
}
.post-checkout-modal .modal-content {
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  width: 100%;
}
.post-checkout-modal .modal-content .modal-header {
  padding: 0;
}
.post-checkout-modal .modal-content .modal-title {
  padding: 21px 60px 25px;
  text-align: center;
}
@media (max-width: 430px) {
  .post-checkout-modal .modal-content .modal-title {
    padding-left: 55px;
    padding-right: 55px;
  }
}
.post-checkout-modal .modal-content .modal-title h2 {
  line-height: 1.42;
  margin: 0 0 8px;
  text-transform: capitalize;
}
.post-checkout-modal .modal-content .modal-title h3 {
  margin: 0 0 10px;
  text-transform: none;
}
.post-checkout-modal .modal-content .modal-title p {
  font-weight: 700;
}
@media (max-width: 575px) {
  .post-checkout-modal .modal-content .top-form .modal-title h3.u-h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 310px;
  }
}
@media (max-width: 450px) {
  .post-checkout-modal .modal-content .top-form .modal-title h3.u-h2 {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .post-checkout-modal .modal-content .top-form .modal-title h3.u-h2 {
    font-size: 4.6vw;
  }
}
@media (max-width: 399px) {
  .post-checkout-modal .modal-content .top-form .modal-title h3.u-h2 {
    font-size: 4.2vw;
  }
}
@media (max-width: 350px) {
  .post-checkout-modal .modal-content .top-form .modal-title h3.u-h2 {
    font-size: 4.1vw;
  }
}
.post-checkout-modal .modal-content.u-color-transparent {
  background-color: transparent;
}
.post-checkout-modal .modal-content.u-color-transparent .modal-form-in {
  background-color: #fff;
  width: 100%;
}
.post-checkout-modal .modal-body {
  padding: 40px;
}
@media (max-width: 767px) {
  .post-checkout-modal .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.post-checkout-modal .btnAlign.btnwrp {
  margin-top: 30px;
}
@media (max-width: 480px) {
  .post-checkout-modal .btnAlign.btnwrp {
    margin-top: 0;
  }
}
.post-checkout-modal .modal-form-in {
  width: 100%;
}
.post-checkout-modal .referwrap-box {
  background-color: #022a3a;
  display: none;
}
@media (max-width: 767px) {
  .post-checkout-modal .referwrap-box {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 50px;
  }
}
.post-checkout-modal .referwrap-box h2 {
  color: #f4cd00;
}
.post-checkout-modal .referwrap-box h4 {
  color: #fff;
  margin-bottom: 10px;
}
.post-checkout-modal .referwrap-box p {
  color: #fff;
  margin-bottom: 15px;
}
.post-checkout-modal .referwrap-box form {
  background-color: transparent;
}
.post-checkout-modal .referwrap-box form button {
  background-color: #f4cd00;
  border-left-color: #f4cd00;
  color: #022a3a;
}
.post-checkout-modal .referwrap-box form button:hover {
  background-color: #022a3a;
  border-left-color: #022a3a;
  -webkit-box-shadow: 0 0 2px #f4cd00;
          box-shadow: 0 0 2px #f4cd00;
  color: #fff;
}

/* ==========================================================================
   #Locations Arabic
   ========================================================================== */
html[dir=rtl] .post-ckt-box .left-side {
  padding-left: 50px;
  padding-right: 0;
}
@media (max-width: 480px) {
  html[dir=rtl] .post-ckt-box .left-side {
    padding-left: 21px;
  }
}
html[dir=rtl] .post-ckt-box .left-side::after, html[dir=rtl] .post-ckt-box .left-side::before {
  left: 0;
  right: auto;
}
html[dir=rtl] .post-ckt-box .left-side .about-product {
  padding-left: 0;
  padding-right: 20px;
}
@media (max-width: 480px) {
  html[dir=rtl] .post-ckt-box .left-side .about-product {
    padding-right: 15px;
  }
}
html[dir=rtl] .post-ckt-box .left-side .icon img {
  margin-left: 9px;
  margin-right: 0;
}

.u-bold-capitalized {
  font-weight: 700;
}

input {
  -webkit-tap-highlight-color: transparent;
}

.tab-content-js,
.subeach-tab-js {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.monitor-radio {
  padding-left: 21px;
  position: relative;
}
.monitor-radio label {
  display: inline-block;
  line-height: 20px;
}
.monitor-radio label::before {
  background-color: transparent;
  border: 1px solid #032a3b;
  border-radius: 100%;
  content: "";
  display: inline-block;
  height: 13px;
  left: 0;
  padding: 1px;
  position: absolute;
  top: 3px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 13px;
}
.monitor-radio input {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.monitor-radio input:checked[type=radio] + label::before {
  background-color: #0075ff;
  border-color: #0075ff;
  -webkit-box-shadow: inset 0 0 0 1.5px #fff;
          box-shadow: inset 0 0 0 1.5px #fff;
}

.rdio-box {
  font-size: 14px;
  font-weight: 700;
  line-height: 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
.rdio-box label {
  border: 2px solid #032a3b;
  color: #032a3b;
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 14px 15px 14px 36px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .rdio-box label {
    padding: 12px 15px 12px 36px;
  }
}
@media (max-width: 480px) {
  .rdio-box label {
    padding: 10px 10px 10px 32px;
  }
}
.rdio-box label::before {
  background-color: transparent;
  border: 1px solid #032a3b;
  border-radius: 100%;
  content: "";
  display: inline-block;
  height: 13px;
  left: 15px;
  padding: 1px;
  position: absolute;
  top: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 13px;
}
@media (max-width: 767px) {
  .rdio-box label::before {
    top: 13px;
  }
}
@media (max-width: 480px) {
  .rdio-box label::before {
    left: 10px;
    top: 11px;
  }
}
.rdio-box input {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.rdio-box input:checked[type=radio] + label::before {
  background-color: #0075ff;
  border-color: #0075ff;
  -webkit-box-shadow: inset 0 0 0 1.5px #fff;
          box-shadow: inset 0 0 0 1.5px #fff;
}

.classesradio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -7px;
}
.classesradio-group .classes-box {
  margin: 0 7px 10px;
  width: calc(50% - 14px);
}
@media (max-width: 575px) {
  .classesradio-group .classes-box {
    width: calc(100% - 14px);
  }
}
.classesradio-group .classes-box.active .rdio-box input[type=radio] + label::before {
  background-color: #0075ff;
  border-color: #0075ff;
  -webkit-box-shadow: inset 0 0 0 1.5px #fff;
          box-shadow: inset 0 0 0 1.5px #fff;
}

.citytab-content-box {
  padding: 15px 0 9px;
  width: 100%;
}

.membership-citytab-wrap .citytab-content-box {
  padding-bottom: 0;
  position: relative;
  z-index: 3;
}
.membership-citytab-wrap .citytab-content-box + .citytab-content-box.Duration, .membership-citytab-wrap .citytab-content-box + .citytab-content-box.Session-select {
  z-index: 1;
}

.monthlyform-step .joinform-step .calendar.left {
  width: 100%;
}
.monthlyform-step .joinform-step .calendar.right {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.monthlyform-step .left-stp {
  float: left;
  padding-right: 30px;
  width: 55%;
}
@media (max-width: 991px) {
  .monthlyform-step .left-stp {
    padding-right: 0;
    width: 100%;
  }
}
.monthlyform-step .pay-layout .classestab-content-box {
  padding: 0;
}
.monthlyform-step .pay-layout .citytab-content-box {
  padding-top: 0;
}
@media (max-width: 575px) {
  .monthlyform-step .form-div .fieldset .hs-field input,
.monthlyform-step .form-div .fieldset .hs-field select,
.monthlyform-step .form-div .fieldset .hs-field textarea {
    font-size: 13px;
    line-height: 20px;
  }
}
.monthlyform-step .stp-in {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.monthlyform-step .joinaccrod-title {
  width: 100%;
}
.monthlyform-step .joinaccrod-tab {
  padding: 20px 0 0;
}
@media (max-width: 767px) {
  .monthlyform-step .joinaccrod-tab {
    padding: 14px 0 0;
  }
}
.monthlyform-step .location_dropdown ul li span,
.monthlyform-step .location_dropdown ul li a {
  font-size: 16px;
}
@media (max-width: 460px) {
  .monthlyform-step .location_dropdown ul li span,
.monthlyform-step .location_dropdown ul li a {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (max-width: 399px) {
  .monthlyform-step .location_dropdown ul li span,
.monthlyform-step .location_dropdown ul li a {
    font-size: 12px;
    line-height: 20px;
  }
}
.monthlyform-step .location-classes-select .location_dropdown ul {
  padding-top: 22px;
  top: calc(100% - 14px);
}
.monthlyform-step .location-classes-select .citytab-container .citytab-content-box {
  padding-bottom: 0;
}

.gym-join-monthly {
  padding: 27px 0;
}
@media (max-width: 767px) {
  .gym-join-monthly {
    padding: 24px 0;
  }
}
.gym-join-monthly .location_dropdown .location_label {
  border-color: #032a3b;
  color: #032a3b;
}
.gym-join-monthly .location_dropdown .location_label::before {
  border-top-color: #032a3b;
}
.gym-join-monthly .location_dropdown ul li a,
.gym-join-monthly .location_dropdown ul li button {
  color: #032a3b;
}
.gym-join-monthly .bottom-text {
  margin: 0;
}
.gym-join-monthly .iframe-images {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.gym-join-monthly .iframe-images img {
  height: auto;
  margin: 10px;
  max-height: 60px;
  max-width: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 767px) {
  .gym-join-monthly .iframe-images img {
    max-height: 50px;
    max-width: 100px;
  }
}
@media (max-width: 461px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe {
    display: block;
    float: none;
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
  }
}
.gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .iframe_wraps {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .iframe_wraps {
    margin-top: 0;
  }
}
.gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  min-height: 314px;
  width: 100% !important;
}
@media (max-width: 431px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe iframe {
    min-height: 308px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 417px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe iframe {
    min-height: 323px;
  }
}
@media (max-width: 399px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe iframe {
    min-height: 310px;
  }
}
@media (max-width: 386px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe iframe {
    min-height: 324px;
  }
}
@media (max-width: 417px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .each-pay-method iframe {
    min-height: 323px;
  }
}
@media (max-width: 386px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .each-pay-method iframe {
    min-height: 324px;
  }
}
@media (max-width: 575px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .each-pay-method .iframe-images img {
    max-height: 45px;
    max-width: 80px;
  }
}
.gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .iframe-images {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .iframe-images img {
  height: auto;
  margin: 10px;
  max-height: 60px;
  max-width: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
@media (max-width: 767px) {
  .gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .left-iframe .iframe-images img {
    max-height: 50px;
    max-width: 100px;
  }
}
.gym-join-monthly .join-progress-contents.join-progress-accordian .joinform-step .step-buttons {
  margin-top: 16px;
}

.location-classes-select {
  margin: 0 0 15px;
  position: relative;
  width: 100%;
  z-index: 3;
}
.location-classes-select + .location-classes-select {
  z-index: 2;
}
.location-classes-select.loc-err-design .field-validation-error {
  margin: -6px 0 0;
  top: -50px;
}
@media (max-width: 1199px) {
  .location-classes-select.loc-err-design .field-validation-error {
    top: -46px;
  }
}
@media (max-width: 991px) {
  .location-classes-select.loc-err-design .field-validation-error {
    top: -44px;
  }
}
@media (max-width: 575px) {
  .location-classes-select.loc-err-design .field-validation-error {
    top: -34px;
  }
}
@media (max-width: 480px) {
  .location-classes-select.loc-err-design .field-validation-error {
    top: -34px;
  }
}
@media (min-width: 1200px) {
  .location-classes-select.session-checkout .subtab-dropdown .subeach-tab-label {
    height: 50px;
    max-height: 50px;
  }
}
.location-classes-select .field-validation-error,
.location-classes-select .custom-phone-validation {
  background-color: #fff;
  color: #f00;
  display: none;
  font-size: 12px;
  left: 14px;
  line-height: 15px;
  margin: 0 0 -7px;
  padding: 0 3px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 14;
}
@media (max-width: 480px) {
  .location-classes-select .field-validation-error,
.location-classes-select .custom-phone-validation {
    left: 9px;
  }
}
.location-classes-select .location_dropdown {
  max-width: 100%;
}
.location-classes-select .location_dropdown .location_label {
  background-color: #fff;
  font-weight: 700;
  height: 50px;
  max-height: 50px;
  padding: 10px 44px 10px 15px;
  position: relative;
  z-index: 11;
}
@media (max-width: 1199px) {
  .location-classes-select .location_dropdown .location_label {
    height: 46px;
    max-height: 46px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 991px) {
  .location-classes-select .location_dropdown .location_label {
    height: 44px;
    max-height: 44px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .location-classes-select .location_dropdown .location_label {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .location-classes-select .location_dropdown .location_label {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
@media (max-width: 480px) {
  .location-classes-select .location_dropdown .location_label {
    padding-left: 10px;
    padding-right: 32px;
  }
}
.location-classes-select .location_dropdown .location_label::before {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top-width: 12px;
  right: 14px;
}
@media (max-width: 767px) {
  .location-classes-select .location_dropdown .location_label::before {
    border-left-width: 7px;
    border-right-width: 7px;
    border-top-width: 10px;
  }
}
@media (max-width: 480px) {
  .location-classes-select .location_dropdown .location_label::before {
    right: 9px;
  }
}
.location-classes-select .location_dropdown .location_label.active {
  z-index: 12;
}
.location-classes-select .location_dropdown .location_label.active + ul {
  z-index: 11;
}
.location-classes-select .location_dropdown ul {
  background-color: #fff;
  border: 2px solid #022a3a;
  -webkit-box-shadow: 0 3px 4px rgba(2, 42, 58, 0.5);
          box-shadow: 0 3px 4px rgba(2, 42, 58, 0.5);
  left: 0;
  margin-top: -14px !important;
  overflow: hidden;
  padding: 35px 0 15px !important;
  position: absolute;
  top: calc(100% - 24px);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  width: 100%;
}
@media (max-width: 991px) {
  .location-classes-select .location_dropdown ul {
    margin-top: -10px !important;
    padding-top: 29px !important;
  }
}
@media (max-width: 575px) {
  .location-classes-select .location_dropdown ul {
    margin-top: unset !important;
    padding: 24px 0 10px !important;
  }
}
@media (max-width: 480px) {
  .location-classes-select .location_dropdown ul {
    padding: 20px 0 !important;
  }
}
.location-classes-select .location_dropdown ul li.active a,
.location-classes-select .location_dropdown ul li.active button {
  background-color: #e2e2e2;
}
.location-classes-select .location_dropdown ul li.active span {
  background-color: #e2e2e2;
}
.location-classes-select .location_dropdown ul li.u-fill-yellow a,
.location-classes-select .location_dropdown ul li.u-fill-yellow button {
  font-weight: 800;
}
.location-classes-select .location_dropdown ul li a,
.location-classes-select .location_dropdown ul li button {
  color: #022a3a;
  font-weight: 700;
  padding: 4px 15px;
  position: relative;
}
@media (max-width: 480px) {
  .location-classes-select .location_dropdown ul li a,
.location-classes-select .location_dropdown ul li button {
    padding: 4px 10px;
  }
}
.location-classes-select .location_dropdown ul li span {
  color: #022a3a;
  font-weight: 700;
  padding: 4px 15px;
  position: relative;
}
@media (max-width: 480px) {
  .location-classes-select .location_dropdown ul li span {
    padding: 4px 10px;
  }
}

.classestab-content-box {
  padding: 10px 0;
}
.classestab-content-box hr {
  border-top: 2px solid #2a4b5a;
  margin-bottom: 13px;
}
@media (max-width: 480px) {
  .classestab-content-box hr {
    margin-bottom: 11px;
  }
}
.classestab-content-box .o-layout__item {
  color: rgba(0, 0, 0, 0.87);
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 480px) {
  .classestab-content-box .o-layout__item {
    font-size: 13px;
  }
}

.heartrate-check {
  padding-left: 22px;
  position: relative;
  text-align: left;
  width: 100%;
}
.heartrate-check label {
  display: block;
  font-size: 14px;
  line-height: 20px;
}
.heartrate-check input {
  cursor: pointer;
  left: 0;
  position: absolute;
  top: 3px;
}
@media (max-width: 767px) {
  .heartrate-check input {
    top: 2px;
  }
}

.location-select-message {
  padding-bottom: 20px;
}
.location-select-message h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 22px;
  text-transform: unset;
}
@media (max-width: 1199px) {
  .location-select-message h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .location-select-message h4 {
    font-size: 16px;
  }
}

.subtab-dropdown {
  position: relative;
  width: 100%;
}
.subtab-dropdown .subeach-tab-label {
  background-color: #fff;
  border: 2px solid #032a3b;
  border-radius: 24px;
  color: #032a3b;
  display: block;
  font-size: 17px;
  font-weight: 700;
  height: 48px;
  letter-spacing: 0.5px;
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
  padding: 10px 44px 10px 15px;
  position: relative;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
  width: 100%;
  z-index: 10;
}
@media (max-width: 1199px) {
  .subtab-dropdown .subeach-tab-label {
    height: 46px;
    max-height: 46px;
    padding-bottom: 9px;
    padding-top: 9px;
  }
}
@media (max-width: 991px) {
  .subtab-dropdown .subeach-tab-label {
    height: 44px;
    max-height: 44px;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .subtab-dropdown .subeach-tab-label {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media (max-width: 575px) {
  .subtab-dropdown .subeach-tab-label {
    font-size: 13px;
    height: 34px;
    max-height: 34px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
@media (max-width: 480px) {
  .subtab-dropdown .subeach-tab-label {
    padding-left: 10px;
    padding-right: 32px;
  }
}
.subtab-dropdown .subeach-tab-label::before {
  border-left: 8px solid transparent;
  border-radius: 3px;
  border-right: 8px solid transparent;
  border-top: 12px solid #022a3a;
  content: "";
  display: inline-block;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .subtab-dropdown .subeach-tab-label::before {
    border-left-width: 7px;
    border-right-width: 7px;
    border-top-width: 10px;
  }
}
@media (max-width: 480px) {
  .subtab-dropdown .subeach-tab-label::before {
    right: 9px;
  }
}
.subtab-dropdown .subeach-tab-label.active {
  border-radius: 24px 24px 0 0;
}
.subtab-dropdown .subeach-tab-label.active::before {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
}
.subtab-dropdown ul {
  background-color: #fff;
  border: 2px solid #032a3b;
  border-radius: 0 0 24px 24px;
  display: none;
  left: 0;
  list-style: none;
  overflow: hidden;
  padding: 22px 0 15px;
  position: absolute;
  right: 0;
  top: calc(100% - 14px);
  width: 100%;
  z-index: 3;
}
.subtab-dropdown ul li {
  margin: 0;
  width: 100%;
}
.subtab-dropdown ul li.active {
  background-color: #e2e2e2;
}
.subtab-dropdown ul li a,
.subtab-dropdown ul li span {
  color: #022a3a;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.05px;
  line-height: 24px;
  padding: 4px 15px;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
}
@media (max-width: 460px) {
  .subtab-dropdown ul li a,
.subtab-dropdown ul li span {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (max-width: 399px) {
  .subtab-dropdown ul li a,
.subtab-dropdown ul li span {
    font-size: 12px;
    line-height: 20px;
  }
}
.subtab-dropdown ul li a:hover,
.subtab-dropdown ul li span:hover {
  background-color: #e2e2e2;
}

.free-membership .subtab-dropdown .subeach-tab-label.active {
  z-index: 12;
}
.free-membership .subtab-dropdown .subeach-tab-label.active + ul {
  z-index: 11;
}

.subcity-location-dropdown {
  position: relative;
  z-index: 4;
}

.main-banner {
  display: inline-block;
  margin: auto;
  padding: 50px 10px;
  text-align: center;
  width: 100%;
}
.main-banner .header-logo {
  padding: 20px 0;
}
@media (max-width: 580px) {
  .main-banner .header-logo {
    padding: 10px 0;
  }
}
.main-banner img {
  height: auto;
  max-width: 220px;
  width: auto;
}
@media (max-width: 580px) {
  .main-banner img {
    max-width: 100px;
  }
}
@media (max-width: 320px) {
  .main-banner img {
    max-width: 70px;
  }
}
.main-banner .banner-heading {
  padding: 25px 0;
}
@media (max-width: 320px) {
  .main-banner .banner-heading {
    padding: 15px 0;
  }
}
.main-banner .banner-heading .banner-header-lg {
  color: #f4cd00;
  font-size: 55px;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .main-banner .banner-heading .banner-header-lg {
    font-size: 44px;
  }
}
@media (max-width: 580px) {
  .main-banner .banner-heading .banner-header-lg {
    font-size: 35px;
  }
}
@media (max-width: 420px) {
  .main-banner .banner-heading .banner-header-lg {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .main-banner .banner-heading .banner-header-lg {
    font-size: 22px;
  }
}
.main-banner .banner-heading .banner-header-md {
  color: #fff;
  font-size: 50px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .main-banner .banner-heading .banner-header-md {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .main-banner .banner-heading .banner-header-md {
    font-size: 36px;
  }
}
@media (max-width: 580px) {
  .main-banner .banner-heading .banner-header-md {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .main-banner .banner-heading .banner-header-md {
    font-size: 18px;
  }
}
.main-banner .banner-heading .game-banner-sm {
  background-color: #f4cd00;
  color: #022a3a;
  font-size: 48px;
  letter-spacing: 0;
  margin: 0 426px;
  padding: 5px;
}
@media (max-width: 1200px) {
  .main-banner .banner-heading .game-banner-sm {
    font-size: 36px;
    margin: 0 246px;
  }
}
@media (max-width: 1024px) {
  .main-banner .banner-heading .game-banner-sm {
    font-size: 30px;
    margin: 0 211px;
  }
}
@media (max-width: 767px) {
  .main-banner .banner-heading .game-banner-sm {
    margin: 0 52px;
  }
}
@media (max-width: 580px) {
  .main-banner .banner-heading .game-banner-sm {
    font-size: 22px;
    margin: 0 66px;
  }
}
@media (max-width: 420px) {
  .main-banner .banner-heading .game-banner-sm {
    font-size: 18px;
    margin: 0 20px;
  }
}
@media (max-width: 320px) {
  .main-banner .banner-heading .game-banner-sm {
    font-size: 16px;
  }
}

.sec-title .banner-header-lg {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .sec-title .banner-header-lg {
    font-size: 44px;
  }
}
@media (max-width: 580px) {
  .sec-title .banner-header-lg {
    font-size: 35px;
  }
}
@media (max-width: 420px) {
  .sec-title .banner-header-lg {
    font-size: 30px;
  }
}
@media (max-width: 320px) {
  .sec-title .banner-header-lg {
    font-size: 22px;
  }
}

.js-image-crop {
  background-position: center;
  background-size: cover;
}

.w-55 {
  margin-right: 30px;
  width: calc(55% - 30px);
}

.w-45 {
  width: 45%;
}

.ui.popup.calendar {
  display: none;
}

.mb-20 {
  margin-bottom: 20px;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-80 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 1300px) {
  .mobile-80 {
    display: block;
    margin: auto;
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .mobile-80 {
    max-width: 100%;
    width: 100%;
  }
}

.member-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  width: 100%;
}
.member-next .sticky-label {
  margin-bottom: 0;
  width: calc(100% - 170px);
}
@media (max-width: 768px) {
  .member-next .sticky-label {
    margin-bottom: 20px;
    width: 100%;
  }
}
.member-next .sticky-label h6 {
  height: 100%;
  width: 100%;
}
@media (max-width: 575px) {
  .member-next .sticky-label h6 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.member-next .sticky-label span .o-icon {
  fill: #f00;
  height: 28px;
  width: 28px;
}
.member-next .step-buttons {
  margin-top: 0 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.member-next .h-100 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 0;
  margin-right: 15px;
  padding: 10px 20px;
}
.member-next .trim-text {
  margin-right: 0;
  padding: 10px;
}

.star-rating-display {
  color: #c5c5c5;
  display: inline-block;
  line-height: 26px;
  position: relative;
  unicode-bidi: bidi-override;
}
@media (max-width: 767px) {
  .star-rating-display {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  .star-rating-display {
    text-align: center;
    width: 100%;
  }
}
.star-rating-display::before, .star-rating-display::after {
  content: "★★★★★";
  display: block;
  font-size: 30px;
  white-space: nowrap;
}
.star-rating-display::before {
  color: gold;
  left: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.star-rating-display::after {
  z-index: 0;
}
.star-rating-display[data-rating]::before {
  width: 100%;
}
.star-rating-display[data-rating=FIVE]::before {
  width: 100%;
}

.is-vishidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.all-reviews-wrapper .all-reviews-heading {
  text-align: center;
}
@media (max-width: 420px) {
  .all-reviews-wrapper .all-reviews-heading .o-layout__item {
    padding: 0;
  }
}
@media (max-width: 420px) {
  .all-reviews-wrapper .all-reviews-heading .btnwidth {
    padding-left: 5px;
  }
}
.all-reviews-wrapper .all-reviews-heading h2 {
  margin-bottom: 0;
}
.all-reviews-wrapper .all-reviews-heading .average-review-number {
  display: inline-block;
  font-size: 14px;
}
.all-reviews-wrapper .all-reviews-heading p {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .all-reviews-content .clients-review {
    float: left;
    width: 100%;
  }
}
.all-reviews-wrapper .all-reviews-content .review-timing {
  float: right;
  margin-bottom: -32px;
}
@media (max-width: 420px) {
  .all-reviews-wrapper .all-reviews-content .review-timing {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
}
.all-reviews-wrapper .all-reviews-content .review-timing span {
  color: #022a3a;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
@media (max-width: 420px) {
  .all-reviews-wrapper .all-reviews-content .review-timing span {
    margin-bottom: 18px;
  }
}
.all-reviews-wrapper .clients-review-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .clients-review-details {
    text-align: center;
    width: 100%;
  }
}
.all-reviews-wrapper .clients-review-details .client-name {
  color: #022a3a;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 2px;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .clients-review-details .client-name {
    margin-bottom: 13px;
    margin-left: 0;
    margin-top: 20px;
  }
}
.all-reviews-wrapper .clients-review-details p {
  color: #022a3a;
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .clients-review-details p {
    margin-top: 0;
    width: 100%;
  }
}
.all-reviews-wrapper .clients-review-details p:first-child {
  margin-top: 0;
}
.all-reviews-wrapper .review-content-box-wrp {
  background-color: transparent;
  border-left: 1px solid #d2cdcd;
  border-radius: 20px;
  border-top: 1px solid #d2cdcd;
  -webkit-box-shadow: 3px 3px 0 #022a3a;
          box-shadow: 3px 3px 0 #022a3a;
  margin: 0 0 20px;
  padding: 15px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .review-content-box-wrp {
    padding: 20px;
  }
}
.all-reviews-wrapper .review-content-box-wrp:first-child {
  margin-top: 20px;
}
.all-reviews-wrapper .review-content-box-wrp:last-child {
  margin-bottom: 0;
}
.all-reviews-wrapper .review-content-box-wrp .all-review-profile-image {
  width: 80px;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 105px;
  }
}
.all-reviews-wrapper .review-content-box-wrp .all-review-profile-image img {
  border-radius: 100%;
  -webkit-box-shadow: 0 0 4px #022a3a4d;
          box-shadow: 0 0 4px #022a3a4d;
  height: 80px;
  margin-bottom: 0;
  width: 80px;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image img {
    height: 100px;
    width: 100px;
  }
}
.all-reviews-wrapper .review-content-box-wrp .clients-review-text {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3px;
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  .all-reviews-wrapper .review-content-box-wrp .clients-review-text {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    width: 100%;
  }
}
.all-reviews-wrapper .review-content-box-wrp .clients-review-text .txt-in {
  padding-right: 20px;
}
@media (max-width: 767px) {
  .all-reviews-wrapper .review-content-box-wrp .clients-review-text .txt-in {
    padding-bottom: 15px;
    padding-right: 0;
    width: 100%;
  }
}
.all-reviews-wrapper .review-content-box-wrp .clients-review-text .review-icon {
  height: auto;
  max-height: 40px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

.all-reviews-load-more-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
}

.no-data-msg {
  margin: inherit;
}

[dir=rtl] .star-rating-display {
  color: #c5c5c5;
  display: inline-block;
  line-height: 26px;
  position: relative;
  unicode-bidi: bidi-override;
}
@media (max-width: 767px) {
  [dir=rtl] .star-rating-display {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  [dir=rtl] .star-rating-display {
    text-align: center;
    width: 100%;
  }
}
[dir=rtl] .star-rating-display::before, [dir=rtl] .star-rating-display::after {
  content: "★★★★★";
  display: block;
  font-size: 30px;
  white-space: nowrap;
}
[dir=rtl] .star-rating-display::before {
  color: gold;
  left: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
[dir=rtl] .star-rating-display::after {
  z-index: 0;
}
[dir=rtl] .star-rating-display[data-rating]::before {
  width: 100%;
}
[dir=rtl] .star-rating-display[data-rating=FIVE]::before {
  width: 100%;
}
[dir=rtl] .is-vishidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}
[dir=rtl] .all-reviews-wrapper .all-reviews-heading {
  text-align: center;
}
@media (max-width: 420px) {
  [dir=rtl] .all-reviews-wrapper .all-reviews-heading .o-layout__item {
    padding: 0;
  }
}
@media (max-width: 420px) {
  [dir=rtl] .all-reviews-wrapper .all-reviews-heading .btnwidth {
    padding-left: 5px;
  }
}
[dir=rtl] .all-reviews-wrapper .all-reviews-heading h2 {
  margin-bottom: 0;
}
[dir=rtl] .all-reviews-wrapper .all-reviews-heading .average-review-number {
  display: inline-block;
  font-size: 14px;
}
[dir=rtl] .all-reviews-wrapper .all-reviews-heading p {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .all-reviews-content .clients-review {
    float: left;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .all-reviews-content .review-timing {
  float: left;
  margin-bottom: -32px;
}
@media (max-width: 420px) {
  [dir=rtl] .all-reviews-wrapper .all-reviews-content .review-timing {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .all-reviews-content .review-timing span {
  color: #022a3a;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
@media (max-width: 420px) {
  [dir=rtl] .all-reviews-wrapper .all-reviews-content .review-timing span {
    margin-bottom: 18px;
  }
}
[dir=rtl] .all-reviews-wrapper .clients-review-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .clients-review-details {
    text-align: center;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .clients-review-details .client-name {
  color: #022a3a;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 2px;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .clients-review-details .client-name {
    margin-bottom: 13px;
    margin-left: 0;
    margin-top: 20px;
  }
}
[dir=rtl] .all-reviews-wrapper .clients-review-details p {
  color: #022a3a;
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .clients-review-details p {
    margin-top: 0;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .clients-review-details p:first-child {
  margin-top: 0;
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp {
  background-color: transparent;
  border-left: 1px solid #d2cdcd;
  border-radius: 20px;
  border-top: 1px solid #d2cdcd;
  -webkit-box-shadow: 3px 3px 0 #022a3a;
          box-shadow: 3px 3px 0 #022a3a;
  margin: 0 0 20px;
  padding: 15px 20px;
  position: relative;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .review-content-box-wrp {
    padding: 20px;
  }
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp:first-child {
  margin-top: 20px;
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp:last-child {
  margin-bottom: 0;
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image {
  width: 80px;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 105px;
  }
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image img {
  border-radius: 100%;
  -webkit-box-shadow: 0 0 4px #022a3a4d;
          box-shadow: 0 0 4px #022a3a4d;
  height: 80px;
  margin-bottom: 0;
  width: 80px;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .review-content-box-wrp .all-review-profile-image img {
    height: 100px;
    width: 100px;
  }
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp .clients-review-text {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3px;
  padding-left: 0;
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .review-content-box-wrp .clients-review-text {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp .clients-review-text .txt-in {
  padding-right: 20px;
}
@media (max-width: 767px) {
  [dir=rtl] .all-reviews-wrapper .review-content-box-wrp .clients-review-text .txt-in {
    padding-bottom: 15px;
    padding-right: 0;
    width: 100%;
  }
}
[dir=rtl] .all-reviews-wrapper .review-content-box-wrp .clients-review-text .review-icon {
  height: auto;
  max-height: 40px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
[dir=rtl] .all-reviews-load-more-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px;
}
[dir=rtl] .no-data-msg {
  margin: inherit;
}

#errorMsgCustom {
  color: red;
  display: none;
  font-size: 12px;
}

/* ==========================================================================
   #Blog Css for blog and blog category pages
========================================================================== */
.tag {
  border: 1px solid #b6b6b6;
  border-radius: 30px;
  color: #727272;
  font-size: 12px;
  margin: 0 2px;
  padding: 3px 7px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tag--link:active,
.tag--link:hover {
  border: 1px solid #00999d;
  color: #00999d;
}

.tag--link:link,
.tag--link:visited {
  color: #212121;
}

a.tag.tag--link {
  display: inline-block;
  margin-bottom: 4px;
  margin-left: 0;
}

.hrblog {
  background-color: #d6d9df;
  border: 0;
  height: 1px;
  margin: 10px auto;
  padding: 0;
}

.blog-post__meta {
  margin-bottom: 8%;
}

.blogpost_center {
  margin: auto;
}

.blog-post ul,
.blog-post ol {
  padding-left: 40px;
}
.blog-post .iti__country-list {
  padding-left: 0;
}
.blog-post h2.u-h1 {
  margin-bottom: 10px;
}
.blog-post .media-block__media {
  width: 100% !important;
}
.blog-post .media-block__media img {
  border-radius: 20px;
  height: auto;
  width: 100%;
}
.blog-post .title-para {
  margin-bottom: 30px;
}
.blog-post .title-para:last-child {
  margin-bottom: 0;
}
.blog-post img {
  height: auto;
  max-width: 100%;
}
.blog-post p {
  overflow: hidden;
}
.blog-post .post_contain {
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-post .post_contain {
    margin-bottom: 24px;
  }
}
.blog-post .post_contain:last-child {
  margin-bottom: 0;
}
@media (max-width: 739px) {
  .blog-post .post_contain .o-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.blog-post .location_dropdown-white ul {
  padding-left: 0;
}

.blogpost_detail {
  padding-top: 15px;
}

.wrapper-bg {
  background-color: #fdfdff;
}

.o-innerband-low {
  padding: 0 0 15px;
}

.mobileshow {
  display: block;
}

@media (min-width: 20em) {
  .mobileshow {
    display: none;
  }

  .i-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .i-ctblock {
    height: 250px;
  }

  .thead {
    font-size: 14px;
  }

  .tdfs {
    font-size: 12px;
  }

  .tagst {
    font-size: 8px;
    margin: 0;
    padding: 3px;
  }
}
@media (min-width: 46.25em) {
  .mobileshow {
    display: block;
  }

  .thead {
    font-size: 16px;
  }

  .tdfs {
    font-size: 14px;
  }

  .tagst {
    font-size: 8px;
    margin: 0 2px;
    padding: 3px;
  }
}
@media (min-width: 61.25em) {
  .mobileshow {
    display: block;
  }

  .thead {
    font-size: 24px;
  }

  .tdfs {
    font-size: 16px;
  }

  .tagst {
    font-size: 11px;
    margin: 0 2px;
    padding: 3px 7px;
  }
}
/*  blog list page with sidebar*/
.blog-list-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.blog-list-wrap .left-side {
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0;
  width: 256px;
}
@media (max-width: 991px) {
  .blog-list-wrap .left-side {
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-list-wrap .left-side {
    max-width: 470px;
  }
}
.blog-list-wrap .left-side .search-container {
  border-radius: 0;
  margin-bottom: 20px;
  max-width: 90%;
  position: relative;
}
@media (max-width: 767px) {
  .blog-list-wrap .left-side .search-container {
    max-width: 100%;
  }
}
.blog-list-wrap .left-side .search-container input {
  border-color: #022a3a;
  border-radius: 24px;
  border-width: 1px;
  height: 42px;
  max-height: 42px;
  padding: 10px 61px 10px 10px;
  width: 100%;
}
.blog-list-wrap .left-side .search-container input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.blog-list-wrap .left-side .search-container button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f4cd00;
  border: 2px solid transparent;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  right: 1px;
  text-align: center;
  top: 1px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 51px;
}
.blog-list-wrap .left-side .search-container button:hover {
  background: #022a3a;
}
.blog-list-wrap .left-side .search-container button:hover svg {
  fill: #f4cd00;
}
.blog-list-wrap .left-side .search-container button .o-icon {
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 28px;
}
.blog-list-wrap .left-side .search-container button:focus {
  outline: none;
}
.blog-list-wrap .left-side .categories {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  padding-right: 12px;
  position: sticky;
  top: 110px;
  width: 100%;
}
@media (max-width: 767px) {
  .blog-list-wrap .left-side .categories {
    padding-right: 0;
  }
}
.blog-list-wrap .left-side .categories .activelink {
  color: black;
  font-weight: bold;
}
.blog-list-wrap .right-side {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% - 256px);
}
@media (max-width: 991px) {
  .blog-list-wrap .right-side {
    width: 100%;
  }
}
.blog-list-wrap .right-side.full-width {
  width: 100%;
}
.blog-list-wrap .right-side .blog-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.blog-list-wrap .right-side .blog-list .active {
  display: block;
}
.blog-list-wrap .right-side .blog-list .hide {
  display: none;
}
.blog-list-wrap .right-side .blog-list .list {
  width: 100%;
}

.blog-card-wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.blog-card-wrp .each-card {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 5px #949290;
          box-shadow: 0 0 5px #949290;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
  margin-right: 20px;
  max-width: calc(50% - 10px);
  width: 100%;
}
@media (max-width: 575px) {
  .blog-card-wrp .each-card {
    margin-right: 0;
    max-width: 100%;
  }
}
.blog-card-wrp .each-card:nth-child(2n) {
  margin-right: 0;
}
.blog-card-wrp .each-card .blog-image {
  height: 295px;
  width: 100%;
}
@media (max-width: 1200px) {
  .blog-card-wrp .each-card .blog-image {
    height: 250px;
  }
}
@media (max-width: 1024px) {
  .blog-card-wrp .each-card .blog-image {
    height: 210px;
  }
}
@media (max-width: 992px) {
  .blog-card-wrp .each-card .blog-image {
    height: 200px;
  }
}
@media (max-width: 575px) {
  .blog-card-wrp .each-card .blog-image {
    height: auto;
  }
}
.blog-card-wrp .each-card .blog-image img {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.blog-card-wrp .each-card .blog-list-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: calc(100% - 295px);
  padding: 30px;
  width: 100%;
}
@media (max-width: 1200px) {
  .blog-card-wrp .each-card .blog-list-content {
    height: calc(100% - 250px);
  }
}
@media (max-width: 1024px) {
  .blog-card-wrp .each-card .blog-list-content {
    height: calc(100% - 210px);
  }
}
@media (max-width: 992px) {
  .blog-card-wrp .each-card .blog-list-content {
    height: calc(100% - 200px);
  }
}
@media (max-width: 768px) {
  .blog-card-wrp .each-card .blog-list-content {
    padding: 20px;
  }
}
@media (max-width: 580px) {
  .blog-card-wrp .each-card .blog-list-content {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .blog-card-wrp .each-card .blog-list-content {
    height: auto;
  }
}
.blog-card-wrp .each-card .blog-list-content > div {
  width: 100%;
}
.blog-card-wrp .each-card .blog-list-content .top .date {
  color: #949290;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  margin-bottom: 0;
}
.blog-card-wrp .each-card .blog-list-content .top span {
  border: 1px solid #949290;
  border-radius: 12px;
  color: #949290;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  margin-bottom: 6px;
  margin-right: 0;
  padding: 3px 9px;
  text-transform: capitalize;
  word-break: break-word;
}
.blog-card-wrp .each-card .blog-list-content .about-blog {
  margin-top: 15px;
  width: 100%;
}
.blog-card-wrp .each-card .blog-list-content .about-blog .blog-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .blog-card-wrp .each-card .blog-list-content .about-blog .blog-title {
    font-size: 21px;
  }
}
@media (max-width: 580px) {
  .blog-card-wrp .each-card .blog-list-content .about-blog .blog-title {
    text-align: center;
  }
}
.blog-card-wrp .each-card .blog-list-content .about-blog p {
  margin-bottom: 15px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
}
@media (max-width: 580px) {
  .blog-card-wrp .each-card .blog-list-content .about-blog p {
    text-align: justify;
  }
}
.blog-card-wrp .each-card .blog-list-content .button {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1199px) {
  .blog-card-wrp .each-card .blog-list-content .button {
    padding: 15px 30px;
  }
}
@media (min-width: 1024px) {
  .blog-card-wrp.three-column .each-card {
    margin-right: 21px;
    max-width: calc(33.33% - 14px);
  }
}
@media (min-width: 1024px) {
  .blog-card-wrp.three-column .each-card:nth-child(3n+3) {
    margin-right: 0;
  }
}

.author-list-wrap .left-side .categories li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  position: relative;
}
.author-list-wrap .left-side .categories li a {
  display: inline-block;
  position: relative;
}
.author-list-wrap .left-side .categories li .author-linkdin {
  background-position: 0;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  display: inline;
  font-size: 0;
  height: 16px;
  left: 0;
  margin-right: 4px;
  margin-top: 3px;
  padding: 0;
  position: relative;
  top: 0;
  vertical-align: top;
  width: 16px;
  z-index: 2;
}
.author-list-wrap .left-side .categories li .author-linkdin + a:not(.author-linkdin) {
  margin-left: 5px;
}

@media (min-width: 992px) and (max-width: 1024px) {
  .media_about-box.author-about-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: unset;
        -ms-flex-flow: unset;
            flex-flow: unset;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .media_about-box.author-about-box:nth-of-type(odd) .media-block__media {
    margin-bottom: 0;
  }
}
.media_about-box.author-about-box .media-about-left {
  width: calc(100% - 320px);
}
@media (max-width: 1399px) {
  .media_about-box.author-about-box .media-about-left {
    width: calc(100% - 300px);
  }
}
@media (max-width: 1199px) {
  .media_about-box.author-about-box .media-about-left {
    width: calc(100% - 280px) !important;
  }
}
@media (max-width: 991px) {
  .media_about-box.author-about-box .media-about-left {
    width: 100% !important;
  }
}
.media_about-box.author-about-box .media-about-right {
  width: 320px;
}
@media (max-width: 1399px) {
  .media_about-box.author-about-box .media-about-right {
    width: 300px;
  }
}
@media (max-width: 1199px) {
  .media_about-box.author-about-box .media-about-right {
    width: 280px !important;
  }
}
@media (max-width: 1024px) {
  .media_about-box.author-about-box .media-about-right {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .media_about-box.author-about-box .media-about-right {
    padding-right: 0;
    width: 100% !important;
  }
}
.media_about-box.author-about-box .media-about-right .author-responsive-image {
  line-height: 0;
  padding-top: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .media_about-box.author-about-box .media-about-right .author-responsive-image {
    height: 320px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    width: 260px;
  }
}
@media (max-width: 767px) {
  .media_about-box.author-about-box .media-about-right .author-responsive-image {
    height: 220px;
    width: 220px;
  }
}
@media (max-width: 575px) {
  .media_about-box.author-about-box .media-about-right .author-responsive-image {
    height: 200px;
    width: 200px;
  }
}
.media_about-box.author-about-box .media-about-right .author-responsive-image img {
  border-radius: 100%;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.pagination-container {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.pagination-container li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #022a3a;
  border-radius: 24px;
  color: white;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 22px;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  width: 50px;
}
.pagination-container li .active {
  background-color: #f4cd00;
  color: #022a3a;
}
.pagination-container li:hover:not(.disabled) {
  opacity: 0.9;
}
.pagination-container li.active:not(.disabled) {
  background-color: #f4cd00;
  color: #022a3a;
}
.pagination-container li.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.post__meta-wrap {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .post__meta-wrap {
    padding-bottom: 20px;
  }
}
.post__meta-wrap .blog-post__meta {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  float: left;
  margin: 0;
  text-align: left;
  width: 50%;
}
@media (max-width: 767px) {
  .post__meta-wrap .blog-post__meta {
    text-align: center;
    width: 100%;
  }
}
.post__meta-wrap .blog-post__meta .tag {
  background-color: #022a3a;
  border-color: #022a3a;
  color: #fff;
}
.post__meta-wrap .blog-post__meta .author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.post__meta-wrap .social-style {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 50%;
}
@media (max-width: 767px) {
  .post__meta-wrap .social-style {
    width: 100%;
  }
}
.post__meta-wrap .social-style .link-wrp {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .post__meta-wrap .social-style .link-wrp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .post__meta-wrap .social-style .link-wrp p {
    margin: 10px 5px 0;
  }
}
.post__meta-wrap .social-style .link-wrp ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: 20px;
  text-align: right;
  width: auto;
}
@media (max-width: 767px) {
  .post__meta-wrap .social-style .link-wrp ul {
    margin: 10px 10px -10px;
    text-align: center;
  }
}
.post__meta-wrap .social-style .link-wrp ul li {
  border-radius: 30px;
  float: none;
  height: auto;
  margin-right: 3px;
  max-width: 100%;
  padding: 0;
  text-align: center;
  width: auto;
}
.post__meta-wrap .social-style .link-wrp ul li:last-child {
  margin-right: 0;
}
.post__meta-wrap .social-style .link-wrp ul li button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 0;
  width: 40px;
}
.post__meta-wrap .social-style .link-wrp ul li button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.post__meta-wrap .social-style .link-wrp ul li button span {
  display: none;
}
.post__meta-wrap .social-style .link-wrp ul li button img {
  margin-bottom: 0;
}

.backtoblog-wrap {
  border-top: 1px solid #dfdfdf;
  padding-top: 30px;
  width: 100%;
}

.post-breadcrumb {
  background-color: #f2f4f5;
  display: inline-block;
  width: 100%;
}

.blgcate-wrap {
  margin-bottom: 24px;
  width: 100%;
}
.blgcate-wrap .tag {
  border-width: 2px;
  font-weight: 700;
}

.image-caption {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 22px;
  margin-top: 9px;
  width: 100%;
}
.image-caption .image-credit {
  display: block;
  font-weight: 400;
  width: 100%;
}

@media (max-width: 580px) {
  .post_contain h1.u-h1 {
    font-size: 25px;
    text-align: center;
  }
  .post_contain h2 {
    font-size: 23px;
    text-align: center;
  }
  .post_contain h3 {
    font-size: 21px;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .date-wrp {
    text-align: center;
  }
}

.ampdata_register .right.center-wrp {
  float: none;
  margin-left: auto;
  margin-right: auto;
  width: 500px;
}
.ampdata_register .right.center-wrp .amp-form {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .ampdata_register.u-padding-bottom-small {
    padding-top: 0;
  }
  .ampdata_register .right.center-wrp {
    width: 100%;
  }
}

.prefer-box {
  border: 1px solid rgba(2, 42, 58, 0.25);
  -webkit-box-shadow: 0 0 8px rgba(2, 42, 58, 0.35);
          box-shadow: 0 0 8px rgba(2, 42, 58, 0.35);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 20px 20px 25px;
  width: 600px;
}
.prefer-box.ae {
  display: none;
}
.prefer-box .prefer-pol {
  background-color: #f4cd00;
  border-radius: 5px;
  color: #022a3a;
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-bottom: 14px;
  padding: 7px 10px 6px 34px;
  position: relative;
}
@media (max-width: 767px) {
  .prefer-box .prefer-pol {
    line-height: 19px;
    padding-bottom: 5px;
    padding-top: 6px;
  }
}
.prefer-box .prefer-pol .plicon {
  height: 15px;
  left: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  position: absolute;
  top: 9px;
  width: 16px;
}
@media (max-width: 767px) {
  .prefer-box .prefer-pol .plicon {
    top: 7.5px;
  }
}

.prefer-form {
  width: 100%;
}
.prefer-form h3 {
  color: #022a3a;
  font-size: 19px;
  letter-spacing: 0.5px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: none;
  width: 100%;
}
@media (max-width: 991px) {
  .prefer-form h3 {
    font-size: 18px;
  }
}
.prefer-form form {
  text-align: center;
  width: 100%;
}
.prefer-form form .input-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1px 10px;
  position: relative;
  width: 100%;
}
.prefer-form form .input-radio:last-child {
  margin-bottom: 0;
}
.prefer-form form .input-radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.prefer-form form .input-radio input[type=radio]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.prefer-form form .input-radio input[type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
}
.prefer-form form .input-radio label {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f6;
  border: 0;
  border-radius: 0;
  color: #022a3a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25px;
  line-height: 24px;
  min-width: 80px;
  padding: 12px 20px 10px 46px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .prefer-form form .input-radio label {
    font-size: 16px;
    line-height: 22px;
    padding: 9px 16px 9px 38px;
  }
}
.prefer-form form .input-radio label::before, .prefer-form form .input-radio label::after {
  content: "";
  display: inline-block;
  left: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.prefer-form form .input-radio label::before {
  border: 2px solid #022a3a;
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
@media (max-width: 767px) {
  .prefer-form form .input-radio label::before {
    height: 16px;
    left: 14px;
    width: 16px;
  }
}
.prefer-form form .input-radio label::after {
  background-color: #022a3a;
  border-radius: 100%;
  height: 10px;
  left: 21px;
  opacity: 0;
  visibility: hidden;
  width: 10px;
}
@media (max-width: 767px) {
  .prefer-form form .input-radio label::after {
    height: 8px;
    left: 18px;
    width: 8px;
  }
}

.prefer-success-msg {
  text-align: center;
  width: 100%;
}
.prefer-success-msg p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 26px;
}

.gn-breadcrumb {
  line-height: 0;
  margin-bottom: 16px;
  width: 100%;
}
.gn-breadcrumb ul {
  display: block;
  line-height: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
@media (max-width: 767px) {
  .gn-breadcrumb ul {
    line-height: 20px;
  }
}
.gn-breadcrumb ul li {
  display: inline;
  padding-right: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .gn-breadcrumb ul li {
    padding-right: 20px;
  }
}
.gn-breadcrumb ul li::after {
  background-image: url("/build/svg/icons/caret-right-dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline;
  height: 22px;
  opacity: 0.6;
  position: absolute;
  right: 6px;
  vertical-align: top;
  width: 7px;
}
@media (max-width: 767px) {
  .gn-breadcrumb ul li::after {
    height: 20px;
    right: 3px;
    top: 1px;
    width: 6px;
  }
}
.gn-breadcrumb ul li:last-child {
  padding-right: 0;
}
.gn-breadcrumb ul li:last-child::after {
  display: none;
}
.gn-breadcrumb ul li a,
.gn-breadcrumb ul li p {
  display: inline;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
}
@media (max-width: 767px) {
  .gn-breadcrumb ul li a,
.gn-breadcrumb ul li p {
    font-size: 14px;
    line-height: 20px;
  }
}

.bmr-box {
  background: #fff;
  border-radius: 22px;
  width: 100%;
}
.bmr-box .form-control {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 20px 0 0 20px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #555;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857143;
  padding: 6px 12px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100%;
}
.bmr-box .form-control.gender {
  border-radius: 20px !important;
}
.bmr-box .input-group-addon {
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 0 20px 20px 0;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 12px;
  text-align: center;
}
.bmr-box .input-group {
  border-collapse: separate;
  display: table;
  margin: 0;
  position: relative;
  width: 100%;
}
.bmr-box .input-group .form-control,
.bmr-box .input-group .input-group-addon,
.bmr-box .input-group .input-group-btn {
  display: table-cell;
}
.bmr-box .alert {
  margin-bottom: 15px;
  text-align: center;
}
.bmr-box .btn {
  background-image: none;
  border: 1px solid transparent;
  border-radius: 96px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42857143;
  margin-bottom: 0;
  padding: 12px;
  text-align: center;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
.bmr-box .btn-success {
  background-color: #f4cd00;
  border-color: #f4cd00;
  border-radius: 96px;
  color: #0d2a3a;
  margin: 0;
  width: 100%;
}
.bmr-box .btn-success:hover {
  background-color: #0d2a3a;
  border-color: #0d2a3a;
  color: #fff;
}
.bmr-box label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 5px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .bmr-box {
    width: 100%;
  }
}

.bmr-result {
  display: none;
}
.bmr-result h4 {
  display: inline-block;
  font-size: 18px;
  width: 100%;
}
.bmr-result h4 span {
  display: inline-block;
}
.bmr-result h4 i {
  display: inline-block;
}

.btn-success.active .btn-success:active .open.dropdown-toggle.btn-success {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #fff;
}

.btn-success {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #fff;
}
.btn-success:focus, .btn-success:hover, .btn-success:active, .btn-success:active:focus {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #fff;
}

.btn-success.focus {
  background-color: #f4cd00;
  border-color: #f4cd00;
  color: #fff;
}

.bmr-result-wrp {
  border: solid 1px silver;
  border-radius: 5px;
  display: none;
  padding: 10px;
  text-align: center;
}
.bmr-result-wrp .result-wrp {
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 10px;
}
.bmr-result-wrp .warning-wrp {
  color: #999999;
}
.bmr-result-wrp .warning-wrp span {
  font-size: 20px;
}

.calc-wrap {
  width: 100%;
}
.calc-wrap .calc-content {
  display: inline-block;
  text-align: left;
  width: 100%;
}
.calc-wrap .calc-content ul {
  padding-left: 15px;
}
.calc-wrap .u-h3 {
  text-align: center;
}
.calc-wrap .calculator-form {
  display: inline-block;
  margin-top: 0;
  padding: 0 20px;
  text-align: left;
  width: 100%;
}
@media (max-width: 991px) {
  .calc-wrap .calculator-form {
    margin-top: 20px;
  }
}
.calc-wrap .calculator-form .fieldset-name {
  float: left;
  width: 50%;
}
.calc-wrap .calculator-form .form-group label {
  display: inline-block;
  width: 100%;
}
.calc-wrap .calculator-form .form-group .fieldset-name label {
  display: inline-block;
  width: auto;
}

.daypass_wrp p.u-h4 {
  font-weight: bold !important;
}

.calc-note {
  margin: 10px 0 40px;
}

#DPG h2.calc-header {
  background: #022a3a;
  border: solid 1px #022a3a;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  color: #fff !important;
  margin: 0 !important;
  padding: 15px;
  text-align: center;
}
#DPG h2.calc-header + .calc-container {
  border-radius: 0 0 20px 20px;
}

.one-rm-calculator .calc-container {
  border: solid 1px #ccc;
  border-top: solid 1px #fff;
  display: inline-block;
  padding: 10px;
  width: 100%;
}
.one-rm-calculator .calc-container .calc-dropdown {
  padding-bottom: 5px;
  padding-top: 5px;
}
.one-rm-calculator input.calc-textbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  line-height: inherit;
  padding: 12px;
  width: 100%;
}
.one-rm-calculator .partner-calc-dropdown.partner-dropdown {
  width: 49.5%;
}

.one-rm-calculator h3.calc-answer {
  display: none;
  height: 20px;
}

input.calc-textbox-half {
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  line-height: inherit;
  padding: 5px 10px;
  width: 49.5%;
}

.calc-container .calc-textbox,
input.calc-textbox-half {
  border: 1px solid #5a5a5a;
}

.calc-container .calc-textbox.error-field,
input.calc-textbox-half.error-field,
.bmr-box .form-control.error-field,
.error-field {
  border-color: red;
}

.calc-subheader {
  display: inline-block;
  font-family: ProximaNovaExCnSemiBold, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  width: 48.5%;
}

.calc-subheader-right {
  padding-left: 8px;
}

.calc-row {
  margin-bottom: 5px;
}

.calc-row input[type=radio] {
  display: none;
}

.calc-float-right {
  float: right;
}

.calc-row input[type=radio] + label span {
  background: url("/build/img/sprite.png") no-repeat -75px -1250px;
  cursor: pointer;
  display: inline-block;
  height: 23px;
  margin: 2px 5px 5px 6px;
  vertical-align: middle;
  width: 21px;
}

.calc-row input[type=radio]:checked + label span {
  background: url("/build/img/sprite.png") no-repeat -50px -1250px;
}

.calc-label {
  border: solid 1px #5a5a5a;
  border-radius: 22px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  padding: 6px;
  width: 100%;
}

.calc-one-rm-result {
  text-align: center;
}

.calc-label-small {
  border: solid 1px #5a5a5a;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  padding: 6px;
  width: 49.5%;
}

.calc-label:hover {
  background-color: #f4f4f4;
}

.calc-submit {
  margin-bottom: 10px;
  margin-top: 5px !important;
}

.macros-slider-calculator .calc-dropdown {
  border-radius: 3px;
  font-size: 16px;
  height: 46px;
  vertical-align: top;
  width: 100%;
}

.calc-dropdown {
  float: right;
  height: 38px;
  padding-bottom: 5px;
  padding-top: 5px;
  vertical-align: top;
  width: 49.5%;
}

.calc-subheader-short {
  display: inline-block;
  font-family: ProximaNovaExCnSemiBold;
  font-size: 20px;
  margin-top: 10px;
  text-transform: uppercase;
  width: 45%;
}

.center-btn {
  display: inline-block;
  width: 100%;
}

.center-btn button {
  display: block;
  margin: 0 auto;
}

.calc-container {
  border: solid 1px #ccc;
  border-radius: 20px;
  padding: 10px;
}
.calc-container .time-select {
  background-color: #fff;
  border: 1px solid #767676;
  color: #022a3a;
  height: 38px;
  line-height: 24px;
  margin-top: 5px;
  padding: 6px 30px 6px 10px;
}
.calc-container .time-select:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
.calc-container .time-select:first-child {
  margin-top: 0;
}
.calc-container .calc-textbox {
  border-radius: 20px;
  max-width: 100%;
  padding: 8px 10px;
  width: 209px;
}
@media (max-width: 480px) {
  .calc-container .calc-subheader {
    width: 100%;
  }
}

.calc-float-left {
  float: left;
  width: 30%;
}

.row-wrp {
  float: right;
  width: calc(70% - 45px);
}
.row-wrp div {
  float: left;
  font-weight: 700;
  margin-right: 5px;
  width: 31.5%;
}
.row-wrp .calc-textbox-width {
  border-radius: 20px;
  display: block;
  line-height: inherit;
  padding: 5px 10px;
  width: 100%;
}

@media (max-width: 1200px) {
  .calorie-calculator-height .eval,
.calorie-calculator-height .row-wrp {
    display: block;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .calc-float-left,
.row-wrp {
    width: 100%;
  }

  .calorie-calculator-height .row-wrp div {
    margin: 5px 5px 5px 0;
    width: 100%;
  }
}
.eval {
  float: right;
  margin: 0;
  width: 10%;
}

.calc-label-smaller {
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  width: 49.5%;
}

#DPG input.calc-textbox {
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  line-height: inherit;
  padding: 5px 10px;
  width: 100%;
}

#DPG .ffmi-calculator .input-group .calc-textbox {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.calc-row-half {
  display: inline-block;
  vertical-align: top;
  width: 49.5%;
}

.float-right {
  float: right;
}

.result-wrp {
  border-radius: 20px;
  -webkit-box-shadow: 0 -2px 28px 0 rgba(0, 0, 0, 0.2), 0 25px 79px 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -2px 28px 0 rgba(0, 0, 0, 0.2), 0 25px 79px 0 rgba(0, 0, 0, 0.1) !important;
  color: #000;
  margin: 20px;
  padding: 10px;
}
.result-wrp h3 {
  margin: 10px !important;
}
.result-wrp div {
  max-width: 80%;
  width: 100%;
}
.result-wrp .two-col-ip select {
  padding: 8px;
}
.result-wrp .two-col-ip {
  width: 48% !important;
}

.calc-answer {
  display: none;
  padding-top: 10px;
  text-align: center;
}

.calorie-calculator-pace .calc-row,
.calorie-calculator-height .calc-row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ebeff5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 10px 0;
  padding-bottom: 15px;
  width: 100%;
}

.calc-subheader-small select {
  padding: 8px !important;
}

@-webkit-keyframes zoomOut {
  0% {
    height: 20px;
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    height: 0;
    margin-top: 0 !important;
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    height: 20px;
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    height: 0;
    margin-top: 0 !important;
    opacity: 0;
  }
}
#unit_distance {
  padding: 9px;
}

.fat-calc-box {
  margin: 0 auto;
  max-width: 100%;
  width: 847px;
}
.fat-calc-box .calc-title {
  background-color: #022a3a;
  border-radius: 22px 22px 0 0;
  padding: 15px 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-calc-box .calc-title {
    padding-bottom: 13px;
  }
}
.fat-calc-box .calc-title h2 {
  color: #fff;
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .fat-calc-box .calc-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .fat-calc-box .calc-title h2 {
    font-size: 21px;
  }
}
.fat-calc-box .fat-calc-form {
  border: 2px solid #022a3a;
  border-radius: 0 0 22px 22px;
  border-top: 0;
  padding: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-calc-box .fat-calc-form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .fat-calc-box .fat-calc-form {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.field-validation-valid {
  position: relative;
}

.fat-calc-contain-box {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
.fat-calc-contain-box h4 {
  margin-bottom: 10px;
  text-transform: unset;
  width: 100%;
}
.fat-calc-contain-box .fat-calc-val-input {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  width: 500px;
}
.fat-calc-contain-box .fat-calc-val-input .form-control {
  border: 2px solid #000;
  color: #022a3a;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  max-height: 50px;
  min-height: 50px;
  padding: 8px 45px 8px 15px;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-calc-contain-box .fat-calc-val-input .form-control {
    font-size: 20px;
    max-height: 48px;
    min-height: 48px;
  }
}
.fat-calc-contain-box .fat-calc-val-input .val-sign {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  position: absolute;
  right: 12px;
  top: 13px;
}
@media (max-width: 767px) {
  .fat-calc-contain-box .fat-calc-val-input .val-sign {
    font-size: 20px;
    top: 12px;
  }
}

.fat-calc-section {
  padding: 50px 0;
}
.fat-calc-section .o-wrapper {
  margin-left: 21px;
  padding-left: 0;
  padding-right: 0;
}

.fat-type-box {
  margin: 40px auto 0;
  max-width: 100%;
  width: 847px;
}
.fat-type-box .fat-calc-form {
  border: 2px solid #022a3a;
  border-radius: 0 0 20px 20px;
  padding: 30px 0;
  width: 100%;
}
.fat-type-box .calc-title {
  background-color: #022a3a;
  border-radius: 20px 20px 0 0;
  padding: 15px 30px;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-type-box .calc-title {
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fat-type-box .calc-title h2 {
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .fat-type-box .calc-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .fat-type-box .calc-title h2 {
    font-size: 21px;
  }
}
.fat-type-box .calc-para {
  padding: 0 30px 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-type-box .calc-para {
    padding: 0 20px 20px;
  }
}
.fat-type-box .calc-para p {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
}
.fat-type-box form .in {
  background-color: #f1f1f1;
  border: 1px solid #e5e9eb;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  padding: 30px;
  width: calc(100% - 60px);
}
@media (max-width: 767px) {
  .fat-type-box form .in {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
  }
}
.fat-type-box form .in .left-fields {
  padding-right: 10px;
  width: 50%;
}
@media (max-width: 767px) {
  .fat-type-box form .in .left-fields {
    padding-right: 0;
    width: 100%;
  }
}
.fat-type-box form .in .left-fields.middle-field {
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  text-align: center;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input input {
  padding-right: 59px;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input .site-type {
  display: block;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input.calc-unit-dropdown input {
  padding-right: 110px;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input.calc-unit-dropdown .site-type {
  right: 7px;
  top: 7px;
  width: 100px;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input.calc-unit-dropdown .site-type .calc-gender-label {
  font-size: 14px;
  height: 30px;
  line-height: 18px;
  max-height: 30px;
  padding-bottom: 4px;
  padding-top: 4px;
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input.calc-unit-dropdown .site-type .calc-gender-list {
  padding-top: 22px;
  top: calc(100% - 14px);
}
.fat-type-box form .in .left-fields.middle-field .hs-field .name-input.calc-unit-dropdown .site-type .calc-gender-list li span {
  font-size: 14px;
  line-height: 18px;
}
.fat-type-box form .in .right-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 25px;
  padding-left: 10px;
  width: 50%;
}
@media (max-width: 767px) {
  .fat-type-box form .in .right-image {
    margin: 30px auto 0;
    padding-left: 0;
    width: 540px;
  }
}
.fat-type-box form .shape-image {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-type-box form .fieldset {
    float: left;
    margin: 0 20px 0 0;
    width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .fat-type-box form .fieldset {
    margin-right: 0;
    width: 100%;
  }
}
.fat-type-box form .fieldset:last-child .hs-field {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .fat-type-box form .fieldset:nth-child(even) {
    margin-right: 0;
  }
}
.fat-type-box form .fieldset .hs-field {
  width: 100%;
}
@media (max-width: 767px) {
  .fat-type-box form .fieldset .hs-field {
    padding-left: 0;
    padding-right: 0;
  }
}
.fat-type-box form .fieldset .hs-field .form-control {
  background-color: #fff;
  border-radius: 24px;
}
.fat-type-box form .fieldset .hs-field .name-input {
  position: relative;
  width: 100%;
}
.fat-type-box form .fieldset .hs-field .name-input input {
  border-radius: 20px;
  padding-right: 70px;
}
.fat-type-box form .fieldset .hs-field .name-input .site-type {
  color: #022a3a;
  display: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  position: absolute;
  right: 18px;
  top: 8px;
}
.fat-type-box form .hs-submit {
  background: transparent;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  padding: 0;
}
.fat-type-box form .hs-submit .calc-btn {
  border-radius: 96px;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.fat-type-box .calc-type-change-wrap {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-type-box .calc-type-change-wrap {
    margin-bottom: 24px;
  }
}
@media (max-width: 374px) {
  .fat-type-box .calc-type-change-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.fat-type-box .calc-btn {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 96px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #032a3b;
  cursor: pointer;
  display: inline-block;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin: 0 5px 0 0;
  min-width: 150px;
  outline: none;
  padding: 11px 15px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: auto;
}
@media (max-width: 575px) {
  .fat-type-box .calc-btn {
    min-width: auto;
  }
}
@media (max-width: 374px) {
  .fat-type-box .calc-btn {
    margin-bottom: 6px;
    margin-right: 0;
    width: 100%;
  }
}
.fat-type-box .calc-btn:last-child {
  margin-right: 0;
}
@media (max-width: 374px) {
  .fat-type-box .calc-btn:last-child {
    margin-bottom: 0;
  }
}
.fat-type-box .calc-btn.active {
  background-color: #032a3b;
  color: #fff;
}

.fat-calc-result {
  -webkit-box-shadow: 0 0 5px 1px #f1f1f1;
          box-shadow: 0 0 5px 1px #f1f1f1;
  padding: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .fat-calc-result {
    padding: 30px 20px;
  }
}

.fat-calc-result-group {
  background-color: #f1f1f1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0;
  width: 100%;
}
@media (max-width: 575px) {
  .fat-calc-result-group {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 16px;
  }
}
.fat-calc-result-group .fat-calc-result-box {
  border-left: 2px solid rgba(2, 42, 58, 0.18);
  padding: 0 16px;
  width: 50%;
}
@media (max-width: 575px) {
  .fat-calc-result-group .fat-calc-result-box {
    border-left: 0;
    border-top: 2px solid rgba(2, 42, 58, 0.18);
    margin-top: 16px;
    padding: 16px 0 0;
    width: 100%;
  }
}
.fat-calc-result-group .fat-calc-result-box:first-child {
  border-left: 0;
}
@media (max-width: 575px) {
  .fat-calc-result-group .fat-calc-result-box:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
.fat-calc-result-group .fat-calc-result-box p {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 8px;
}
.fat-calc-result-group .fat-calc-result-box h4 {
  color: #022a3a;
  margin-bottom: 0;
  text-transform: none;
}

.calc-pace-form {
  margin-bottom: 50px;
  width: 100%;
}
.calc-pace-form .calc-form-in {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 847px;
}
@media (max-width: 991px) {
  .calc-pace-form .calc-form-in {
    width: 728px;
  }
}
@media (max-width: 767px) {
  .calc-pace-form .calc-form-in {
    width: 660px;
  }
}
.calc-pace-form .calc-top-menu {
  border-bottom: 0;
  width: 100%;
}
.calc-pace-form .calc-top-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.calc-pace-form .calc-top-menu ul li {
  margin-right: 5px;
}
.calc-pace-form .calc-top-menu ul li:last-child {
  margin-right: 0;
}
.calc-pace-form .calc-top-menu ul li.active a {
  background: #eee;
  border-bottom-color: #eee;
  border-left-color: #bbb;
  border-right-color: #bbb;
  border-top-color: #bbb;
  color: #022a3a;
}
.calc-pace-form .calc-top-menu ul li a {
  background: #f4cd00;
  border: 1px solid #369;
  border-bottom-color: #f4cd00;
  border-radius: 8px 8px 0 0;
  color: #022a3a;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 -1px;
  padding: 8px 5px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .calc-pace-form .calc-top-menu ul li a {
    font-size: 15px;
    padding-bottom: 6px;
    padding-top: 6px;
  }
}
.calc-pace-form .calc-top-menu ul li a:hover {
  background: #eee;
  border-bottom-color: #eee;
  color: #022a3a;
}
.calc-pace-form .calc-content-wrap {
  width: 100%;
}
.calc-pace-form .calc-bottom-cont {
  background-color: #eee;
  border: 1px solid #bbb;
  border-radius: 0 24px 24px;
  padding: 12px 5px;
  width: 100%;
}
@media (max-width: 991px) {
  .calc-pace-form .calc-bottom-cont {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.calc-pace-form .calc-content-item {
  width: 100%;
}
@media (max-width: 390px) {
  .calc-pace-form .calc-content-item {
    border-bottom: 1px solid #bbb;
    margin-bottom: 10px;
    padding-bottom: 3px;
  }
}
.calc-pace-form .calc-content-item .in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.calc-pace-form .calc-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 7px;
  padding-top: 3px;
  width: 80px;
  word-break: break-word;
}
@media (max-width: 480px) {
  .calc-pace-form .calc-title {
    font-size: 15px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .calc-title {
    width: 74px;
  }
}
.calc-pace-form .calc-input-wrap {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -5px;
  padding-left: 5px;
  width: calc(100% - 80px);
}
@media (max-width: 390px) {
  .calc-pace-form .calc-input-wrap {
    margin-left: 0;
    width: calc(100% - 74px);
  }
}
.calc-pace-form .form-group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 7px;
  max-width: 100%;
  padding-left: 5px;
  width: auto;
}
@media (max-width: 390px) {
  .calc-pace-form .form-group {
    padding-left: 0;
    width: 100%;
  }
}
.calc-pace-form .form-group.cpace {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media (max-width: 480px) {
  .calc-pace-form .form-group.cpace {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: unset;
        -ms-flex-flow: unset;
            flex-flow: unset;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group.cpace {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.calc-pace-form .form-group.cpace .input-text + .inpt-text {
  padding-top: 0;
}
@media (max-width: 480px) {
  .calc-pace-form .form-group.cpace .input-text + .inpt-text {
    padding-top: 4px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group.cpace .input-text + .inpt-text {
    padding-top: 0;
  }
}
.calc-pace-form .form-group.distance-count {
  padding-right: 21px;
}
@media (max-width: 575px) {
  .calc-pace-form .form-group.distance-count {
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .calc-pace-form .form-group.distance-count {
    padding-right: 5px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group.distance-count {
    padding-right: 0;
  }
}
.calc-pace-form .form-group.distance-count:last-child {
  padding-right: 0;
}
.calc-pace-form .form-group .input-text,
.calc-pace-form .form-group .select-text {
  background-color: #fff;
  border: 1px solid #044284;
  border-radius: 20px;
  -webkit-box-shadow: 1px 1px 2px #666;
          box-shadow: 1px 1px 2px #666;
  color: #022a3a;
  height: auto;
  line-height: 20px;
  margin: 0;
  max-width: 100%;
  padding: 4px 8px;
  width: 120px;
}
@media (max-width: 480px) {
  .calc-pace-form .form-group .input-text,
.calc-pace-form .form-group .select-text {
    font-size: 15px;
    width: 150px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group .input-text,
.calc-pace-form .form-group .select-text {
    width: 100%;
  }
}
.calc-pace-form .form-group .input-text:placeholder,
.calc-pace-form .form-group .select-text:placeholder {
  -webkit-box-shadow: 1px 1px 2px #666;
          box-shadow: 1px 1px 2px #666;
  color: #022a3a;
  opacity: 1;
}
.calc-pace-form .form-group .input-text:focus,
.calc-pace-form .form-group .select-text:focus {
  outline: none;
}
.calc-pace-form .form-group .input-text + .inpt-text {
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 5px;
  padding-top: 4px;
}
@media (max-width: 480px) {
  .calc-pace-form .form-group .input-text + .inpt-text {
    font-size: 15px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group .input-text + .inpt-text {
    padding-top: 0;
    text-align: right;
    width: 100%;
  }
}
.calc-pace-form .form-group .select-text {
  min-width: 120px;
  padding-right: 27px;
  width: auto;
}
@media (max-width: 480px) {
  .calc-pace-form .form-group .select-text {
    min-width: 150px;
    width: auto;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .form-group .select-text {
    min-width: auto;
    width: 100%;
  }
}
.calc-pace-form .hs-submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 85px;
  padding-top: 10px;
  width: 100%;
}
@media (max-width: 390px) {
  .calc-pace-form .hs-submit {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: -8px;
    padding-left: 0;
    padding-top: 0;
  }
}
.calc-pace-form .hs-submit .calc-btn,
.calc-pace-form .hs-submit .calc-clear-btn {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 96px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #022a3a;
  font-weight: 700;
  line-height: 20px;
  margin-right: 5px;
  padding: 9px 16px;
  text-decoration: none;
}
@media (max-width: 575px) {
  .calc-pace-form .hs-submit .calc-btn,
.calc-pace-form .hs-submit .calc-clear-btn {
    font-size: 15px;
    padding-bottom: 7px;
    padding-top: 7px;
  }
}
@media (max-width: 390px) {
  .calc-pace-form .hs-submit .calc-btn,
.calc-pace-form .hs-submit .calc-clear-btn {
    margin-bottom: 8px;
  }
}
.calc-pace-form .hs-submit .calc-btn:focus,
.calc-pace-form .hs-submit .calc-clear-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.calc-pace-form .hs-submit .calc-btn:last-child,
.calc-pace-form .hs-submit .calc-clear-btn:last-child {
  margin-right: 0;
}
.calc-pace-form .hs-submit .calc-btn:hover {
  background-color: #022a3a;
  border-color: #022a3a;
  color: #fff;
}
.calc-pace-form .hs-submit .calc-clear-btn {
  background: #fff;
  border-color: #022a3a;
  color: #022a3a;
}
.calc-pace-form .hs-submit .calc-clear-btn:hover {
  background: #022a3a;
  color: #fff;
}
.calc-pace-form .field-validation-error {
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 5px;
  width: 100%;
}
@media (max-width: 991px) {
  .calc-pace-form .field-validation-error {
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .calc-pace-form .field-validation-error {
    line-height: 17px;
  }
}

.calc-result-info {
  margin-top: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .calc-result-info {
    margin-top: 20px;
  }
}
.calc-result-info .calc-result-title {
  background-color: #022a3a;
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 16px;
  padding: 10px;
}
@media (max-width: 767px) {
  .calc-result-info .calc-result-title {
    font-size: 16px;
    padding: 8px 10px;
  }
}
.calc-result-info .calc-result-title:last-child {
  margin-bottom: 0;
}
.calc-result-info .time-slot-text {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 22px;
  text-align: center;
}
@media (max-width: 767px) {
  .calc-result-info .time-slot-text {
    font-size: 16px;
    line-height: 21px;
  }
}
.calc-result-info .time-slot-text:last-child {
  margin-bottom: 5px;
}
.calc-result-info .time-slot-text.lrg-text {
  color: #022a3a;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
@media (max-width: 767px) {
  .calc-result-info .time-slot-text.lrg-text {
    font-size: 18px;
    line-height: 24px;
  }
}
.calc-result-info .time-slot-text.lrg-text sub {
  font-weight: 500;
}
.calc-result-info .time-slot-text sub {
  bottom: 0;
  color: #000;
}
.calc-result-info p {
  color: #000;
  letter-spacing: 0;
  margin-bottom: 6px;
  margin-top: 8px;
}
@media (max-width: 575px) {
  .calc-result-info p {
    font-size: 14px;
    line-height: 1.4;
  }
}
.calc-result-info p:first-child {
  margin-top: 0;
}
.calc-result-info p:last-child {
  margin-bottom: 0;
}

.fat-calc-form {
  width: 100%;
}
.fat-calc-form .fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -10px;
}
.fat-calc-form .fieldset.field-2 .hs-field {
  width: 50%;
}
@media (max-width: 767px) {
  .fat-calc-form .fieldset.field-2 .hs-field {
    width: 100%;
  }
}
.fat-calc-form .fieldset .hs-field {
  margin-bottom: 20px;
  padding: 0 10px;
  width: 100%;
}
@media (max-width: 575px) {
  .fat-calc-form .fieldset .hs-field {
    margin-bottom: 16px;
  }
}
.fat-calc-form .fieldset .hs-field label {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 5px;
  text-align: left;
  text-transform: capitalize;
  width: 100%;
}
@media (max-width: 380px) {
  .fat-calc-form .fieldset .hs-field label {
    font-size: 14px;
  }
}
.fat-calc-form .fieldset .hs-field .input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.fat-calc-form .fieldset .hs-field .input .fieldset-name {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-right: 12px;
  width: auto;
}
.fat-calc-form .fieldset .hs-field .input .fieldset-name:nth-last-of-type(1) {
  margin-right: 0;
}
.fat-calc-form .fieldset .hs-field .input .fieldset-name label {
  width: auto;
}
.fat-calc-form .fieldset .hs-field .form-control {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 24px;
  color: #022a3a;
  font-size: 16px;
  height: auto;
  line-height: 24px;
  max-height: 44px;
  min-height: 44px;
  padding: 8px 15px;
  width: 100%;
}
.fat-calc-form .fieldset .hs-field .form-control:focus {
  border-color: #022a3a;
}
.fat-calc-form .fieldset .hs-field select.form-control {
  overflow: hidden;
  padding-right: 26px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.fat-calc-form .fieldset .hs-field .input-box-one {
  padding-right: 10px;
  position: relative;
  width: calc(100% - 80px);
}
.fat-calc-form .fieldset .hs-field .input-box-two {
  width: 80px;
}
.fat-calc-form .fieldset .hs-field .input-box-cm {
  opacity: 0;
  visibility: hidden;
}
.fat-calc-form .fieldset .hs-field .input-box-cm.show {
  opacity: 1;
  visibility: visible;
}
.fat-calc-form .fieldset .hs-field .input-box-inch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: calc(100% - 10px);
}
.fat-calc-form .fieldset .hs-field .input-box-inch.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.fat-calc-form .fieldset .hs-field .input-box-inch .inch-input {
  width: 50%;
}
.fat-calc-form .fieldset .hs-field .input-box-inch .inch-input:nth-child(1) {
  padding-right: 3px;
}
.fat-calc-form .fieldset .hs-field .input-box-inch .inch-input:nth-child(2) {
  padding-left: 3px;
}
.fat-calc-form .fieldset .hs-field .field-validation-error {
  text-align: left;
  width: 100%;
}
.fat-calc-form .hs-submit {
  background-color: rgba(2, 42, 58, 0.1);
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  padding: 15px;
  width: 100%;
}
@media (max-width: 575px) {
  .fat-calc-form .hs-submit {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 20px;
    text-align: center;
  }
}
.fat-calc-form .hs-submit .submit-text {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  padding-right: 20px;
}
@media (max-width: 575px) {
  .fat-calc-form .hs-submit .submit-text {
    padding-right: 0;
    width: 100%;
  }
}
.fat-calc-form .hs-submit h6 {
  margin: 0;
  text-transform: unset;
}
@media (max-width: 575px) {
  .fat-calc-form .hs-submit h6 {
    margin-bottom: 10px;
  }
}
.fat-calc-form .hs-submit .calc-btn {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 96px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #032a3b;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  min-width: 150px;
  outline: none;
  padding: 13px 20px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: auto;
}
@media (max-width: 575px) {
  .fat-calc-form .hs-submit .calc-btn {
    padding: 11px 20px;
    width: 100%;
  }
}
.fat-calc-form .hs-submit .calc-btn:hover {
  background-color: #032a3b;
  color: #fff;
}

.ffmi-calculator form {
  padding-block: 10px;
}
.ffmi-calculator form .im-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ffmi-calculator form .im-tab .fieldset-name {
  line-height: 0;
  position: relative;
  width: calc(50% - 12px);
}
@media (max-width: 575px) {
  .ffmi-calculator form .im-tab .fieldset-name {
    width: 49.5%;
  }
}
.ffmi-calculator form .im-tab .fieldset-name input[type=radio] {
  cursor: pointer;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.ffmi-calculator form .im-tab .fieldset-name input[type=radio]:checked + label::before {
  background: url("/build/img/sprite.png") no-repeat -50px -1250px;
}
.ffmi-calculator form .im-tab .fieldset-name label {
  border: 1px solid #5a5a5a;
  border-radius: 22px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 9px 6px 9px 38px;
  position: relative;
}
@media (max-width: 575px) {
  .ffmi-calculator form .im-tab .fieldset-name label {
    padding-left: 32px;
  }
}
.ffmi-calculator form .im-tab .fieldset-name label::before {
  background: url("/build/img/sprite.png") no-repeat -75px -1250px;
  content: "";
  display: inline-block;
  height: 21px;
  left: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
}
.ffmi-calculator form .ffmi-metric {
  display: none;
}
.ffmi-calculator form .form-group .input-group {
  display: table;
  width: 100%;
}
.ffmi-calculator form .form-group .input-group.mt-10 {
  margin-top: 10px;
}
.ffmi-calculator form .form-group .input-group .calc-textbox {
  display: table-cell;
}
.ffmi-calculator form .form-group .input-group .input-group-addon {
  background-color: #eee;
  border: 1px solid #5a5a5a;
  border-left: 0;
  border-radius: 0 22px 22px 0;
  color: #555;
  display: table-cell;
  font-weight: 700;
  text-align: center;
  width: 120px;
}
@media (max-width: 575px) {
  .ffmi-calculator form .form-group .input-group .input-group-addon {
    width: 90px;
  }
}

.ffmi-results {
  display: none;
  padding-top: 20px;
  width: 100%;
}
.ffmi-results label {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.ffmi-results table {
  margin: 0;
  margin-inline: auto;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 575px) {
  .ffmi-results table {
    max-width: 100%;
  }
}
.ffmi-results table td {
  color: #022a3a;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.ffmi-results table td:last-child {
  letter-spacing: 0;
  text-align: right;
}
.ffmi-results table td span {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.new-calorie-burned-calculator select {
  background-color: #fff;
  border: 1px solid #5a5a5a;
  border-radius: 20px;
  height: auto;
  margin-bottom: 5px;
  padding: 7px 30px 7px 10px;
}
.new-calorie-burned-calculator .center-btn {
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.new-calorie-burned-calculator .center-btn button {
  margin: 0;
}
.new-calorie-burned-calculator .center-btn button.calc-clear {
  background-color: #022a3a;
  color: #f4cd00;
}
.new-calorie-burned-calculator .center-btn button.calc-clear:hover {
  background-color: #f4cd00;
  color: #022a3a;
}
@media (max-width: 820px) {
  .new-calorie-burned-calculator input.calc-textbox-half {
    margin-bottom: 5px;
    width: 100%;
  }
}
@media (min-width: 820px) {
  .new-calorie-burned-calculator input.calc-textbox-half:first-child {
    margin-bottom: 0;
  }
}
.new-calorie-burned-calculator .activity-category-wrap {
  display: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
}
.new-calorie-burned-calculator .activity-category-wrap.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.new-calorie-burned-calculator .activity-category-wrap .calc-label-small {
  width: calc(50% - 3px);
}

.new-protein-calc .form-group,
.new-protein-calc .calc-row,
.new-protein-calc .calc-input-wrap,
.new-protein-calc .calc-title {
  width: 100%;
}
.new-protein-calc .form-group {
  padding-left: 0;
}
.new-protein-calc .form-group .select-text {
  line-height: inherit;
  padding-block: 5px;
  width: 100%;
}
.new-protein-calc .form-group .select-text,
.new-protein-calc .form-group .calc-textbox {
  border: 1px solid #5a5a5a;
}
.new-protein-calc .form-group .select-text,
.new-protein-calc .form-group .input-text {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.new-protein-calc .form-group .input-group {
  display: table;
  width: 100%;
}
.new-protein-calc .form-group .input-group .calc-textbox-half {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin: 0;
  width: 100%;
}
.new-protein-calc .form-group .input-group .calc-textbox-half.error-field {
  border-color: red;
}
.new-protein-calc .form-group .input-group .input-group-addon {
  background-color: #eee;
  border: 1px solid #5a5a5a;
  border-left: 0;
  border-radius: 0 22px 22px 0;
  color: #555;
  display: table-cell;
  font-weight: 700;
  text-align: center;
  width: 120px;
}
.new-protein-calc .form-group .error-field {
  background-color: #fff;
  border-color: #f00;
}
.new-protein-calc .calc-title {
  font-weight: 600;
  text-transform: capitalize;
}
.new-protein-calc .hs-submit {
  padding-left: 0;
}
.new-protein-calc .calc-input-wrap {
  margin-left: 0;
  padding-left: 0;
}

.dpg-calculator .sbmt-btn-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dpg-calculator .sbmt-btn-wrap .calc-submit,
.dpg-calculator .sbmt-btn-wrap .calc-clear {
  margin-left: 5px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .dpg-calculator .sbmt-btn-wrap .calc-submit,
.dpg-calculator .sbmt-btn-wrap .calc-clear {
    margin-left: 3px;
    margin-right: 3px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.dpg-calculator .sbmt-btn-wrap .calc-submit:first-child,
.dpg-calculator .sbmt-btn-wrap .calc-clear:first-child {
  margin-left: 0;
}
.dpg-calculator .sbmt-btn-wrap .calc-submit:last-child,
.dpg-calculator .sbmt-btn-wrap .calc-clear:last-child {
  margin-right: 0;
}
.dpg-calculator .sbmt-btn-wrap .calc-clear {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 1px #022a3a;
          box-shadow: inset 0 0 0 1px #022a3a;
  margin-top: 5px;
}
.dpg-calculator .sbmt-btn-wrap .calc-clear:hover {
  background-color: #022a3a;
  color: #f4cd00;
}
.dpg-calculator .form-dropdown-group .calc-subheader {
  width: 100%;
}
.dpg-calculator .form-dropdown-group .input-group {
  display: table;
  width: 100%;
}
.dpg-calculator .form-dropdown-group .calc-input {
  border: 1px solid #5a5a5a;
  border-radius: 20px 0 0 20px;
  border-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  height: auto;
  line-height: inherit;
  padding: 5px 10px;
  width: 100%;
}
.dpg-calculator .form-dropdown-group .calc-input.error-field {
  border-color: red;
}
.dpg-calculator .form-dropdown-group .calc-input.error-field + .select-value-text {
  border-color: red;
}
.dpg-calculator .form-dropdown-group .select-value-text {
  border: 1px solid #5a5a5a;
  border-left: 0;
  border-radius: 0 20px 20px 0;
  display: table-cell;
  overflow: hidden;
  position: relative;
  width: 80px;
}
@media (max-width: 767px) {
  .dpg-calculator .form-dropdown-group .select-value-text {
    width: 70px;
  }
}
.dpg-calculator .form-dropdown-group .select-value-text select {
  cursor: pointer;
  height: 100%;
  margin: 0;
  opacity: 0;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.dpg-calculator .form-dropdown-group .select-value-text select:focus + .selected-val {
  background-color: #eee;
}
.dpg-calculator .form-dropdown-group .select-value-text .selected-val {
  background-image: url("/build/img/down-select.png");
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 12px auto;
  color: #555;
  cursor: pointer;
  display: block;
  font-weight: 700;
  padding: 5px 30px 5px 5px;
  text-align: right;
  width: 100%;
}

.waist-hip-ratio-calculator .calc-container {
  padding-bottom: 20px;
}

.partner-dropdown.partner-calc-dropdown {
  float: right;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  z-index: 1000;
}
.partner-dropdown.partner-calc-dropdown .dropdownbox-partner {
  width: 100%;
}
.partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-label {
  border-radius: 20px;
  height: 36px;
  max-height: 36px;
  padding-bottom: 8px;
  padding-top: 8px;
}
.partner-dropdown.partner-calc-dropdown .dropdownbox-list {
  border-radius: 0 0 20px 20px;
  top: 22px;
}

.bmr-box .partner-dropdown .dropdownbox-partner .dropdownbox-label {
  height: 34px;
  max-height: 34px;
}
.bmr-box .partner-dropdown .dropdownbox-list {
  padding-top: 21px;
  top: 20px;
}

.gender-ip .partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-label {
  border: 2px solid transparent;
  height: 44px;
  line-height: 24px;
  max-height: 44px;
  text-align: left;
}
.gender-ip .partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-list ul {
  text-align: left;
}

.ssc-calc-dropdown.partner-dropdown {
  margin-top: 5px;
}

.body-fat-form .partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-label {
  border: 2px solid transparent;
  border-radius: 24px;
  height: 44px;
  line-height: 24px;
  max-height: 44px;
}
.body-fat-form .partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-list {
  border-radius: 0 0 24px 24px;
}
.body-fat-form .partner-dropdown.partner-calc-dropdown.stack-back {
  z-index: 999;
}
.body-fat-form .partner-dropdown.partner-calc-dropdown.stack-back-low {
  z-index: 998;
}
.body-fat-form .partner-dropdown.partner-calc-dropdown.stack-back-lower {
  z-index: 997;
}

.ptd-calc-dropdown .partner-dropdown.partner-calc-dropdown .dropdownbox-partner .dropdownbox-label {
  border: 1px solid transparent;
  height: 30px;
  max-height: 30px;
  min-width: 215px;
  padding-bottom: 4px;
  padding-top: 4px;
}
.ptd-calc-dropdown .partner-dropdown.partner-calc-dropdown .dropdownbox-list {
  padding-top: 16px;
  top: 14px;
}
.ptd-calc-dropdown .partner-dropdown.partner-calc-dropdown.stack-back {
  z-index: 999;
}
.ptd-calc-dropdown .calc-inputdistance .cpace .stack-back.partner-dropdown.partner-calc-dropdown {
  z-index: 998;
}

.calc-gender-dropdown {
  position: relative;
  width: 100%;
  z-index: 4;
}
.calc-gender-dropdown .calc-gender-label {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 24px;
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 44px;
  line-height: 24px;
  max-height: 44px;
  overflow: hidden;
  padding: 8px 26px 8px 15px;
  position: relative;
  text-align: left;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  text-transform: capitalize;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 3;
}
.calc-gender-dropdown .calc-gender-label::before {
  background-image: url("/build/img/down-select.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 12px;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 12px;
}
.calc-gender-dropdown .calc-gender-label.active::before {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.calc-gender-dropdown .calc-gender-list {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0 0 24px 24px;
  border-top: 0;
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 30px 0 8px;
  position: absolute;
  top: calc(100% - 22px);
  width: 100%;
}
.calc-gender-dropdown .calc-gender-list li {
  text-align: left;
  width: 100%;
}
.calc-gender-dropdown .calc-gender-list li span {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 5px 15px;
  text-transform: capitalize;
}
.calc-gender-dropdown .calc-gender-list li span:hover {
  background-color: #e2e2e2;
}

.each-guide-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
  width: 100%;
}
.each-guide-card .wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.each-guide-card .wrapper .guid-card-txt {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: auto;
  margin-top: 0;
}
.each-guide-card .wrapper .guid-card-txt h3 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  width: 100%;
}
.each-guide-card .wrapper .guid-card-txt p {
  text-align: left;
}
.each-guide-card .tag--guidlink {
  border-radius: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: auto;
}

.guide-card .o-layout__item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 10px;
  width: 33.33%;
}

.guid-card-txt {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: auto;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}
.guid-card-txt p {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 0 20px;
  width: 100%;
}

.tag--guidlink {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  background-color: transparent;
  border: 1px solid #212121;
  border-radius: 10px;
  color: #212121;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
  padding: 7px 12px;
  text-transform: uppercase;
}
.tag--guidlink:hover {
  background-color: rgba(33, 33, 33, 0.15);
}

.guide-detail-content p {
  margin-bottom: 20px;
}

.pl-40 {
  padding-left: 40px;
}

.guide-variation {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.guide-variation ul {
  display: block;
  width: 100%;
}
.guide-variation .o-layout__item {
  width: 25%;
}

.guide-testimonial {
  display: inline-block;
  position: relative;
  width: 100%;
}
.guide-testimonial::before {
  background: url("../img/gym-quote.png") center no-repeat;
  content: "";
  display: block;
  height: 40px;
  width: 70px;
}

.page-tag {
  font-weight: 700;
  text-decoration: underline;
}

.testimonial-content {
  display: inline-block;
  float: left;
  max-width: 60%;
  text-align: left;
  width: 100%;
}
.testimonial-content p {
  margin: 10px 0 20px;
}

.testimonial-img {
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 160px;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
}
.testimonial-img img {
  border-radius: 50%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.pl-70 {
  padding-left: 70px;
}

.quote-by h5 {
  margin-bottom: 0;
}

.testimonial-btn {
  display: block;
  float: left;
  margin-top: 50px;
  text-align: left;
  width: 100%;
}

.text-center {
  text-align: center;
}

.fpanel.show {
  max-height: 500px;
  opacity: 1;
}

.each-variation {
  display: inline-block;
  width: 100%;
}

.variation-video {
  display: inline-block;
  float: left;
  max-width: 5px 0%;
  width: 100%;
}

.variation-content {
  display: inline-block;
  margin-left: 20px;
  max-width: calc(50% - 20px);
  text-align: left;
  width: 100%;
}

@media (max-width: 991px) {
  .guide-card .o-layout__item {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .tag--guidlink {
    font-size: 0.7rem;
    padding: 5px;
  }
}
@media (max-width: 768px) {
  .testimonial-content {
    max-width: 100%;
  }

  .testimonial-img {
    float: left;
    height: auto;
  }
  .testimonial-img img {
    height: 100px;
    width: 100px;
  }

  .testimonial-btn {
    margin-top: 10px;
  }

  .pl-70 {
    padding-left: 0;
  }
}
.alt-color:nth-child(odd) {
  background: #ececec;
}

.guid-img {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 230px;
  margin-bottom: 30px;
  overflow: hidden;
}
.guid-img img {
  border-radius: 20px;
}

.exercise-wrap .o-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.exercise-wrap .each-guide-card .guid-card-txt {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: calc(100% - 250px);
}
.exercise-wrap .each-guide-card .guid-card-txt h3,
.exercise-wrap .each-guide-card .guid-card-txt p {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

.fit-width {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.filter-wrapper .drop-down {
  left: unset;
  max-width: 100%;
  position: unset;
  top: unset;
  width: 100%;
}

.fit-width .button {
  margin-left: 5px;
}

.filter-wrapper .drop-down .each-dropdown {
  background: #f8f8f8;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 5px;
  position: relative;
}

.selected.open-dropdown ~ .options {
  cursor: pointer;
  display: block;
}

.grid-structure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

select:focus {
  outline: none;
}

.each-thumb-grid .hover-content button {
  -webkit-transition: unset !important;
  -o-transition: unset !important;
  transition: unset !important;
}

.filter-wrapper .drop-down .each-dropdown select {
  width: 200px;
}

@media (max-width: 767px) {
  .filter-wrapper .drop-down .each-dropdown select {
    height: 50px;
    width: 100%;
  }
}
.slider {
  z-index: 9;
}

@media (max-width: 739px) {
  .hero-v .items .button {
    font-size: 16px;
    margin-top: 15px;
    padding: 15px 36px;
    width: 100%;
  }

  .grid-structure h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .grid-structure h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .grid-structure h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}
.grid-structure .each-thumb-grid {
  border-radius: 20px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.grid-structure .each-thumb-grid .image-wrapper {
  width: 100%;
}

.grid-structure .each-thumb-grid .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.content-overlap,
.hover-content {
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  left: 0;
  padding: 20px 22px;
  position: absolute;
  right: 0;
  top: 0;
}

.content-overlap p {
  box-orient: vertical;
  line-clamp: 4;
  overflow: hidden;
}

.bottom-content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.hover-content::after {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.icon img {
  margin-right: 9px;
  width: 18px;
}

.hover-content {
  visibility: hidden;
}

.each-thumb-grid:hover .hover-content {
  visibility: visible;
}
.each-thumb-grid:hover .content-overlap {
  visibility: hidden;
}

.hover-content .hover-listing {
  position: relative;
  width: 100%;
  z-index: 9;
}

.each-thumb-grid:hover .hover-content .bottom-content {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  position: relative;
  z-index: 9;
}

.center-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: relative;
  z-index: 999;
}
.center-btn button {
  display: block;
  margin: 0 auto;
}

.hover-content .button:hover {
  background-color: #fff;
  color: #0d2a3a;
}

.u-padding-10 {
  padding: 10px !important;
}

.mb-40 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .fit-width .button {
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  .o-layout__item {
    padding-bottom: 10px;
    padding-right: 0;
    padding-top: 0;
  }

  .special-offer-card .o-layout__item {
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
.grid-structure .o-layout {
  margin: 0;
}

.grid-structure .o-band-lowest {
  display: inline-block;
  width: 100%;
}

.each-thumb-grid::after {
  background: rgba(2, 42, 58, 0.6);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.content-overlap {
  z-index: 1;
}

.top-content h6 {
  color: #f4cd00;
}

ul,
ol {
  padding-left: 10px;
}

li {
  margin-bottom: 0;
  word-break: break-word;
}

.hover-content p {
  text-align: center;
  z-index: 9;
}

.Red {
  color: #f00;
}

.self-center {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.btn-signin {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-signin button {
  margin: 0 2px;
  padding: 20px 40px;
}

.hover-content .m-auto {
  padding: 20px 40px;
}

.m-auto {
  margin: auto;
}

@media (max-width: 768px) {
  .btn-signin button,
.hover-content .m-auto {
    padding: 15px 30px;
    width: auto;
  }
}
@media (max-width: 420px) {
  .company .content-overlap,
.company .hover-content {
    padding: 13px;
  }
  .company .content-overlap .m-auto,
.company .hover-content .m-auto {
    padding: 12px 20px;
    width: auto;
  }
  .company .btn-signin {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .company .btn-signin button {
    padding: 12px 20px;
    width: auto;
  }

  .content-overlap p {
    line-height: normal;
  }
}
.category.each-thumb-category {
  background-color: #0d2a3aa1;
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 5px #ededed;
          box-shadow: 5px 5px 5px #ededed;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding: 25px;
}

.slider-logo img {
  height: auto;
  margin-bottom: 30px;
  width: auto;
}
@media (max-width: 991px) {
  .slider-logo img {
    margin-bottom: 20px;
  }
}

@media (max-width: 46.24em) {
  .center-btn.icon .button {
    max-width: none;
    width: 100% !important;
  }
}
@media (min-width: 1070px) {
  .hero-large-v {
    min-height: 700px;
  }
}
@media (min-width: 1200px) {
  .hero-large-v {
    min-height: 800px;
  }
}
.slider-heading {
  text-shadow: none !important;
}

@media (max-width: 768px) {
  .img-container {
    margin-bottom: 10px !important;
  }
}
.img-container img {
  height: 48px;
  width: 48px;
}

@media (max-width: 768px) {
  .img-container img {
    height: 50px;
    margin: 0 auto;
    width: 50px;
  }
}
.button.button--orange:hover {
  background-color: #022a3a;
  color: #ffa500 !important;
}

.button--orange-f7:hover {
  background-color: #fff;
  color: #022a3a;
}

/* ==========================================================================
   #Arabic CSS
========================================================================== */
[dir=rtl] .blog-post ul,
[dir=rtl] .blog-post ol {
  padding-left: 0;
  padding-right: 40px;
}
[dir=rtl] .blog-post ul li p,
[dir=rtl] .blog-post ol li p {
  overflow: unset;
}
[dir=rtl] .blog-post .iti__country-list {
  padding-right: 0;
}
[dir=rtl] .blog-post .location_dropdown-white ul {
  padding-right: 0;
}
[dir=rtl] .blog-list-wrap .left-side .search-container input {
  padding-left: 50px;
}
[dir=rtl] .blog-list-wrap .left-side .search-container a {
  left: 1px;
  right: auto;
}
[dir=rtl] .blog-list-wrap .left-side .search-container button {
  border-radius: 24px 0 0 24px;
  left: 1px;
  right: auto;
}
[dir=rtl] .blog-list-wrap .left-side .categories {
  padding-left: 30px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  [dir=rtl] .blog-list-wrap .left-side .categories {
    padding-left: 0;
  }
}
[dir=rtl] .blog-list-wrap .left-side .categories li {
  float: right;
}
[dir=rtl] .blog-list-wrap .right-side .tag.tag--link {
  margin-left: 2px;
  margin-right: 0;
}
[dir=rtl] .blog-card-wrp .each-card:nth-child(2n+1) {
  margin-right: 0;
}
[dir=rtl] .blog-card-wrp .each-card.each-card:nth-child(2n) {
  margin-right: 20px;
}
@media (max-width: 575px) {
  [dir=rtl] .blog-card-wrp .each-card.each-card:nth-child(2n) {
    margin-right: 0;
  }
}
[dir=rtl] .blog-card-wrp .each-card .blog-list-content .button {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .blog-card-wrp .each-card .blog-list-content .date {
  margin-bottom: 4px;
}
[dir=rtl] .blog-card-wrp .each-card .blog-list-content .about-blog .blog-title {
  line-height: 1.6;
}
@media (max-width: 767px) {
  [dir=rtl] .blog-card-wrp .each-card .blog-list-content .about-blog .blog-title {
    line-height: 1.5;
  }
}
[dir=rtl] .blog-card-wrp .each-card .blog-list-content .about-blog p {
  line-height: 1.6;
}
[dir=rtl] .pagination-container {
  padding-left: 0;
}
[dir=rtl] .location_dropdown-white .location_label,
[dir=rtl] .location_dropdown-white .enquiry_label,
[dir=rtl] .location_dropdown-white .contract_label,
[dir=rtl] .location_dropdown-white .Reason_label,
[dir=rtl] .location_dropdown-white .membership_label,
[dir=rtl] .location_dropdown-white .reason_label,
[dir=rtl] .location_dropdown-white .Position_label,
[dir=rtl] .location_dropdown-white .free-location_label,
[dir=rtl] .membership_dropdown-white .location_label,
[dir=rtl] .membership_dropdown-white .enquiry_label,
[dir=rtl] .membership_dropdown-white .contract_label,
[dir=rtl] .membership_dropdown-white .Reason_label,
[dir=rtl] .membership_dropdown-white .membership_label,
[dir=rtl] .membership_dropdown-white .reason_label,
[dir=rtl] .membership_dropdown-white .Position_label,
[dir=rtl] .membership_dropdown-white .free-location_label,
[dir=rtl] .Reason_dropdown-white .location_label,
[dir=rtl] .Reason_dropdown-white .enquiry_label,
[dir=rtl] .Reason_dropdown-white .contract_label,
[dir=rtl] .Reason_dropdown-white .Reason_label,
[dir=rtl] .Reason_dropdown-white .membership_label,
[dir=rtl] .Reason_dropdown-white .reason_label,
[dir=rtl] .Reason_dropdown-white .Position_label,
[dir=rtl] .Reason_dropdown-white .free-location_label,
[dir=rtl] .Position_dropdown-white .location_label,
[dir=rtl] .Position_dropdown-white .enquiry_label,
[dir=rtl] .Position_dropdown-white .contract_label,
[dir=rtl] .Position_dropdown-white .Reason_label,
[dir=rtl] .Position_dropdown-white .membership_label,
[dir=rtl] .Position_dropdown-white .reason_label,
[dir=rtl] .Position_dropdown-white .Position_label,
[dir=rtl] .Position_dropdown-white .free-location_label,
[dir=rtl] .contract_dropdown-white .location_label,
[dir=rtl] .contract_dropdown-white .enquiry_label,
[dir=rtl] .contract_dropdown-white .contract_label,
[dir=rtl] .contract_dropdown-white .Reason_label,
[dir=rtl] .contract_dropdown-white .membership_label,
[dir=rtl] .contract_dropdown-white .reason_label,
[dir=rtl] .contract_dropdown-white .Position_label,
[dir=rtl] .contract_dropdown-white .free-location_label,
[dir=rtl] .reason_dropdown-white .location_label,
[dir=rtl] .reason_dropdown-white .enquiry_label,
[dir=rtl] .reason_dropdown-white .contract_label,
[dir=rtl] .reason_dropdown-white .Reason_label,
[dir=rtl] .reason_dropdown-white .membership_label,
[dir=rtl] .reason_dropdown-white .reason_label,
[dir=rtl] .reason_dropdown-white .Position_label,
[dir=rtl] .reason_dropdown-white .free-location_label,
[dir=rtl] .enquiry_dropdown-white .location_label,
[dir=rtl] .enquiry_dropdown-white .enquiry_label,
[dir=rtl] .enquiry_dropdown-white .contract_label,
[dir=rtl] .enquiry_dropdown-white .Reason_label,
[dir=rtl] .enquiry_dropdown-white .membership_label,
[dir=rtl] .enquiry_dropdown-white .reason_label,
[dir=rtl] .enquiry_dropdown-white .Position_label,
[dir=rtl] .enquiry_dropdown-white .free-location_label,
[dir=rtl] .free-location_dropdown-white .location_label,
[dir=rtl] .free-location_dropdown-white .enquiry_label,
[dir=rtl] .free-location_dropdown-white .contract_label,
[dir=rtl] .free-location_dropdown-white .Reason_label,
[dir=rtl] .free-location_dropdown-white .membership_label,
[dir=rtl] .free-location_dropdown-white .reason_label,
[dir=rtl] .free-location_dropdown-white .Position_label,
[dir=rtl] .free-location_dropdown-white .free-location_label {
  letter-spacing: 0;
  padding-left: 60px;
  padding-right: 11px;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .location_dropdown-white .location_label,
[dir=rtl] .location_dropdown-white .enquiry_label,
[dir=rtl] .location_dropdown-white .contract_label,
[dir=rtl] .location_dropdown-white .Reason_label,
[dir=rtl] .location_dropdown-white .membership_label,
[dir=rtl] .location_dropdown-white .reason_label,
[dir=rtl] .location_dropdown-white .Position_label,
[dir=rtl] .location_dropdown-white .free-location_label,
[dir=rtl] .membership_dropdown-white .location_label,
[dir=rtl] .membership_dropdown-white .enquiry_label,
[dir=rtl] .membership_dropdown-white .contract_label,
[dir=rtl] .membership_dropdown-white .Reason_label,
[dir=rtl] .membership_dropdown-white .membership_label,
[dir=rtl] .membership_dropdown-white .reason_label,
[dir=rtl] .membership_dropdown-white .Position_label,
[dir=rtl] .membership_dropdown-white .free-location_label,
[dir=rtl] .Reason_dropdown-white .location_label,
[dir=rtl] .Reason_dropdown-white .enquiry_label,
[dir=rtl] .Reason_dropdown-white .contract_label,
[dir=rtl] .Reason_dropdown-white .Reason_label,
[dir=rtl] .Reason_dropdown-white .membership_label,
[dir=rtl] .Reason_dropdown-white .reason_label,
[dir=rtl] .Reason_dropdown-white .Position_label,
[dir=rtl] .Reason_dropdown-white .free-location_label,
[dir=rtl] .Position_dropdown-white .location_label,
[dir=rtl] .Position_dropdown-white .enquiry_label,
[dir=rtl] .Position_dropdown-white .contract_label,
[dir=rtl] .Position_dropdown-white .Reason_label,
[dir=rtl] .Position_dropdown-white .membership_label,
[dir=rtl] .Position_dropdown-white .reason_label,
[dir=rtl] .Position_dropdown-white .Position_label,
[dir=rtl] .Position_dropdown-white .free-location_label,
[dir=rtl] .contract_dropdown-white .location_label,
[dir=rtl] .contract_dropdown-white .enquiry_label,
[dir=rtl] .contract_dropdown-white .contract_label,
[dir=rtl] .contract_dropdown-white .Reason_label,
[dir=rtl] .contract_dropdown-white .membership_label,
[dir=rtl] .contract_dropdown-white .reason_label,
[dir=rtl] .contract_dropdown-white .Position_label,
[dir=rtl] .contract_dropdown-white .free-location_label,
[dir=rtl] .reason_dropdown-white .location_label,
[dir=rtl] .reason_dropdown-white .enquiry_label,
[dir=rtl] .reason_dropdown-white .contract_label,
[dir=rtl] .reason_dropdown-white .Reason_label,
[dir=rtl] .reason_dropdown-white .membership_label,
[dir=rtl] .reason_dropdown-white .reason_label,
[dir=rtl] .reason_dropdown-white .Position_label,
[dir=rtl] .reason_dropdown-white .free-location_label,
[dir=rtl] .enquiry_dropdown-white .location_label,
[dir=rtl] .enquiry_dropdown-white .enquiry_label,
[dir=rtl] .enquiry_dropdown-white .contract_label,
[dir=rtl] .enquiry_dropdown-white .Reason_label,
[dir=rtl] .enquiry_dropdown-white .membership_label,
[dir=rtl] .enquiry_dropdown-white .reason_label,
[dir=rtl] .enquiry_dropdown-white .Position_label,
[dir=rtl] .enquiry_dropdown-white .free-location_label,
[dir=rtl] .free-location_dropdown-white .location_label,
[dir=rtl] .free-location_dropdown-white .enquiry_label,
[dir=rtl] .free-location_dropdown-white .contract_label,
[dir=rtl] .free-location_dropdown-white .Reason_label,
[dir=rtl] .free-location_dropdown-white .membership_label,
[dir=rtl] .free-location_dropdown-white .reason_label,
[dir=rtl] .free-location_dropdown-white .Position_label,
[dir=rtl] .free-location_dropdown-white .free-location_label {
    padding-left: 38px;
  }
}
[dir=rtl] .location_dropdown-white .location_label::before,
[dir=rtl] .location_dropdown-white .enquiry_label::before,
[dir=rtl] .location_dropdown-white .contract_label::before,
[dir=rtl] .location_dropdown-white .Reason_label::before,
[dir=rtl] .location_dropdown-white .membership_label::before,
[dir=rtl] .location_dropdown-white .reason_label::before,
[dir=rtl] .location_dropdown-white .Position_label::before,
[dir=rtl] .location_dropdown-white .free-location_label::before,
[dir=rtl] .membership_dropdown-white .location_label::before,
[dir=rtl] .membership_dropdown-white .enquiry_label::before,
[dir=rtl] .membership_dropdown-white .contract_label::before,
[dir=rtl] .membership_dropdown-white .Reason_label::before,
[dir=rtl] .membership_dropdown-white .membership_label::before,
[dir=rtl] .membership_dropdown-white .reason_label::before,
[dir=rtl] .membership_dropdown-white .Position_label::before,
[dir=rtl] .membership_dropdown-white .free-location_label::before,
[dir=rtl] .Reason_dropdown-white .location_label::before,
[dir=rtl] .Reason_dropdown-white .enquiry_label::before,
[dir=rtl] .Reason_dropdown-white .contract_label::before,
[dir=rtl] .Reason_dropdown-white .Reason_label::before,
[dir=rtl] .Reason_dropdown-white .membership_label::before,
[dir=rtl] .Reason_dropdown-white .reason_label::before,
[dir=rtl] .Reason_dropdown-white .Position_label::before,
[dir=rtl] .Reason_dropdown-white .free-location_label::before,
[dir=rtl] .Position_dropdown-white .location_label::before,
[dir=rtl] .Position_dropdown-white .enquiry_label::before,
[dir=rtl] .Position_dropdown-white .contract_label::before,
[dir=rtl] .Position_dropdown-white .Reason_label::before,
[dir=rtl] .Position_dropdown-white .membership_label::before,
[dir=rtl] .Position_dropdown-white .reason_label::before,
[dir=rtl] .Position_dropdown-white .Position_label::before,
[dir=rtl] .Position_dropdown-white .free-location_label::before,
[dir=rtl] .contract_dropdown-white .location_label::before,
[dir=rtl] .contract_dropdown-white .enquiry_label::before,
[dir=rtl] .contract_dropdown-white .contract_label::before,
[dir=rtl] .contract_dropdown-white .Reason_label::before,
[dir=rtl] .contract_dropdown-white .membership_label::before,
[dir=rtl] .contract_dropdown-white .reason_label::before,
[dir=rtl] .contract_dropdown-white .Position_label::before,
[dir=rtl] .contract_dropdown-white .free-location_label::before,
[dir=rtl] .reason_dropdown-white .location_label::before,
[dir=rtl] .reason_dropdown-white .enquiry_label::before,
[dir=rtl] .reason_dropdown-white .contract_label::before,
[dir=rtl] .reason_dropdown-white .Reason_label::before,
[dir=rtl] .reason_dropdown-white .membership_label::before,
[dir=rtl] .reason_dropdown-white .reason_label::before,
[dir=rtl] .reason_dropdown-white .Position_label::before,
[dir=rtl] .reason_dropdown-white .free-location_label::before,
[dir=rtl] .enquiry_dropdown-white .location_label::before,
[dir=rtl] .enquiry_dropdown-white .enquiry_label::before,
[dir=rtl] .enquiry_dropdown-white .contract_label::before,
[dir=rtl] .enquiry_dropdown-white .Reason_label::before,
[dir=rtl] .enquiry_dropdown-white .membership_label::before,
[dir=rtl] .enquiry_dropdown-white .reason_label::before,
[dir=rtl] .enquiry_dropdown-white .Position_label::before,
[dir=rtl] .enquiry_dropdown-white .free-location_label::before,
[dir=rtl] .free-location_dropdown-white .location_label::before,
[dir=rtl] .free-location_dropdown-white .enquiry_label::before,
[dir=rtl] .free-location_dropdown-white .contract_label::before,
[dir=rtl] .free-location_dropdown-white .Reason_label::before,
[dir=rtl] .free-location_dropdown-white .membership_label::before,
[dir=rtl] .free-location_dropdown-white .reason_label::before,
[dir=rtl] .free-location_dropdown-white .Position_label::before,
[dir=rtl] .free-location_dropdown-white .free-location_label::before {
  left: 20px;
  right: auto;
}
@media (max-width: 767px) {
  [dir=rtl] .location_dropdown-white .location_label::before,
[dir=rtl] .location_dropdown-white .enquiry_label::before,
[dir=rtl] .location_dropdown-white .contract_label::before,
[dir=rtl] .location_dropdown-white .Reason_label::before,
[dir=rtl] .location_dropdown-white .membership_label::before,
[dir=rtl] .location_dropdown-white .reason_label::before,
[dir=rtl] .location_dropdown-white .Position_label::before,
[dir=rtl] .location_dropdown-white .free-location_label::before,
[dir=rtl] .membership_dropdown-white .location_label::before,
[dir=rtl] .membership_dropdown-white .enquiry_label::before,
[dir=rtl] .membership_dropdown-white .contract_label::before,
[dir=rtl] .membership_dropdown-white .Reason_label::before,
[dir=rtl] .membership_dropdown-white .membership_label::before,
[dir=rtl] .membership_dropdown-white .reason_label::before,
[dir=rtl] .membership_dropdown-white .Position_label::before,
[dir=rtl] .membership_dropdown-white .free-location_label::before,
[dir=rtl] .Reason_dropdown-white .location_label::before,
[dir=rtl] .Reason_dropdown-white .enquiry_label::before,
[dir=rtl] .Reason_dropdown-white .contract_label::before,
[dir=rtl] .Reason_dropdown-white .Reason_label::before,
[dir=rtl] .Reason_dropdown-white .membership_label::before,
[dir=rtl] .Reason_dropdown-white .reason_label::before,
[dir=rtl] .Reason_dropdown-white .Position_label::before,
[dir=rtl] .Reason_dropdown-white .free-location_label::before,
[dir=rtl] .Position_dropdown-white .location_label::before,
[dir=rtl] .Position_dropdown-white .enquiry_label::before,
[dir=rtl] .Position_dropdown-white .contract_label::before,
[dir=rtl] .Position_dropdown-white .Reason_label::before,
[dir=rtl] .Position_dropdown-white .membership_label::before,
[dir=rtl] .Position_dropdown-white .reason_label::before,
[dir=rtl] .Position_dropdown-white .Position_label::before,
[dir=rtl] .Position_dropdown-white .free-location_label::before,
[dir=rtl] .contract_dropdown-white .location_label::before,
[dir=rtl] .contract_dropdown-white .enquiry_label::before,
[dir=rtl] .contract_dropdown-white .contract_label::before,
[dir=rtl] .contract_dropdown-white .Reason_label::before,
[dir=rtl] .contract_dropdown-white .membership_label::before,
[dir=rtl] .contract_dropdown-white .reason_label::before,
[dir=rtl] .contract_dropdown-white .Position_label::before,
[dir=rtl] .contract_dropdown-white .free-location_label::before,
[dir=rtl] .reason_dropdown-white .location_label::before,
[dir=rtl] .reason_dropdown-white .enquiry_label::before,
[dir=rtl] .reason_dropdown-white .contract_label::before,
[dir=rtl] .reason_dropdown-white .Reason_label::before,
[dir=rtl] .reason_dropdown-white .membership_label::before,
[dir=rtl] .reason_dropdown-white .reason_label::before,
[dir=rtl] .reason_dropdown-white .Position_label::before,
[dir=rtl] .reason_dropdown-white .free-location_label::before,
[dir=rtl] .enquiry_dropdown-white .location_label::before,
[dir=rtl] .enquiry_dropdown-white .enquiry_label::before,
[dir=rtl] .enquiry_dropdown-white .contract_label::before,
[dir=rtl] .enquiry_dropdown-white .Reason_label::before,
[dir=rtl] .enquiry_dropdown-white .membership_label::before,
[dir=rtl] .enquiry_dropdown-white .reason_label::before,
[dir=rtl] .enquiry_dropdown-white .Position_label::before,
[dir=rtl] .enquiry_dropdown-white .free-location_label::before,
[dir=rtl] .free-location_dropdown-white .location_label::before,
[dir=rtl] .free-location_dropdown-white .enquiry_label::before,
[dir=rtl] .free-location_dropdown-white .contract_label::before,
[dir=rtl] .free-location_dropdown-white .Reason_label::before,
[dir=rtl] .free-location_dropdown-white .membership_label::before,
[dir=rtl] .free-location_dropdown-white .reason_label::before,
[dir=rtl] .free-location_dropdown-white .Position_label::before,
[dir=rtl] .free-location_dropdown-white .free-location_label::before {
    left: 10px;
  }
}
@media (min-width: 768px) {
  [dir=rtl] .location_dropdown-white .location_label.small-caret,
[dir=rtl] .location_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .location_dropdown-white .contract_label.small-caret,
[dir=rtl] .location_dropdown-white .Reason_label.small-caret,
[dir=rtl] .location_dropdown-white .membership_label.small-caret,
[dir=rtl] .location_dropdown-white .reason_label.small-caret,
[dir=rtl] .location_dropdown-white .Position_label.small-caret,
[dir=rtl] .location_dropdown-white .free-location_label.small-caret,
[dir=rtl] .membership_dropdown-white .location_label.small-caret,
[dir=rtl] .membership_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .membership_dropdown-white .contract_label.small-caret,
[dir=rtl] .membership_dropdown-white .Reason_label.small-caret,
[dir=rtl] .membership_dropdown-white .membership_label.small-caret,
[dir=rtl] .membership_dropdown-white .reason_label.small-caret,
[dir=rtl] .membership_dropdown-white .Position_label.small-caret,
[dir=rtl] .membership_dropdown-white .free-location_label.small-caret,
[dir=rtl] .Reason_dropdown-white .location_label.small-caret,
[dir=rtl] .Reason_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .Reason_dropdown-white .contract_label.small-caret,
[dir=rtl] .Reason_dropdown-white .Reason_label.small-caret,
[dir=rtl] .Reason_dropdown-white .membership_label.small-caret,
[dir=rtl] .Reason_dropdown-white .reason_label.small-caret,
[dir=rtl] .Reason_dropdown-white .Position_label.small-caret,
[dir=rtl] .Reason_dropdown-white .free-location_label.small-caret,
[dir=rtl] .Position_dropdown-white .location_label.small-caret,
[dir=rtl] .Position_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .Position_dropdown-white .contract_label.small-caret,
[dir=rtl] .Position_dropdown-white .Reason_label.small-caret,
[dir=rtl] .Position_dropdown-white .membership_label.small-caret,
[dir=rtl] .Position_dropdown-white .reason_label.small-caret,
[dir=rtl] .Position_dropdown-white .Position_label.small-caret,
[dir=rtl] .Position_dropdown-white .free-location_label.small-caret,
[dir=rtl] .contract_dropdown-white .location_label.small-caret,
[dir=rtl] .contract_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .contract_dropdown-white .contract_label.small-caret,
[dir=rtl] .contract_dropdown-white .Reason_label.small-caret,
[dir=rtl] .contract_dropdown-white .membership_label.small-caret,
[dir=rtl] .contract_dropdown-white .reason_label.small-caret,
[dir=rtl] .contract_dropdown-white .Position_label.small-caret,
[dir=rtl] .contract_dropdown-white .free-location_label.small-caret,
[dir=rtl] .reason_dropdown-white .location_label.small-caret,
[dir=rtl] .reason_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .reason_dropdown-white .contract_label.small-caret,
[dir=rtl] .reason_dropdown-white .Reason_label.small-caret,
[dir=rtl] .reason_dropdown-white .membership_label.small-caret,
[dir=rtl] .reason_dropdown-white .reason_label.small-caret,
[dir=rtl] .reason_dropdown-white .Position_label.small-caret,
[dir=rtl] .reason_dropdown-white .free-location_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .location_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .contract_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .Reason_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .membership_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .reason_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .Position_label.small-caret,
[dir=rtl] .enquiry_dropdown-white .free-location_label.small-caret,
[dir=rtl] .free-location_dropdown-white .location_label.small-caret,
[dir=rtl] .free-location_dropdown-white .enquiry_label.small-caret,
[dir=rtl] .free-location_dropdown-white .contract_label.small-caret,
[dir=rtl] .free-location_dropdown-white .Reason_label.small-caret,
[dir=rtl] .free-location_dropdown-white .membership_label.small-caret,
[dir=rtl] .free-location_dropdown-white .reason_label.small-caret,
[dir=rtl] .free-location_dropdown-white .Position_label.small-caret,
[dir=rtl] .free-location_dropdown-white .free-location_label.small-caret {
    padding-left: 42px;
    padding-right: 11px;
  }
}
@media (min-width: 768px) {
  [dir=rtl] .location_dropdown-white .location_label.small-caret::before,
[dir=rtl] .location_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .location_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .location_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .location_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .location_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .location_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .location_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .location_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .membership_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .location_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .Reason_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .location_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .Position_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .location_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .contract_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .location_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .reason_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .location_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .enquiry_dropdown-white .free-location_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .location_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .enquiry_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .contract_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .Reason_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .membership_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .reason_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .Position_label.small-caret::before,
[dir=rtl] .free-location_dropdown-white .free-location_label.small-caret::before {
    left: 13px;
    right: auto;
  }
}
[dir=rtl] .location_dropdown-white ul,
[dir=rtl] .membership_dropdown-white ul,
[dir=rtl] .Reason_dropdown-white ul,
[dir=rtl] .Position_dropdown-white ul,
[dir=rtl] .contract_dropdown-white ul,
[dir=rtl] .reason_dropdown-white ul,
[dir=rtl] .enquiry_dropdown-white ul,
[dir=rtl] .free-location_dropdown-white ul {
  text-align: right;
}
[dir=rtl] .location_dropdown-white ul li a[href],
[dir=rtl] .membership_dropdown-white ul li a[href],
[dir=rtl] .Reason_dropdown-white ul li a[href],
[dir=rtl] .Position_dropdown-white ul li a[href],
[dir=rtl] .contract_dropdown-white ul li a[href],
[dir=rtl] .reason_dropdown-white ul li a[href],
[dir=rtl] .enquiry_dropdown-white ul li a[href],
[dir=rtl] .free-location_dropdown-white ul li a[href] {
  padding-left: 20px;
  padding-right: 30px;
  text-align: right;
}
[dir=rtl] .location-validation-error,
[dir=rtl] .enquiry-validation-error,
[dir=rtl] .membership-validation-error,
[dir=rtl] .contract-validation-error,
[dir=rtl] .reason-validation-error,
[dir=rtl] .file-validation-error,
[dir=rtl] .Position-validation-error,
[dir=rtl] .cv-validation-error,
[dir=rtl] .free-location-validation-error {
  text-align: right;
}
[dir=rtl] .location-validation-error > span,
[dir=rtl] .enquiry-validation-error > span,
[dir=rtl] .membership-validation-error > span,
[dir=rtl] .contract-validation-error > span,
[dir=rtl] .reason-validation-error > span,
[dir=rtl] .file-validation-error > span,
[dir=rtl] .Position-validation-error > span,
[dir=rtl] .cv-validation-error > span,
[dir=rtl] .free-location-validation-error > span {
  display: block;
  width: 100%;
}
[dir=rtl] .enquiry_dropdown-white .enquiry_label {
  padding-left: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .enquiry_dropdown-white .enquiry_label {
    padding-left: 38px;
  }
}
[dir=rtl] .enquiry_dropdown-white .enquiry_label::before {
  left: 20px;
  right: auto;
}
@media (max-width: 767px) {
  [dir=rtl] .enquiry_dropdown-white .enquiry_label::before {
    left: 10px;
  }
}
[dir=rtl] .enquiry_dropdown-white ul {
  text-align: right;
}
[dir=rtl] .enquiry_dropdown-white ul li a[href] {
  padding-left: 20px;
  padding-right: 30px;
}
[dir=rtl] .membership_dropdown-white .membership_label {
  padding-left: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .membership_dropdown-white .membership_label {
    padding-left: 38px;
  }
}
[dir=rtl] .membership_dropdown-white .membership_label::before {
  left: 20px;
  right: auto;
}
@media (max-width: 767px) {
  [dir=rtl] .membership_dropdown-white .membership_label::before {
    left: 10px;
  }
}
[dir=rtl] .membership_dropdown-white ul {
  text-align: right;
}
[dir=rtl] .membership_dropdown-white ul li a[href] {
  padding-left: 20px;
  padding-right: 30px;
}
[dir=rtl] .reason_dropdown-white .reason_label {
  padding-left: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .reason_dropdown-white .reason_label {
    padding-left: 38px;
  }
}
[dir=rtl] .reason_dropdown-white .reason_label::before {
  left: 20px;
  right: auto;
}
@media (max-width: 767px) {
  [dir=rtl] .reason_dropdown-white .reason_label::before {
    left: 10px;
  }
}
[dir=rtl] .reason_dropdown-white ul {
  text-align: right;
}
[dir=rtl] .reason_dropdown-white ul li a[href] {
  padding-left: 20px;
  padding-right: 30px;
}
[dir=rtl] .contract_dropdown-white .contract_label {
  padding-left: 60px;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .contract_dropdown-white .contract_label {
    padding-left: 38px;
  }
}
[dir=rtl] .contract_dropdown-white .contract_label::before {
  left: 20px;
  right: auto;
}
@media (max-width: 767px) {
  [dir=rtl] .contract_dropdown-white .contract_label::before {
    left: 10px;
  }
}
[dir=rtl] .contract_dropdown-white ul {
  text-align: right;
}
[dir=rtl] .contract_dropdown-white ul li a[href] {
  padding-left: 20px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  [dir=rtl] .post__meta-wrap .blog-post__meta {
    text-align: right;
  }
}
[dir=rtl] .post__meta-wrap .social-style .link-wrp ul {
  margin-left: 0;
  margin-right: 20px;
  padding-right: 0;
}
@media (max-width: 767px) {
  [dir=rtl] .post__meta-wrap .social-style .link-wrp ul {
    margin-left: 10px;
    margin-right: 10px;
  }
}
[dir=rtl] .post__meta-wrap .social-style .link-wrp ul li:first-child {
  margin-right: 0;
}
[dir=rtl] .post__meta-wrap .social-style .link-wrp ul li:last-child {
  margin-right: 3px;
}
[dir=rtl] .post_contain p,
[dir=rtl] .post_contain li {
  line-height: 1.6;
}
@media (max-width: 767px) {
  [dir=rtl] .post_contain p,
[dir=rtl] .post_contain li {
    line-height: 1.5;
  }
}
[dir=rtl] .prefer-box.en {
  display: none;
}
[dir=rtl] .prefer-box.ae {
  display: block;
}
[dir=rtl] .prefer-box .prefer-pol {
  letter-spacing: 0;
  padding: 6px 34px 7px 10px;
}
@media (max-width: 767px) {
  [dir=rtl] .prefer-box .prefer-pol {
    padding-bottom: 6px;
    padding-top: 5px;
  }
}
[dir=rtl] .prefer-box .prefer-pol .plicon {
  left: auto;
  right: 10px;
}
[dir=rtl] .prefer-box h3 {
  letter-spacing: 0;
}
[dir=rtl] .prefer-box form .input-radio label {
  letter-spacing: 0;
  padding: 10px 46px 12px 20px;
}
@media (max-width: 767px) {
  [dir=rtl] .prefer-box form .input-radio label {
    padding: 8px 38px 10px 16px;
  }
}
[dir=rtl] .prefer-box form .input-radio label::before, [dir=rtl] .prefer-box form .input-radio label::after {
  left: auto;
  right: 16px;
}
@media (max-width: 767px) {
  [dir=rtl] .prefer-box form .input-radio label::before {
    right: 14px;
  }
}
[dir=rtl] .prefer-box form .input-radio label::after {
  right: 21px;
}
@media (max-width: 767px) {
  [dir=rtl] .prefer-box form .input-radio label::after {
    right: 18px;
  }
}
[dir=rtl] .prefer-success-msg p {
  letter-spacing: 0;
  line-height: 1.5;
}
[dir=rtl] .gn-breadcrumb ul {
  line-height: 24px;
  padding-right: 0;
  text-align: right;
}
@media (max-width: 767px) {
  [dir=rtl] .gn-breadcrumb ul {
    line-height: 22px;
  }
}
[dir=rtl] .gn-breadcrumb ul li {
  padding-left: 25px;
  padding-right: 0;
}
@media (max-width: 767px) {
  [dir=rtl] .gn-breadcrumb ul li {
    padding-left: 20px;
  }
}
[dir=rtl] .gn-breadcrumb ul li::after {
  height: 24px;
  left: 6px;
  right: auto;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}
@media (max-width: 767px) {
  [dir=rtl] .gn-breadcrumb ul li::after {
    height: 22px;
    left: 3px;
    top: unset;
  }
}

.js-modal {
  backdrop-filter: blur(2px);
  display: none;
  z-index: 99999;
}

.secondary-btn.button {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
  padding: 13px 32px;
  width: auto;
}
@media (max-width: 767px) {
  .secondary-btn.button {
    line-height: 22px;
    padding: 10px 20px;
  }
}

.pod-hero-section {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 714px;
  padding: 194px 0 80px;
  width: 100%;
}
@media (max-width: 1199px) {
  .pod-hero-section {
    min-height: 640px;
    padding-top: 185px;
  }
}
@media (max-width: 991px) {
  .pod-hero-section {
    min-height: 500px;
    padding: 165px 0 60px;
  }
}
@media (max-width: 767px) {
  .pod-hero-section {
    min-height: 430px;
    padding: 142px 0 50px;
  }
}
@media (max-width: 575px) {
  .pod-hero-section {
    min-height: 400px;
  }
}
@media (max-width: 530px) {
  .pod-hero-section {
    padding-top: 128px;
  }
}
.pod-hero-section .o-wrapper {
  width: 100%;
}

.pod-hero-each-sld {
  width: 100%;
}
@media (max-width: 767px) {
  .pod-hero-each-sld {
    text-align: center;
  }
}
.pod-hero-each-sld .pretitle {
  background-color: rgba(244, 205, 0, 0.3);
  border-radius: 20px;
  color: #f4cd00;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 21px;
  padding: 3px 14px 2px;
}
.pod-hero-each-sld h2,
.pod-hero-each-sld h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .pod-hero-each-sld h2,
.pod-hero-each-sld h1 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .pod-hero-each-sld h2,
.pod-hero-each-sld h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .pod-hero-each-sld h2,
.pod-hero-each-sld h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.pod-hero-each-sld p {
  color: #fff;
  margin-bottom: 16px;
}
.pod-hero-each-sld p:last-child {
  margin-bottom: 0;
}
.pod-hero-each-sld .btn-wrap {
  margin-top: 33px;
  width: 100%;
}
@media (max-width: 767px) {
  .pod-hero-each-sld .btn-wrap {
    margin-top: 24px;
  }
}

.pod-hero-slider {
  max-width: 100%;
  width: 638px;
}
@media (max-width: 991px) {
  .pod-hero-slider {
    width: 540px;
  }
}
@media (max-width: 767px) {
  .pod-hero-slider {
    width: 100%;
  }
}
.pod-hero-slider.slick-slider {
  margin: 0;
  max-width: 100%;
  padding-left: 67px;
  width: 715px;
}
@media (max-width: 991px) {
  .pod-hero-slider.slick-slider {
    padding-left: 50px;
    width: 600px;
  }
}
@media (max-width: 767px) {
  .pod-hero-slider.slick-slider {
    padding-bottom: 40px;
    padding-left: 0;
    width: 100%;
  }
}
.pod-hero-slider.slick-slider .pod-hero-each-sld {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .pod-hero-slider.slick-slider .pod-hero-each-sld {
    padding-left: 3px;
    padding-right: 3px;
  }
}
.pod-hero-slider.slick-slider .slick-arrow {
  background-color: #f4cd00;
  border: 1px solid #f4cd00;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 47px;
  left: 0;
  outline: none;
  position: absolute;
  right: auto;
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 47px;
}
@media (max-width: 991px) {
  .pod-hero-slider.slick-slider .slick-arrow {
    height: 36px;
    width: 36px;
  }
}
.pod-hero-slider.slick-slider .slick-arrow::before {
  background-size: 14px auto;
  color: transparent;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  opacity: 1;
}
@media (max-width: 991px) {
  .pod-hero-slider.slick-slider .slick-arrow::before {
    background-size: 11px auto;
    font-size: 13px;
    line-height: 20px;
  }
}
.pod-hero-slider.slick-slider .slick-arrow.slick-prev::before {
  background-image: url("../../build/img/left-arrow.png");
}
.pod-hero-slider.slick-slider .slick-arrow.slick-next {
  top: 66px;
}
@media (max-width: 991px) {
  .pod-hero-slider.slick-slider .slick-arrow.slick-next {
    top: 48px;
  }
}
.pod-hero-slider.slick-slider .slick-arrow.slick-next::before {
  margin-right: -4px;
}
.pod-hero-slider.slick-slider .slick-dots {
  bottom: 0;
  line-height: 0;
  top: auto;
  vertical-align: top;
}
.pod-hero-slider.slick-slider .slick-dots li {
  height: auto;
  line-height: 0;
  padding: 0;
  width: auto;
}
.pod-hero-slider.slick-slider .slick-dots li.slick-active button {
  opacity: 1;
}
.pod-hero-slider.slick-slider .slick-dots li button {
  background: #f4cd00;
  height: 14px;
  opacity: 0.5;
  width: 14px;
}
.pod-hero-slider.slick-slider .slick-dots li button::before {
  display: none;
}

.podcast-zigzag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0;
  width: 100%;
}
@media (max-width: 991px) {
  .podcast-zigzag {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.podcast-zigzag:first-child {
  margin-top: 0;
}
.podcast-zigzag:last-child {
  margin-bottom: 0;
}
.podcast-zigzag.image-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .podcast-zigzag.image-reverse .zig-image {
    padding-left: 30px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .podcast-zigzag.image-reverse .zig-image {
    padding-left: 0;
  }
}
.podcast-zigzag.image-reverse .zig-contain {
  padding-left: 35px;
  padding-right: 78px;
}
@media (max-width: 1199px) {
  .podcast-zigzag.image-reverse .zig-contain {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .podcast-zigzag.image-reverse .zig-contain {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 575px) {
  .podcast-zigzag.image-reverse .zig-contain {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.podcast-zigzag.image-reverse .zig-contain::before {
  margin-right: 43px;
}
@media (max-width: 1199px) {
  .podcast-zigzag.image-reverse .zig-contain::before {
    margin-right: 0;
  }
}
.podcast-zigzag.image-reverse .zig-contain::after {
  margin-left: 0;
}
.podcast-zigzag .zig-image {
  float: left;
  width: 50%;
}
@media (max-width: 1199px) {
  .podcast-zigzag .zig-image {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .podcast-zigzag .zig-image {
    padding-right: 0;
    position: relative;
    width: 100%;
    z-index: 2;
  }
}
.podcast-zigzag .zig-image img {
  border-radius: 20px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.podcast-zigzag .zig-contain {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  float: left;
  padding: 30px 35px 30px 78px;
  position: relative;
  width: 50%;
  z-index: 1;
}
@media (max-width: 1199px) {
  .podcast-zigzag .zig-contain {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .podcast-zigzag .zig-contain {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .podcast-zigzag .zig-contain {
    padding: 26px 24px;
  }
}
@media (max-width: 575px) {
  .podcast-zigzag .zig-contain {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.podcast-zigzag .zig-contain::before, .podcast-zigzag .zig-contain::after {
  border: 0;
  border-color: #f4cd00;
  border-style: solid;
  content: "";
  display: inline-block;
  height: 202px;
  position: absolute;
  right: 0;
  top: 0;
  width: 202px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .podcast-zigzag .zig-contain::before, .podcast-zigzag .zig-contain::after {
    height: 180px;
    width: 180px;
  }
}
@media (max-width: 767px) {
  .podcast-zigzag .zig-contain::before, .podcast-zigzag .zig-contain::after {
    height: 120px;
    width: 120px;
  }
}
.podcast-zigzag .zig-contain::before {
  border-radius: 0 20px 0 0;
  border-width: 5px 5px 0 0;
}
@media (max-width: 1199px) {
  .podcast-zigzag .zig-contain::before {
    border-width: 4px 4px 0 0;
  }
}
@media (max-width: 991px) {
  .podcast-zigzag .zig-contain::before {
    border-radius: 0 0 20px;
    border-width: 0 4px 4px 0;
    bottom: 0;
    top: auto;
  }
}
@media (max-width: 767px) {
  .podcast-zigzag .zig-contain::before {
    border-width: 0 3px 3px 0;
  }
}
.podcast-zigzag .zig-contain::after {
  border-radius: 0 0 0 20px;
  border-width: 0 0 5px 5px;
  bottom: 0;
  left: 0;
  margin-left: 43px;
  right: auto;
  top: auto;
}
@media (max-width: 1199px) {
  .podcast-zigzag .zig-contain::after {
    border-width: 0 0 4px 4px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .podcast-zigzag .zig-contain::after {
    border-width: 0 0 3px 3px;
  }
}
.podcast-zigzag .zig-contain h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 12px;
  text-transform: none;
}
@media (max-width: 767px) {
  .podcast-zigzag .zig-contain h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .podcast-zigzag .zig-contain h3 {
    font-size: 24px;
  }
}
.podcast-zigzag .zig-contain .zig-para {
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 480px) {
  .podcast-zigzag .zig-contain .zig-para {
    margin-bottom: 16px;
  }
}
.podcast-zigzag .zig-contain .zig-para:last-child {
  margin-bottom: 0;
}
.podcast-zigzag .zig-contain p {
  color: #022a3a;
  letter-spacing: 0.4px;
  line-height: 22px;
  margin: 0 0 16px;
}
.podcast-zigzag .zig-contain p:last-child {
  margin-bottom: 0;
}
.podcast-zigzag .zig-contain ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.podcast-zigzag .zig-contain ul:last-child {
  margin-bottom: 0;
}
.podcast-zigzag .zig-contain ul li {
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
.podcast-zigzag .zig-contain ul li:last-child {
  margin-bottom: 0;
}
.podcast-zigzag .zig-contain ul li::before {
  background-image: url("../../build/img/right-arrow-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 8px;
}
.podcast-zigzag .zig-contain .btn-wrap {
  width: 100%;
}

.podcast-two-column {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .podcast-two-column {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .podcast-two-column {
    min-height: 430px;
    padding: 50px 0;
  }
}

.popular-podcast-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .popular-podcast-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .popular-podcast-section {
    padding: 50px 0;
  }
}
.popular-podcast-section .u-h1 {
  width: 100%;
}
.popular-podcast-section .u-h1 h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 27px;
}
@media (max-width: 991px) {
  .popular-podcast-section .u-h1 h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .popular-podcast-section .u-h1 h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .popular-podcast-section .u-h1 h2 {
    font-size: 24px;
  }
}

.podcast-popular-slider {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .podcast-popular-slider {
    padding-top: 0;
  }
}
.podcast-popular-slider.slick-dotted {
  margin: 0;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .podcast-popular-slider.slick-dotted {
    padding-bottom: 44px;
  }
}
.podcast-popular-slider .slick-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
.podcast-popular-slider .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.podcast-popular-slider .slick-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px;
}
.podcast-popular-slider .slick-slide > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.podcast-popular-slider .slick-arrow {
  background-color: transparent;
  background-image: url("../../build/img/left-dark-arrow.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 15px;
  left: auto;
  outline: none;
  padding: 0;
  right: 32px;
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 23px;
}
.podcast-popular-slider .slick-arrow::before {
  display: none;
}
.podcast-popular-slider .slick-arrow.slick-next {
  right: 0;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.podcast-popular-slider .slick-dots {
  bottom: 0;
  line-height: 0;
}
.podcast-popular-slider .slick-dots li {
  height: auto;
  line-height: 0;
  margin: 0 1px;
  width: auto;
}
.podcast-popular-slider .slick-dots li.slick-active button {
  border-color: #022a3a;
}
.podcast-popular-slider .slick-dots li.slick-active button::before {
  opacity: 1;
}
.podcast-popular-slider .slick-dots li button {
  border: 2px solid transparent;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.podcast-popular-slider .slick-dots li button::before {
  background: #022a3a;
  border-radius: 100%;
  height: 10px;
  left: 50%;
  margin: auto;
  opacity: 0.45;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
}

.each-podcast-slider {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}
.each-podcast-slider .in {
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
  min-height: 300px;
  padding: 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.each-podcast-slider .in::before {
  background-color: #022a3a;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.each-podcast-slider .in .bg-image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -2;
}
.each-podcast-slider .top-contain {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  width: 100%;
}
.each-podcast-slider .podcast-date {
  color: #f4cd00;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding-right: 16px;
  text-transform: uppercase;
}
.each-podcast-slider .podcast-play {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 46px;
  outline: none;
  padding: 0;
  width: 46px;
}
.each-podcast-slider .podcast-play img {
  height: auto;
  width: 100%;
}
.each-podcast-slider h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.34;
  margin: 0;
  text-transform: none;
}
.each-podcast-slider .bottom-title {
  width: 100%;
}
.each-podcast-slider .podcast-duration-time {
  color: #f4cf01;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.podcast-popup.modal {
  backdrop-filter: blur(2px);
  overflow-y: auto;
}
.podcast-popup.modal .modal-dialog {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto;
  max-width: calc(100% - 80px);
  min-height: calc(100% - 80px);
  padding: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 1020px;
}
@media (max-width: 575px) {
  .podcast-popup.modal .modal-dialog {
    max-width: calc(100% - 40px);
  }
}
.podcast-popup .modal-content {
  background-color: #022a3a;
  margin-top: 40px;
  width: 100%;
}
.podcast-popup .modal-content .modal-header {
  padding: 0;
}
.podcast-popup .modal-content .modal-header .close {
  height: 30px;
  padding: 2px 5px;
  position: absolute;
  right: 0;
  top: -40px;
  width: 30px;
}
.podcast-popup .modal-content .modal-header .close span {
  color: #022a3a;
  display: inline-block;
  font-size: 42px;
  font-weight: 500;
  line-height: 28px;
}
.podcast-popup .video-wraper {
  width: 100%;
}
.podcast-popup .video-wraper.iframe-video {
  line-height: 0;
  max-width: 100%;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.podcast-popup .video-wraper.iframe-video > .fluidvids {
  height: 100%;
  left: 0;
  max-width: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.podcast-popup .video-wraper.iframe-video iframe {
  border-radius: 20px;
  height: 100%;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.podcast-popup .video-wraper video {
  border-radius: 20px;
  position: relative;
}

.studio-iframe-video {
  line-height: 0;
  max-width: 100%;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.studio-iframe-video > .fluidvids {
  height: 100%;
  left: 0;
  max-width: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.studio-iframe-video iframe {
  border-radius: 20px;
  height: 100%;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.discover-strip {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .discover-strip {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .discover-strip {
    padding: 50px 0;
  }
}
.discover-strip .o-wrapper {
  max-width: 942px;
}
.discover-strip h1,
.discover-strip h3 {
  font-size: 2.25rem;
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .discover-strip h1,
.discover-strip h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .discover-strip h1,
.discover-strip h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .discover-strip h1,
.discover-strip h3 {
    font-size: 28px;
  }
}
.discover-strip h1:last-child,
.discover-strip h3:last-child {
  margin-bottom: 0;
}
.discover-strip p {
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.discover-strip p:last-child {
  margin-bottom: 0;
}
.discover-strip .btn-wrap {
  margin-top: 29px;
  width: 100%;
}

.studio-setup-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.studio-setup-box .studio-image {
  line-height: 0;
  width: 50%;
}
@media (max-width: 991px) {
  .studio-setup-box .studio-image {
    width: 100%;
  }
}
.studio-setup-box .image-wrap {
  border-radius: 20px;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .studio-setup-box .image-wrap {
    border-radius: 16px;
  }
}
.studio-setup-box .image-wrap::before {
  background-color: #022a3a;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
}
.studio-setup-box .image-wrap img {
  height: auto;
  width: 100%;
}
.studio-setup-box .image-wrap .play-studio {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  height: 82px;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 82px;
  z-index: 9;
}
@media (max-width: 1199px) {
  .studio-setup-box .image-wrap .play-studio {
    height: 66px;
    width: 66px;
  }
}
@media (max-width: 767px) {
  .studio-setup-box .image-wrap .play-studio {
    height: 56px;
    width: 56px;
  }
}
@media (max-width: 575px) {
  .studio-setup-box .image-wrap .play-studio {
    height: 44px;
    width: 44px;
  }
}
.studio-setup-box .image-wrap .play-studio img {
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.studio-setup-box .studio-text {
  padding-left: 40px;
  width: 50%;
}
@media (max-width: 1199px) {
  .studio-setup-box .studio-text {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .studio-setup-box .studio-text {
    padding-left: 0;
    padding-top: 24px;
    text-align: center;
    width: 100%;
  }
}
.studio-setup-box .studio-text h2 {
  font-size: 36px;
  letter-spacing: 0.5px;
  line-height: 42px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .studio-setup-box .studio-text h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .studio-setup-box .studio-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .studio-setup-box .studio-text h2 {
    font-size: 22px;
  }
}
.studio-setup-box .studio-text p {
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .studio-setup-box .studio-text p {
    margin-bottom: 12px;
  }
}
.studio-setup-box .studio-text p:last-child {
  margin-bottom: 0;
}

.studio-setup-section {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .studio-setup-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .studio-setup-section {
    padding: 50px 0;
  }
}

.podcast-faq-section {
  padding: 20px 0 60px;
}
@media (max-width: 991px) {
  .podcast-faq-section {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .podcast-faq-section {
    padding-bottom: 40px;
    padding-top: 0;
  }
}
.podcast-faq-section .sec-in {
  margin: 0 auto;
  max-width: 100%;
  width: 1120px;
}
.podcast-faq-section h2 {
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .podcast-faq-section h2 {
    font-size: 36px;
  }
}

html[dir=rtl] .pod-hero-slider.slick-slider {
  padding-left: 0;
  padding-right: 67px;
}
@media (max-width: 991px) {
  html[dir=rtl] .pod-hero-slider.slick-slider {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  html[dir=rtl] .pod-hero-slider.slick-slider {
    padding-right: 0;
  }
}
html[dir=rtl] .pod-hero-slider.slick-slider .pod-hero-each-sld {
  padding-left: 0;
  padding-right: 10px;
}
@media (max-width: 767px) {
  html[dir=rtl] .pod-hero-slider.slick-slider .pod-hero-each-sld {
    padding-left: 3px;
    padding-right: 3px;
  }
}
html[dir=rtl] .pod-hero-slider.slick-slider .slick-arrow {
  left: auto;
  right: 0;
}
html[dir=rtl] .pod-hero-slider.slick-slider .slick-arrow.slick-prev::before {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html[dir=rtl] .pod-hero-slider.slick-slider .slick-arrow.slick-next::before {
  margin-right: 1px;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html[dir=rtl] .pod-hero-each-sld {
  direction: rtl;
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag .zig-image {
    padding-left: 30px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  html[dir=rtl] .podcast-zigzag .zig-image {
    padding-left: 0;
  }
}
html[dir=rtl] .podcast-zigzag .zig-contain {
  padding-left: 35px;
  padding-right: 78px;
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag .zig-contain {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  html[dir=rtl] .podcast-zigzag .zig-contain {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 575px) {
  html[dir=rtl] .podcast-zigzag .zig-contain {
    padding-left: 20px;
    padding-right: 20px;
  }
}
html[dir=rtl] .podcast-zigzag .zig-contain::before {
  left: 0;
  right: auto;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html[dir=rtl] .podcast-zigzag .zig-contain::after {
  left: auto;
  margin-right: 43px;
  right: 0;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag .zig-contain::after {
    margin-right: 0;
  }
}
html[dir=rtl] .podcast-zigzag .zig-contain ul li {
  padding-left: 0;
  padding-right: 18px;
}
html[dir=rtl] .podcast-zigzag .zig-contain ul li::before {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-image {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-image {
    padding-right: 0;
  }
}
html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain {
  padding-left: 78px;
  padding-right: 35px;
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 575px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain {
    padding-left: 20px;
    padding-right: 20px;
  }
}
html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain::before {
  margin-left: 43px;
  margin-right: 0;
}
@media (max-width: 1199px) {
  html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain::before {
    margin-left: 0;
  }
}
html[dir=rtl] .podcast-zigzag.image-reverse .zig-contain::after {
  margin-right: 0;
}
html[dir=rtl] .podcast-popular-slider .slick-arrow.slick-next {
  right: 32px;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
html[dir=rtl] .podcast-popular-slider .slick-arrow.slick-prev {
  right: 0;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
html[dir=rtl] .each-podcast-slider .podcast-date {
  padding-left: 16px;
  padding-right: 0;
}
html[dir=rtl] .podcast-popup .modal-content .modal-header .close {
  float: left;
  left: 0;
  margin-left: 0;
  right: auto;
}
html[dir=rtl] .podcast-popup .modal-content .modal-header .close span {
  font-size: 32px;
}
html[dir=rtl] .studio-setup-box .studio-text {
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  html[dir=rtl] .studio-setup-box .studio-text {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  html[dir=rtl] .studio-setup-box .studio-text {
    padding-right: 0;
  }
}
html[dir=rtl] .each-accordian span {
  margin-left: 20px;
  margin-right: 0;
}
@media (max-width: 420px) {
  html[dir=rtl] .each-accordian span {
    margin-left: 10px;
  }
}
html[dir=rtl] .each-accordian span.minus-sign {
  left: auto;
  right: 15px;
}

/* ==========================================================================
   #Locations Arabic
   ========================================================================== */
html[dir=rtl] {
  direction: rtl;
}
html[dir=rtl] .waiting-section .logo-header {
  text-align: right;
}
html[dir=rtl] .waiting-section .logo-header.text-center {
  text-align: center;
}
html[dir=rtl] .waiting-section .logo-header.text-center .language-switch .lang-btn {
  margin-left: 0;
}
html[dir=rtl] .waiting-section .logo-header.text-center .language-switch .lang-btn.en-btn {
  display: inline-block;
}
html[dir=rtl] .waiting-section .logo-header.text-center .language-switch .lang-btn.ae-btn {
  display: none;
}
@media (max-width: 480px) {
  html[dir=rtl] .waiting-section .logo-header .language-switch {
    margin-left: 0;
    margin-right: auto;
  }
}
html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn {
  margin-left: 74px;
  margin-right: 0;
}
@media (max-width: 991px) {
  html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn {
    margin-left: 45px;
  }
}
@media (max-width: 575px) {
  html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn {
    margin-left: 72px;
  }
}
@media (max-width: 480px) {
  html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn {
    margin-left: 0;
  }
}
html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn.ae-btn {
  display: none;
}
html[dir=rtl] .waiting-section .logo-header .language-switch .lang-btn.en-btn {
  display: inline-block;
}
html[dir=rtl] .waiting-section .visitor-count-box {
  left: 0;
  right: auto;
}
html[dir=rtl] .waiting-section .each-accordian {
  text-align: right;
}
html[dir=rtl] .waiting-section .each-accordian span {
  margin-left: 20px;
  margin-right: 0;
}
@media (max-width: 420px) {
  html[dir=rtl] .waiting-section .each-accordian span {
    margin-left: 10px;
  }
}
html[dir=rtl] .waiting-section .fpanel {
  border-radius: 24px;
  text-align: right;
}
html[dir=rtl] .waiting-section .fpanel ul,
html[dir=rtl] .waiting-section .fpanel ol {
  padding-left: 0;
  padding-right: 21px;
}
html[dir=rtl] .waiting-section .referwrap-box form .referlink {
  border-radius: 0 24px 24px 0;
}
html[dir=rtl] .waiting-section .referwrap-box form button {
  border-radius: 24px 0 0 24px;
}
@media (max-width: 690px) {
  html[dir=rtl] .waiting-section .referwrap-box form button {
    background-position: calc(100% - 6px) center;
  }
}
@media (max-width: 485px) {
  html[dir=rtl] .waiting-section .referwrap-box form button {
    background-position: calc(100% - 7px) center;
  }
}
html[dir=rtl] .visitor-count-box {
  border-radius: 10px 150px 60px;
}
html[dir=rtl] .social-share li {
  margin-left: 10px;
  margin-right: 0;
}
html[dir=rtl] .social-share li:last-child {
  margin-left: 0;
}
html[dir=rtl] .copy-link-box .social-share {
  margin-left: 0;
  margin-right: 10px;
}
html[dir=rtl] .time-btn.reminder-btn img {
  margin-left: 6px;
  margin-right: 0;
}
@media (max-width: 767px) {
  html[dir=rtl] .time-btn.reminder-btn img {
    margin-left: 4px;
  }
}
html[dir=rtl] .monthlyform-step .left-stp {
  padding-left: 30px;
  padding-right: 0;
}
@media (max-width: 991px) {
  html[dir=rtl] .monthlyform-step .left-stp {
    padding-left: 0;
  }
}
html[dir=rtl] .location-classes-select .field-validation-error,
html[dir=rtl] .location-classes-select .custom-phone-validation {
  left: auto;
  right: 14px;
}
@media (max-width: 480px) {
  html[dir=rtl] .location-classes-select .field-validation-error,
html[dir=rtl] .location-classes-select .custom-phone-validation {
    right: 9px;
  }
}
html[dir=rtl] .location-classes-select .location_dropdown .location_label {
  letter-spacing: 0;
  padding-left: 44px;
  padding-right: 15px;
  text-align: right;
}
@media (max-width: 480px) {
  html[dir=rtl] .location-classes-select .location_dropdown .location_label {
    padding-left: 32px;
    padding-right: 10px;
  }
}
html[dir=rtl] .location-classes-select .location_dropdown .location_label::before {
  left: 14px;
  right: auto;
}
@media (max-width: 480px) {
  html[dir=rtl] .location-classes-select .location_dropdown .location_label::before {
    left: 9px;
  }
}
html[dir=rtl] .location-classes-select .location_dropdown ul li span {
  letter-spacing: 0;
  text-align: right;
}
html[dir=rtl] .subtab-dropdown .subeach-tab-label {
  letter-spacing: 0;
  padding-left: 44px;
  padding-right: 15px;
  text-align: right;
}
@media (max-width: 480px) {
  html[dir=rtl] .subtab-dropdown .subeach-tab-label {
    padding-left: 32px;
    padding-right: 10px;
  }
}
html[dir=rtl] .subtab-dropdown .subeach-tab-label::before {
  left: 14px;
  right: auto;
}
@media (max-width: 480px) {
  html[dir=rtl] .subtab-dropdown .subeach-tab-label::before {
    left: 9px;
  }
}
html[dir=rtl] .subtab-dropdown ul li span {
  letter-spacing: 0;
  text-align: right;
}
html[dir=rtl] .than-poup .para .errorMessages {
  text-align: right;
}
html[dir=rtl] .gym-join-popup .have-promo .promocode--div .textbox input {
  border-radius: 0 26px 26px 0;
}
@media (max-width: 520px) {
  html[dir=rtl] .gym-join-popup .have-promo .promocode--div .textbox input {
    border-radius: 26px;
  }
}
html[dir=rtl] .gym-join-popup .have-promo .promocode--div .btn-submit input {
  border-radius: 26px 0 0 26px;
}
@media (max-width: 520px) {
  html[dir=rtl] .gym-join-popup .have-promo .promocode--div .btn-submit input {
    border-radius: 26px;
  }
}
html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon {
  left: 5px;
  right: auto;
}
@media (max-width: 575px) {
  html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon {
    left: 2px;
  }
}
html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .input.ui .calendar.icon::before {
  left: 0;
  right: auto;
}
@media screen and (min-width: 575px) {
  html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .hs-input .field-validation-error,
html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .hs-input .custom-phone-validation {
    margin-top: -6px;
  }
}
html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--allow-dropdown input.input-text {
  padding-left: 120px;
}
@media screen and (max-width: 1199px) {
  html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--allow-dropdown input.input-text {
    padding-left: 110px;
  }
}
@media screen and (max-width: 575px) {
  html[dir=rtl] .gym-join-popup .form-div .fieldset .hs-field .hs-input .iti--allow-dropdown input.input-text {
    padding-left: 100px;
  }
}
html[dir=rtl] .referwrap-box form input {
  border-radius: 0 24px 24px 0;
}
html[dir=rtl] .referwrap-box form button {
  border-radius: 24px 0 0 24px;
}
@media (max-width: 690px) {
  html[dir=rtl] .referwrap-box form button {
    background-position: calc(100% - 6px) center;
  }
}
@media (max-width: 485px) {
  html[dir=rtl] .referwrap-box form button {
    background-position: calc(100% - 7px) center;
  }
}
html[dir=rtl] .mm-tooltip-title .mm-tooltip-description {
  left: auto;
  right: 0;
}
html[dir=rtl] .mm-tooltip-title .mm-tooltip-description .tooltip-arrow {
  left: auto;
  right: 24px;
}
html[dir=rtl] .gift-image-text .editor-content p {
  letter-spacing: 0;
}
@media (max-width: 480px) {
  html[dir=rtl] .location_step .join-progress .join-progress__track {
    letter-spacing: 0;
  }
}
html[dir=rtl] .gender-select-dropdown .gender-label,
html[dir=rtl] .gender-select-dropdown .abtus-label,
html[dir=rtl] .abtus-dropdown .gender-label,
html[dir=rtl] .abtus-dropdown .abtus-label {
  padding-left: 36px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  html[dir=rtl] .gender-select-dropdown .gender-label,
html[dir=rtl] .gender-select-dropdown .abtus-label,
html[dir=rtl] .abtus-dropdown .gender-label,
html[dir=rtl] .abtus-dropdown .abtus-label {
    padding-left: 32px;
  }
}
@media (max-width: 480px) {
  html[dir=rtl] .gender-select-dropdown .gender-label,
html[dir=rtl] .gender-select-dropdown .abtus-label,
html[dir=rtl] .abtus-dropdown .gender-label,
html[dir=rtl] .abtus-dropdown .abtus-label {
    padding-right: 10px;
  }
}
html[dir=rtl] .gender-select-dropdown .gender-label::before,
html[dir=rtl] .gender-select-dropdown .abtus-label::before,
html[dir=rtl] .abtus-dropdown .gender-label::before,
html[dir=rtl] .abtus-dropdown .abtus-label::before {
  left: 12px;
  right: auto;
}

.app-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.app-containernew iframe {
  border: 1px #f0f2f6 solid;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
}

.chat-bot-box iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.chat-bot-box .chat-bot-title {
  background-color: transparent;
  padding: 24px 55px 24px 20px;
  width: 100%;
}
.chat-bot-box .chat-bot-title h2 {
  font-size: 22px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  text-transform: unset;
}
.chat-bot-box .chatbot-close {
  background-color: transparent;
  background-image: url("/build/svg/icons/cross-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 15px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  z-index: 3;
}
.chat-bot-box .chatbot-close:hover {
  background-image: url("/build/svg/icons/cross-yellow.svg");
}

.chat-bot-trigger {
  background-color: #022a3a;
  background-image: url("/media/ukqdxdtg/envelope.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  -webkit-box-shadow: rgba(255, 255, 255, 0.5) 0 4px 24px;
          box-shadow: rgba(255, 255, 255, 0.5) 0 4px 24px;
  cursor: pointer;
  display: inline-block;
  height: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 60px;
}

.chat-bot-main {
  bottom: 40px;
  display: inline-block;
  line-height: 0;
  position: fixed;
  right: 26px;
  z-index: 99999;
}
.chat-bot-main .chat-bot-box {
  background-color: #022a3a;
  border-radius: 20px;
  bottom: 0;
  -webkit-box-shadow: rgba(2, 42, 58, 0.16) 0 8px 36px 0;
          box-shadow: rgba(2, 42, 58, 0.16) 0 8px 36px 0;
  min-height: calc(100vh - 180px);
  overflow: hidden;
  position: absolute;
  right: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 560px;
  z-index: 999999;
}
@media (max-width: 1199px) {
  .chat-bot-main .chat-bot-box {
    min-height: calc(100vh - 158px);
  }
}
@media (max-width: 767px) {
  .chat-bot-main .chat-bot-box {
    min-height: calc(100vh - 210px);
  }
}
@media (max-width: 530px) {
  .chat-bot-main .chat-bot-box {
    min-height: calc(100vh - 120px);
  }
}
@media (max-width: 480px) {
  .chat-bot-main .chat-bot-box {
    min-height: calc(100vh - 160px);
  }
}

@supports (background: -webkit-canvas(squares)) {
  .chat-bot-main .chat-bot-box {
    min-height: calc(100vh - 180px);
  }
}
.chat-bot-main.show-chat {
  z-index: 100002;
}
.chat-bot-main.show-chat .chat-bot-box {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 1199px) {
  .chat-bot-main {
    bottom: 30px;
  }
}
@media (max-width: 991px) {
  .chat-bot-main .chat-bot-box {
    width: 400px;
  }

  .chat-bot-box .chat-bot-title {
    padding: 18px 55px 18px 20px;
  }
}
@media (max-width: 767px) {
  .chat-bot-main {
    bottom: 10px;
    right: 8px;
  }
  .chat-bot-main .chat-bot-box {
    width: 360px;
  }

  .chat-bot-box .chat-bot-title {
    padding: 16px 40px 16px 18px;
  }
  .chat-bot-box .chat-bot-title h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .chat-bot-trigger {
    background-size: 20px auto;
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 575px) {
  .chat-bot-main .chat-bot-box {
    max-width: 100vw;
    width: calc(100vw - 20px);
  }
}
html[dir=rtl] .chat-bot-box .chatbot-close {
  left: 10px;
  right: auto;
}

.site-alert-panel {
  background-color: #fd0b0b;
}
.site-alert-panel.alert {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 9999999;
}
.site-alert-panel.alert-dismissible {
  padding-right: 3rem;
}
.site-alert-panel.alert-dismissible .btn-close {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1em;
  border: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  z-index: 2;
}
.site-alert-panel .desc {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 6px;
  text-align: center;
}
.site-alert-panel .desc .g-btn {
  background-color: #f4cd00;
  border: 0;
  border-radius: 96px;
  color: #022a3a;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
  margin-left: 8px;
  outline: none;
  padding: 5px 34px 5px 14px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
@media (max-width: 575px) {
  .site-alert-panel .desc .g-btn {
    font-size: 10px;
    line-height: 12px;
    margin-left: 2px;
    padding: 4px 30px 4px 12px;
  }
}
.site-alert-panel .desc .g-btn:hover {
  background-color: #fff;
  color: #022a3a;
}
.site-alert-panel .desc .g-btn::before {
  background-image: url("/build/svg/arrow-right-circle.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 19px;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
}
@media (max-width: 575px) {
  .site-alert-panel .desc .g-btn::before {
    height: 16px;
    right: 4px;
    width: 16px;
  }
}
.site-alert-panel p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 575px) {
  .site-alert-panel p {
    font-size: 14px;
    line-height: 18px;
  }
}
.site-alert-panel p a {
  color: inherit;
}
.site-alert-panel p a:hover {
  text-decoration: none;
}
.site-alert-panel .btn-close {
  background-color: #022a3a;
  background-image: url("/build/svg/icons/cross-white-m.svg");
  border-radius: 100%;
  cursor: pointer;
  height: 30px;
  opacity: 1;
  padding: 0;
  right: 12px;
  top: 12px;
  -webkit-transition: background-color 0.1s ease;
  -o-transition: background-color 0.1s ease;
  transition: background-color 0.1s ease;
  width: 30px;
}
.site-alert-panel .btn-close:focus, .site-alert-panel .btn-close:hover {
  background-color: #f4cd00;
  background-image: url("/build/svg/icons/cross-primary-m.svg");
  -webkit-box-shadow: none;
          box-shadow: none;
}

html[dir=rtl] .site-alert-panel.alert-dismissible {
  padding-left: 3rem;
  padding-right: 1rem;
}
html[dir=rtl] .site-alert-panel .desc .g-btn {
  margin-left: 0;
  margin-right: 8px;
  padding-left: 34px;
  padding-right: 14px;
}
@media (max-width: 575px) {
  html[dir=rtl] .site-alert-panel .desc .g-btn {
    padding-left: 30px;
    padding-right: 12px;
  }
}
html[dir=rtl] .site-alert-panel .desc .g-btn::before {
  left: 8px;
  right: auto;
  -webkit-transform: translateY(-50%) scaleX(-1);
      -ms-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 575px) {
  html[dir=rtl] .site-alert-panel .desc .g-btn::before {
    left: 4px;
  }
}
html[dir=rtl] .site-alert-panel .btn-close {
  left: 12px;
  right: unset;
}
/*# sourceMappingURL=main.css.map */
