@charset "UTF-8";
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/*! normalize.css v8.0.1 | 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 iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  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
   ========================================================================== */
/**
 * 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: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

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

/**
 * 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: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 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 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
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 in Chrome and Safari on macOS.
 */
[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 Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col,
[class^=col-],
[class*=" col-"] {
  position: relative;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  max-width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576.02px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768.02px) {
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 768.02px) {
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768.02px) {
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (min-width: 768.02px) {
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-3 {
    margin-left: 25%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-6 {
    margin-left: 50%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-9 {
    margin-left: 75%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 576.02px) {
  .offset-sm-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-3 {
    margin-left: 25%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-6 {
    margin-left: 50%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-9 {
    margin-left: 75%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768.02px) {
  .offset-md-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-3 {
    margin-left: 25%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-6 {
    margin-left: 50%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-9 {
    margin-left: 75%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992.02px) {
  .offset-lg-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-3 {
    margin-left: 25%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-9 {
    margin-left: 75%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200.02px) {
  .offset-xl-12 {
    margin-left: 100%;
  }
}
.w-100 {
  width: 100% !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/*link*/
/*h1*/
/*h2*/
/*h3*/
/*h4*/
/*h5*/
/*h6*/
/*blockquote*/
/*table*/
html {
  font-size: 62.5%;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: MuseoSans, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  color: #4D4E4A;
}

a {
  color: #A85F9F;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #8B2F7F;
}

h1 {
  font-size: 4.4rem;
  line-height: 6rem;
  color: #4D4E4A;
}

h2 {
  font-size: 2.2rem;
  line-height: 3.5rem;
  color: #A85F9F;
}

h3 {
  font-size: 2.2rem;
  line-height: 3rem;
  color: #4D4E4A;
}

h4 {
  font-size: 1.8rem;
  line-height: 3rem;
  color: #4D4E4A;
}

h5 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #4D4E4A;
}

h6 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #4D4E4A;
}

img {
  width: inherit;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

figure {
  margin: 0;
}

hr {
  border: none;
  border-bottom: 2px solid #CCC;
}

blockquote {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  border-left: #E6E6E6;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0 0 1rem 0;
  background-color: transparent;
  border-collapse: collapse;
}
table caption {
  margin: 0.8rem 0;
  text-align: left;
  font-style: italic;
  font-size: 1.2rem;
}
table thead th {
  vertical-align: bottom;
  border-bottom: none;
}
table td, table th {
  padding: 1rem 1.2rem;
  border-top: none;
  vertical-align: top;
}
table th {
  text-align: inherit;
}

/* Roboto-Regular */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.eot"); /* IE9 Compat Modes */
  src: local("Roboto-Regular"), local("Roboto-Regular"), url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.woff2") format("woff2"), url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.woff") format("woff"), url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.ttf") format("truetype"), url("../../../assets/fonts/Roboto-Regular/Roboto-Regular.svg#Ubuntu") format("svg"); /* Legacy iOS */
}
/* Roboto-Bold */
@font-face {
  font-family: "Roboto";
  font-style: bold;
  font-weight: 700;
  src: url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.eot"); /* IE9 Compat Modes */
  src: local("Roboto-Bold"), local("Roboto-Bold"), url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.woff2") format("woff2"), url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.woff") format("woff"), url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.ttf") format("truetype"), url("../../../assets/fonts/Roboto-Bold/Roboto-Bold.svg#Ubuntu") format("svg"); /* Legacy iOS */
}
/* Roboto-Italic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.eot"); /* IE9 Compat Modes */
  src: local("Roboto-Italic"), local("Roboto-Italic"), url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.woff2") format("woff2"), url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.woff") format("woff"), url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.ttf") format("truetype"), url("../../../assets/fonts/Roboto-Italic/Roboto-Italic.svg#Ubuntu") format("svg"); /* Legacy iOS */
}
/* Roboto-BoldItalic */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  src: url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.eot"); /* IE9 Compat Modes */
  src: local("Roboto-BoldItalic"), local("Roboto-BoldItalic"), url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.woff2") format("woff2"), url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.woff") format("woff"), url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.ttf") format("truetype"), url("../../../assets/fonts/Roboto-BoldItalic/Roboto-BoldItalic.svg#Ubuntu") format("svg"); /* Legacy iOS */
}
/* MuseoSans-500 */
@font-face {
  font-family: "MuseoSans";
  font-style: normal;
  font-weight: 500;
  src: url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.eot"); /* IE9 Compat Modes */
  src: local("MuseoSans-500"), local("MuseoSans-500"), url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.eot?#iefix") format("embedded-opentype"), url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.woff2") format("woff2"), url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.woff") format("woff"), url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.ttf") format("truetype"), url("../../../assets/fonts/MuseoSans-500/MuseoSans-500.svg#Ubuntu") format("svg"); /* Legacy iOS */
}
/*primary*/
/*secondary*/
/*Tertiary*/
/*purple*/
/*large*/
/*download/access*/
/*icons*/
.btn-primary {
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border: 1px solid #4D4E4A;
  border-radius: 4px;
  background: #4D4E4A;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  border-color: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  background: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  color: #fff;
}

.btn-large {
  padding: 1.7rem 5rem !important;
}

.form-submit {
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.form-submit:hover, .form-submit:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}

.form-submit[data-drupal-selector=edit-preview] {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border: 1px solid #4D4E4A;
  border-radius: 4px;
  background: #4D4E4A;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.form-submit[data-drupal-selector=edit-preview]:hover, .form-submit[data-drupal-selector=edit-preview]:focus {
  border-color: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  background: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  color: #fff;
}

.button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.button:hover, .button:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}
.button {
  min-width: 8rem;
  text-align: center;
}

.btn-primary {
  font-size: 1.3rem;
  min-width: 7rem;
  text-align: center;
}

.btn-secondary {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border: 1px solid #4D4E4A;
  border-radius: 4px;
  background: #4D4E4A;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  border-color: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  background: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  color: #fff;
}
.btn-secondary {
  font-size: 1.3rem;
  min-width: 7rem;
  text-align: center;
}

.secondary {
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border: 1px solid #4D4E4A;
  border-radius: 4px;
  background: #4D4E4A;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.secondary:hover, .secondary:focus {
  border-color: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  background: rgb(102.8355263158, 104.1710526316, 98.8289473684);
  color: #fff;
}
.secondary {
  font-size: 1.3rem;
  min-width: 7rem;
  text-align: center;
}

.btn-tertiary {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}

.header_line .btn-tertiary {
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.header_line .btn-tertiary:hover, .header_line .btn-tertiary:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}
.header_line .btn-tertiary {
  letter-spacing: 0.5px;
}

.form-submit {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.form-submit:hover, .form-submit:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
.form-submit {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.btn-large {
  display: inline-block;
  margin: auto;
  font-size: 1.7rem;
  padding: 1.7rem 5rem;
  border-radius: 0;
  border: 3px solid #8B2F7F;
  background: none;
  text-decoration: none;
  color: #4D4E4A;
  cursor: pointer;
}
.btn-large:hover, .btn-large:focus {
  border-color: #8B2F7F;
  background: #8B2F7F;
  color: #FFF;
  outline: 0;
}

.btn-large-alt {
  display: inline-block;
  margin: auto;
  font-size: 1.7rem;
  padding: 1.7rem 5rem;
  border-radius: 0;
  border: 3px solid #fff;
  background: none;
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
}
.btn-large-alt:hover, .btn-large-alt:focus {
  border-color: #fff;
  background: #fff;
  color: #4D4E4A;
  outline: 0;
}

.button-primary {
  display: inline-block;
  margin: auto;
  font-size: 1.7rem;
  padding: 1.7rem 5rem;
  border-radius: 0;
  border: 3px solid #fff;
  background: none;
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
}
.button-primary:hover, .button-primary:focus {
  border-color: #fff;
  background: #fff;
  color: #4D4E4A;
  outline: 0;
}
.button-primary {
  font-size: 1.6rem;
  padding: 0.7rem 2rem;
  margin: 2rem 0;
}

.btn-purple {
  display: inline-block;
  line-height: 1;
  padding: 1rem 1.6rem;
  border: 1px solid #8B2F7F;
  border-radius: 0px;
  background-color: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.btn-purple:hover, .btn-purple:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
  outline: 0;
}

.content-button {
  display: inline-block !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.content-button:hover, .content-button:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}
.content-button {
  min-width: 8rem;
  text-align: center;
}
.content-button:hover {
  background: #A85F9F !important;
}

.btn-check {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.btn-check:hover, .btn-check:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
.btn-check {
  padding-left: 4.4rem;
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}
.btn-check:hover, .btn-check:focus {
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}

.btn-transpositions {
  display: inline-block;
  line-height: 1;
  padding: 1rem 1.6rem;
  border: 1px solid #8B2F7F;
  border-radius: 0px;
  background-color: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.btn-transpositions:hover, .btn-transpositions:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
  outline: 0;
}
.btn-transpositions {
  padding-left: 4.4rem;
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}
.btn-transpositions:hover, .btn-transpositions:focus {
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}

.btn-rectifications {
  display: inline-block;
  line-height: 1;
  padding: 1rem 1.6rem;
  border: 1px solid #8B2F7F;
  border-radius: 0px;
  background-color: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}
.btn-rectifications:hover, .btn-rectifications:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
  outline: 0;
}
.btn-rectifications {
  padding-left: 4.4rem;
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}
.btn-rectifications:hover, .btn-rectifications:focus {
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
}

.btn-download {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
.btn-download:hover, .btn-download:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
.btn-download {
  padding-left: 4rem;
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.btn-download:hover, .btn-download:focus {
  background-image: url(../../../assets/icons/checkmark.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}

.download-set a {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
.download-set a:hover, .download-set a:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
.download-set a {
  padding-left: 3.5rem;
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.download-set a:hover, .download-set a:focus {
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.download-set a {
  margin: 2rem 0 2rem -1rem;
}

a.download {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
a.download:hover, a.download:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
a.download {
  padding-left: 3.5rem;
  background-image: url(../../../assets/icons/download-white.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
a.download:hover, a.download:focus {
  background-image: url(../../../assets/icons/download-white.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
a.download {
  margin: 0;
}

.wto-data-export-form input[type=submit] {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.wto-data-export-form input[type=submit]:hover, .wto-data-export-form input[type=submit]:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
.wto-data-export-form input[type=submit] {
  padding-left: 4rem;
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.wto-data-export-form input[type=submit]:hover, .wto-data-export-form input[type=submit]:focus {
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.wto-data-export-form input[type=submit] {
  padding-top: 1.2rem;
  padding-bottom: 1.1rem;
}

.wto-data-export-changes-form input[type=submit] {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.wto-data-export-changes-form input[type=submit]:hover, .wto-data-export-changes-form input[type=submit]:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
.wto-data-export-changes-form input[type=submit] {
  padding-left: 4rem;
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.wto-data-export-changes-form input[type=submit]:hover, .wto-data-export-changes-form input[type=submit]:focus {
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.wto-data-export-changes-form input[type=submit] {
  padding-top: 1.2rem;
  padding-bottom: 1.1rem;
}

.export-xls {
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  padding: 0.6rem 2.2rem 0.5rem;
  border: 1px solid #58ABAC;
  border-radius: 4px;
  background: #58ABAC;
  color: #FFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.export-xls:hover, .export-xls:focus {
  border-color: #5fc5c6;
  background: #5fc5c6;
  color: #fff;
  outline: 0;
}
.export-xls {
  padding-left: 4rem;
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.export-xls:hover, .export-xls:focus {
  background-image: url(../../../assets/icons/export.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}

.arrow {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
.arrow:hover, .arrow:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
.arrow {
  padding-left: 3.5rem;
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.arrow:hover, .arrow:focus {
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.arrow {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.full-width {
  display: block;
  width: 100%;
}

.double-line {
  line-height: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.disabled {
  pointer-events: none;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.3;
}

ul.tabs {
  margin: 2rem 0;
  padding: 0;
  border-bottom: 2px solid #E6E6E6;
  font-size: 0;
}
ul.tabs li {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
ul.tabs li:last-child a {
  border-right: 2px solid #E6E6E6;
}
ul.tabs a {
  display: block;
  position: relative;
  top: 2px;
  padding: 1rem 2rem;
  background: #D0D0D0;
  border: 2px solid #E6E6E6;
  border-right: none;
  border-bottom: 2px solid #E6E6E6;
  border-radius: 0 0 0 0;
  color: #3E474F;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-transition: all ease 300ms;
  transition: all ease 300ms;
  text-decoration: none;
}
ul.tabs a:hover, ul.tabs a:focus {
  border-color: #E6E6E6;
  background: #fff;
  color: #4D4E4A;
}
ul.tabs a.is-active {
  border-top-color: #A85F9F;
  border-bottom-color: #fff;
  border-left-color: #E6E6E6;
  border-right-color: #E6E6E6;
  background: #FFF;
  color: #4D4E4A;
}

@media (max-width: 576px) {
  ul.tabs {
    border: none !important;
  }
  ul.tabs li {
    display: block !important;
    width: 100% !important;
  }
  ul.tabs a {
    border: 1px solid #E6E6E6 !important;
    border-bottom: none !important;
    border-radius: 0 !important;
  }
  ul.tabs a:hover, ul.tabs a:focus {
    border-color: #E6E6E6 !important;
    background: #fff !important;
    color: #4D4E4A !important;
  }
  ul.tabs li:first-child a {
    border-radius: 0 0 0 0 !important;
  }
  ul.tabs li:last-child a {
    border-bottom: 1px solid #E6E6E6 !important;
    border-radius: 0 0 0 0 !important;
  }
}
ul.menu {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}
ul.menu li.menu-item {
  display: inline-block;
  font-size: 1.6rem;
}

.section-item, .paragraph-document .file-item .lang-set .lang, .paragraph-document .file-item .lang-set, .paragraph-document .file-item, .form--inline, #block-wto-ma-content article .header_line .title_group h1, #block-wto-ma-content article .header_line .member_link, .region-header .block-language ul.links, .region-header .block-system-branding-block, .region-header, .primary-menu ul.menu li.menu-item .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-wrapper {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.navigation-wrapper .container {
  padding-left: unset;
  padding-right: unset;
  max-width: 1152px;
}

.primary-menu ul.menu {
  position: relative;
}
@media screen and (min-width: 768px) {
  .primary-menu ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.primary-menu ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}
.primary-menu ul.menu li.menu-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  border-left: 1px solid #E6E6E6;
  position: relative;
  width: 100%;
  height: 7.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.primary-menu ul.menu li.menu-item a {
  max-height: 7.2rem;
  line-height: 1.3;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  color: #3E474F;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.primary-menu ul.menu li.menu-item a:hover, .primary-menu ul.menu li.menu-item a:active {
  color: #8B2F7F;
  cursor: pointer;
}
.primary-menu ul.menu li.menu-item:last-child {
  border-right: 1px solid #E6E6E6;
}
.primary-menu ul.menu li.menu-item .menu {
  visibility: hidden;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  justify-items: flex-start;
  position: absolute;
  z-index: 9999;
  background: #fff;
  border-left: none;
  margin-left: -1px;
  top: 7.2rem;
}
.primary-menu ul.menu li.menu-item .menu li.menu-item {
  padding-top: 0;
  width: 31rem;
}
.primary-menu ul.menu li.menu-item .menu li.menu-item .menu {
  top: 0;
  left: 100%;
}
.primary-menu ul.menu li.menu-item .menu a {
  width: 31rem;
  text-align: left;
  padding-left: 3.8rem;
  border-bottom: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
}
.primary-menu ul.menu li.menu-item .menu li.menu-item:last-child {
  border-right: none;
}
.primary-menu ul.menu li.menu-item .menu li.menu-item:first-child {
  /*border-top: 1px solid $borderGlobalColor;*/
}
.primary-menu ul.menu li.menu-item .menu li.menu-item:first-child a {
  border-top: 1px solid #E6E6E6;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail {
  -webkit-box-shadow: inset 0px -4px 0px 0px #8B2F7F;
  box-shadow: inset 0px -4px 0px 0px #8B2F7F;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail a {
  color: #8B2F7F;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item {
  -webkit-box-shadow: inset 0px 0 0px 0px #8B2F7F;
  box-shadow: inset 0px 0 0px 0px #8B2F7F;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a {
  color: #3b3b3b;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a:hover, .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a:active {
  color: #8B2F7F;
}
.primary-menu ul.menu li.menu-item.menu-item--active-trail .menu .menu-item--active-trail > a {
  color: #8B2F7F !important;
}
.primary-menu ul.menu li.menu-item--expanded:hover > .menu {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.menu--resources ul.menu.menu-tile {
  padding: 0;
  list-style: none;
  border: none;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: -15px;
  margin-right: -15px;
}
.menu--resources ul.menu.menu-tile li.menu-item {
  line-height: 1;
  border: none;
  margin-right: 0rem;
  margin-left: 0rem;
  margin-bottom: 3rem;
}
.menu--resources ul.menu.menu-tile li.menu-item a {
  min-height: 24rem;
  text-align: center;
  display: block;
  padding: 17rem 2rem 2rem;
  font-size: 2.2rem;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: url(./../../../assets/icons/checkmark.svg) no-repeat center transparent;
  background-size: 5.2rem;
  background-position-y: 5rem;
  background-color: #58ABAC;
}
.menu--resources ul.menu.menu-tile li.menu-item a:hover, .menu--resources ul.menu.menu-tile li.menu-item a:active {
  background-position-y: 4rem;
  background-color: rgb(77.854, 155.708, 156.646);
}

.icon-clipboard {
  background-image: url(../../../assets/icons/clipboard.svg) !important;
}

.icon-copy {
  background-image: url(../../../assets/icons/copy.svg) !important;
}

.icon-link {
  background-image: url(../../../assets/icons/link.svg) !important;
}

.icon-megaphone {
  background-image: url(../../../assets/icons/megaphone.svg) !important;
}

.icon-faq {
  background-image: url(../../../assets/icons/faq.svg) !important;
}

.icon-documents {
  background-image: url(../../../assets/icons/documents-files2.svg) !important;
  background-size: 6rem !important;
}

#header {
  background: #fff;
}
#header .logo {
  display: inline-block;
  width: 20rem;
  height: 8rem;
  background-repeat: no-repeat;
  background-position: left center;
  background: url("../../../logo.svg") no-repeat center;
  background-size: contain;
  text-indent: -9999em;
}

#header {
  position: relative;
}

#block-subcolonel-branding {
  display: none;
}

.region-header {
  margin: 2rem auto;
  z-index: 997;
}
.region-header .block-system-branding-block {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.region-header .block-system-branding-block .site-logo {
  display: block;
  width: 20rem;
  height: 8rem;
  padding: 1rem;
}
.region-header .block-system-branding-block .separator {
  float: left;
  display: block;
  margin: 1rem 2.5rem 1.8rem 1.8rem;
  width: 1px;
  height: 5.4rem;
  background: #D0D0D0;
}
.region-header .block-system-branding-block .site-name a {
  display: block;
  width: 16rem;
  height: 7.4rem;
  padding: 1rem 1rem 1rem 0rem;
  background: url(./../../../assets/gs-logo.svg) no-repeat center center;
  background-size: 15rem;
  text-indent: -9999px;
}
.region-header .block-language ul.links {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.region-header .block-language ul.links li {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.region-header .block-language ul.links li a {
  color: #3b3b3b;
}
.region-header .block-language ul.links li + li {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid #D0D0D0;
}
.region-header .block-language ul.links .is-active a {
  color: #8B2F7F;
}

@media (max-width: 576px) {
  #header .container {
    padding: 0;
  }
  .region-header {
    margin: 0 auto;
  }
  .region-header .block-system-branding-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .region-header .block-system-branding-block .site-logo {
    width: 100%;
    height: 10rem;
    padding: 0;
    background: #F7F7F7;
  }
  .region-header .block-system-branding-block .site-logo img {
    margin-top: 2rem;
    width: 23rem;
    height: 6rem;
  }
  .region-header .block-system-branding-block .separator {
    display: none;
  }
  .region-header .block-system-branding-block .site-name a {
    margin: 1rem;
    height: 5rem;
  }
}
footer {
  background: #F7F7F7;
  padding: 5rem 0;
}

.block-wto-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1152px;
  margin: auto;
}
.block-wto-footer p {
  line-height: 1.25;
  font-size: 1.5rem;
  margin: 0;
}
.block-wto-footer p a {
  text-decoration: underline;
  color: #4D4E4A;
}
.block-wto-footer p a:hover, .block-wto-footer p a:focus {
  text-decoration: none;
}
.block-wto-footer .footer-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block-wto-footer .footer-column-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-wto-footer .footer-column-right > .footer-branding > .site-logo > a > img {
  width: inherit;
  height: auto;
  max-width: 70%;
  vertical-align: middle;
  border-style: none;
  float: right;
}
.block-wto-footer .footer-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4.5rem;
}
.block-wto-footer .footer-branding .site-logo > a > img {
  width: inherit;
  height: auto;
  max-width: 70%;
  vertical-align: middle;
  border-style: none;
  float: right;
}
.block-wto-footer .footer-branding .site-logo a {
  display: block;
  width: 22rem;
  height: 7rem;
  padding: 1rem;
  background: url(./../../../logo.svg) no-repeat center center;
  background-size: 20rem;
}
.block-wto-footer .footer-branding .separator {
  float: left;
  display: block;
  margin: 1rem 2.5rem 1.8rem 1.8rem;
  width: 1px;
  height: 5.4rem;
  background: #D0D0D0;
}
.block-wto-footer .footer-branding .site-name a {
  display: block;
  width: 16rem;
  height: 7.4rem;
  padding: 1rem 1rem 1rem 0rem;
  background: url(./../../../assets/gs-logo.svg) no-repeat center center;
  background-size: 15rem;
  text-indent: -9999px;
}

@media (max-width: 768px) {
  .block-wto-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-wto-footer .footer-branding {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-wto-footer .footer-branding .site-logo, .block-wto-footer .footer-branding .site-name {
    margin-top: 3rem;
  }
  .block-wto-footer .footer-branding .site-logo a, .block-wto-footer .footer-branding .site-name a {
    background-size: 100%;
  }
  .block-wto-footer .footer-branding .separator {
    display: none;
  }
  .block-wto-footer .footer-right {
    padding-top: 3rem;
  }
}
#menu-toggle {
  position: relative;
  width: 3rem;
  height: 2rem;
}

#menu-mobile {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  padding: 4rem 2.5rem;
  cursor: pointer;
  color: #000;
  background: #fff;
}
#menu-mobile .label {
  display: block;
  float: left;
  margin-right: 10px;
}
#menu-mobile .inner {
  float: left;
}
#menu-mobile .icon {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 8px;
  background: #8B2F7F;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#menu-mobile .icon.first {
  position: absolute;
  top: 0;
}
#menu-mobile .icon.middle {
  position: absolute;
  top: 9px;
}
#menu-mobile .icon.last {
  position: absolute;
  top: 18px;
}
#menu-mobile:hover .icon.first, #menu-mobile:focus .icon.first {
  top: -2px;
}
#menu-mobile:hover .icon.last, #menu-mobile:focus .icon.last {
  top: 20px;
}

#menu-phone {
  opacity: 0;
  z-index: 998;
  visibility: hidden;
  position: static;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  background: #000;
  padding: 0;
  overflow-x: hidden;
  overflow: auto;
}

@media screen and (max-width: 767px) {
  #menu-mobile {
    display: block;
    z-index: 999;
  }
  .with-menu-phone #menu-phone {
    visibility: visible;
    opacity: 1;
  }
  .with-menu-phone #menu-toggle {
    color: #8B2F7F;
  }
  .with-menu-phone #menu-toggle .icon {
    background: #8B2F7F;
  }
  .with-menu-phone #menu-toggle .icon.middle {
    display: none;
  }
  .with-menu-phone #menu-toggle .icon.first {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 9px;
  }
  .with-menu-phone #menu-toggle .icon.last {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
  }
  .navigation-wrapper .container {
    padding: 0;
  }
  .primary-menu ul.menu {
    position: absolute;
    display: none;
    left: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #fff;
    z-index: 998;
    width: 100%;
  }
  .primary-menu ul.menu li.menu-item {
    border-left: none;
    border-bottom: 1px solid #E6E6E6;
    height: auto;
  }
  .primary-menu ul.menu li.menu-item a {
    padding: 3rem 0;
    font-size: 1.9rem;
    font-weight: normal;
    color: #A85F9F;
  }
  .primary-menu ul.menu li.menu-item:last-child {
    border-right: none;
  }
  .primary-menu ul.menu li.menu-item .menu {
    display: none;
  }
  .primary-menu ul.menu li.menu-item .menu a {
    width: 100%;
  }
  .primary-menu ul.menu li.menu-item--expanded:hover > .menu {
    display: none !important;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail {
    -webkit-box-shadow: inset 0px 0 0px 0px #8B2F7F;
    box-shadow: inset 0px 0 0px 0px #8B2F7F;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail a {
    color: #3b3b3b;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item {
    -webkit-box-shadow: inset 0px 0 0px 0px #8B2F7F;
    box-shadow: inset 0px 0 0px 0px #8B2F7F;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a {
    color: #3b3b3b;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a:hover, .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item a:active {
    color: #8B2F7F;
  }
  .primary-menu ul.menu li.menu-item.menu-item--active-trail .menu li.menu-item.menu-item--active-trail a {
    color: #4D4E4A;
  }
  .region-header .block-system-branding-block {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-left: 0;
  }
  .region-header .block-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 12rem;
    width: 100%;
    margin: auto;
    background: #fff;
  }
  .region-header .block-language ul.links {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .with-menu-phone .primary-menu ul.menu {
    display: block;
    left: 0;
  }
  .with-menu-phone .region-header {
    min-height: 15rem;
  }
  .with-menu-phone .region-header .block-system-branding-block {
    margin-left: -200%;
  }
  .with-menu-phone .region-header .block-system-branding-block .site-logo {
    background: #fff;
  }
  .with-menu-phone .region-header .block-language {
    left: 0;
  }
}
.header_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header_line h1 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  font-weight: normal;
}
.node.member .header_line {
  padding-top: 3.7rem;
  margin-bottom: 3.7rem;
}

h1 span {
  font-weight: normal;
}

@media (max-width: 768px) {
  #block-wto-ma-content article .header_line {
    margin-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}
#block-wto-ma-content article .header_line .member_link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  #block-wto-ma-content article .header_line .member_link {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 2rem;
  }
}
#block-wto-ma-content article .header_line .member_link .all-members {
  white-space: nowrap;
  margin-top: 0.8rem;
}
#block-wto-ma-content article .header_line .title_group {
  margin-right: 4rem;
}
#block-wto-ma-content article .header_line .title_group h1 {
  font-weight: normal;
  margin: 0;
  line-height: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#block-wto-ma-content article .header_line .title_group h1 .field--name-title {
  margin-right: 1.5rem;
}
#block-wto-ma-content article .header_line .title_group h1 .schedule-label {
  display: block;
  margin-top: 0.5rem;
  margin-right: 1rem;
  background: #8B2F7F;
  color: #fff;
  font-size: 2rem;
  border-radius: 6px;
  padding: 0.8rem 1rem;
}

h2#block-resources-menu {
  margin: 7rem 0 2rem;
}

.extra {
  margin-top: -2rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .extra {
    margin-top: 1rem;
  }
}
.extra a {
  color: inherit;
  text-decoration: underline;
}
.extra a:hover {
  text-decoration: none;
}
.extra .schedule-label {
  display: inline-block;
  line-height: 1;
  background: #8B2F7F;
  color: #fff;
  font-size: 2rem;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-weight: normal;
}
.extra {
  /*.eu-text {
      &::after {
          content: "";
          display: block;
          height: 65px;
          border-left: 2px solid $accent;
          margin: 0.5rem 0 1.5rem;
      }
  }*/
}
.extra p {
  margin-top: 0.8rem;
  line-height: 1.3;
}

.extra-schedules {
  line-height: 1.8;
}
.extra-schedules span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 0.5rem;
  min-width: 6.1rem;
  color: #9E9E9E;
}
.extra-schedules .schedule-label {
  display: inline-block;
  line-height: 1;
  background: #9E9E9E;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 4px;
  padding: 0.6rem 0.8rem;
}
.extra-schedules .extra-schedule-title {
  color: #4D4E4A;
  font-size: 1.9rem;
  font-weight: bold;
  margin-top: 1.2rem;
}
.extra-schedules .extra-schedule-subtitle {
  color: #4D4E4A;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1.2rem;
}

.extra .accordion-item {
  border: none;
}
@media (max-width: 768px) {
  .extra .accordion-item {
    margin-top: 1rem;
  }
}
.extra .accordion-item .accordion-header {
  background: #F7F7F7;
  font-size: 1.7rem;
  border-radius: 6px;
  padding: 0.3rem 1.4rem;
}
.extra .accordion-item .accordion-header .accordion-toggle {
  margin-top: 0.8rem;
  background-size: 1.5rem;
}
.extra .accordion-item .accordion-body {
  padding: 1rem 0rem 2rem;
  background: #F7F7F7;
  border-radius: 0 0 6px 6px;
}
.extra .accordion-item .row {
  margin: 0;
}
.extra .open .accordion-header {
  border-radius: 6px 6px 0 0;
}

.eu-separator {
  display: block;
  height: 65px;
  border-left: 2px solid #A85F9F;
  margin: 0.5rem 0 1.5rem;
}

/*"yes" if you want an home icon*/
.breadcrumb {
  margin: 2rem 0;
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
.breadcrumb li:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 12px;
  height: 12px;
  margin: 0 5px 0 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../../assets/breadcrumb/arrow.svg");
}
.breadcrumb li:first-child a {
  display: inline-block;
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../../assets/breadcrumb/home.svg");
  text-indent: -9999em;
}
.breadcrumb li:first-child:before {
  display: none;
}
.breadcrumb li:last-child a {
  color: #000;
}

.form--inline .form-item {
  max-width: 600px;
}

.field--name-field-title {
  color: #A85F9F;
  font-weight: 700;
  font-size: 2.7rem;
  margin: 2rem 0;
}

/*input*/
/*textarea*/
/*fieldset*/
input {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
}

textarea {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
}

fieldset {
  padding: 2rem;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
}

textarea,
select,
.chosen-container,
input[type=text],
input[type=tel],
input[type=file],
input[type=email],
input[type=number],
input[type=password] {
  width: 100% !important;
  max-width: 600px !important;
  background: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  textarea,
  select,
  .chosen-container,
  input[type=text],
  input[type=tel],
  input[type=file],
  input[type=email],
  input[type=number],
  input[type=password] {
    max-width: 100% !important;
  }
}

.ajax-progress-throbber {
  display: block;
  width: 18px;
  height: 18px;
  margin: 5px auto;
}
.ajax-progress-throbber .throbber {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  background: url("../../../assets/form/loading.svg") no-repeat center;
  background-size: contain;
}

.ajax-progress-fullscreen {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background: url("../../../assets/form/loading.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 992px) {
  .ajax-progress-fullscreen {
    margin-left: -20px;
  }
}

h3.view-title {
  margin-top: 6rem;
}

.form--inline {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.form--inline div {
  margin-right: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.form--inline div .chosen-container-multi {
  margin-bottom: 0;
}
.form--inline div .chosen-container-multi .chosen-choices {
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E6E6E6;
  padding: 0.5rem 1rem 0.4rem 1rem;
}
.form--inline div .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  font-family: MuseoSans, Helvetica, sans-serif;
  color: #747474;
  min-width: 200px; /* make sure text is not cut in Chrome 100% zoom */
}
.form--inline div .chosen-container {
  font-size: 14px;
  max-width: 700px !important;
}
.form--inline div .chosen-container .chosen-results li.highlighted {
  background: #8B2F7F;
}
.form--inline div label {
  display: block;
  margin: 1rem 0;
  font-size: 1.4rem;
  color: #747474;
}
.form--inline div.form-actions {
  margin-right: 0;
}
.form--inline div.form-actions input:nth-of-type(2) {
  margin-right: 0;
}
.form--inline .form-item {
  margin-right: 2.5rem;
  margin-top: 0;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .form--inline .form-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.form--inline .form-item label {
  display: block;
  margin: 1rem 0;
  font-size: 1.4rem;
  color: #747474;
}
.form--inline .form-item:last-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 0.5rem;
}
.form--inline .form-item:last-child label {
  display: inline;
}
.form--inline div:not([class]) {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.form--inline .form-item-member {
  width: 545px;
}
.form--inline .form-item-status {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 150px;
          flex: 1 1 150px;
}

.view-filters {
  padding: 1rem 2rem;
  border: 3px solid #F7F7F7;
}

.form-type-checkbox input {
  float: left;
  margin-right: 0.7rem;
  margin-top: 0.2rem;
}

.js-form-type-select {
  position: relative;
  background: transparent;
}
.js-form-type-select .selectbutton {
  padding: 1rem 1rem;
  font-size: 1.4rem;
  color: #747474;
  border: 1px solid #E6E6E6;
}
.js-form-type-select::before {
  content: "";
  position: absolute;
  height: 3.8rem;
  right: 3.8rem;
  bottom: 0;
  border-left: 1px solid #E6E6E6;
  z-index: 1;
}
.js-form-type-select.form-item-member::before {
  border: none;
}
.js-form-type-select select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  border: 1px solid #E6E6E6;
  padding: 1rem 4.5rem 1rem 1.1rem;
  font-size: 1.4rem;
  background: url(../../../assets/icons/down-arrow.svg) no-repeat center right 1.1rem !important;
  background-size: 1.5rem !important;
  color: #747474;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
.js-form-type-select select:focus {
  outline: none;
}

.js-form-item-rectifs-modifs::after {
  z-index: 1;
}
.js-form-item-rectifs-modifs .js-toggle-list {
  position: relative;
  display: block;
  background: url(../../../assets/icons/down-arrow.svg) no-repeat center right 1.1rem !important;
  background-size: 1.5rem !important;
  border: 1px solid #E6E6E6;
  padding: 1rem;
  font-size: 1.4rem;
  color: #747474;
  cursor: pointer;
}
.js-form-item-rectifs-modifs select {
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.js-form-item-rectifs-modifs select.open {
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

@-moz-document url-prefix() {
  .js-toggle-list {
    line-height: 1.3;
  }
}
.view-display-id-all_documents .view-header,
.view-display-id-all_documents_eu .view-header,
.view-by-status .view-header,
.view-changes .view-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F7F7F7;
  padding: 1rem 2rem;
  color: #9E9E9E;
}
@media (max-width: 768px) {
  .view-display-id-all_documents .view-header,
  .view-display-id-all_documents_eu .view-header,
  .view-by-status .view-header,
  .view-changes .view-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.view-display-id-all_documents .view-header span,
.view-display-id-all_documents_eu .view-header span,
.view-by-status .view-header span,
.view-changes .view-header span {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  line-height: 4.5rem;
}
.view-display-id-all_documents .view-header span .tooltip,
.view-display-id-all_documents_eu .view-header span .tooltip,
.view-by-status .view-header span .tooltip,
.view-changes .view-header span .tooltip {
  top: 5px;
}
.view-display-id-all_documents .view-header a,
.view-display-id-all_documents_eu .view-header a,
.view-by-status .view-header a,
.view-changes .view-header a {
  margin-left: 1.6rem;
}
@media (max-width: 768px) {
  .view-display-id-all_documents .view-header input, .view-display-id-all_documents .view-header .button,
  .view-display-id-all_documents_eu .view-header input,
  .view-display-id-all_documents_eu .view-header .button,
  .view-by-status .view-header input,
  .view-by-status .view-header .button,
  .view-changes .view-header input,
  .view-changes .view-header .button {
    margin: 1rem 0;
  }
}

.view-by-status .export-xls {
  -webkit-box-ordinal-group: 100;
      -ms-flex-order: 99;
          order: 99;
}

.view-content {
  margin-top: 3rem;
}

.tab .view-content {
  margin-top: 0;
}

#views-exposed-form-initial-wto-schedules-block-initial .form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
}
#views-exposed-form-initial-wto-schedules-block-initial .form-item-member {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.pager a {
  color: #4D4E4A;
  text-decoration: none;
}
.pager a:hover, .pager a:focus {
  color: #A85F9F;
  text-decoration: none;
}
.pager .pager__items {
  clear: both;
  margin: 2rem 0;
  padding: 1.2rem 0;
  border-bottom: 4px solid #f4f4f4;
  text-align: center;
}
.pager .pager__item {
  display: inline;
  padding: 0 0.5rem;
  text-align: center;
}
.pager .pager__item--first,
.pager .pager__item--last {
  display: none;
}
.pager .pager__item.is-active {
  color: #A85F9F;
  font-weight: 700;
}
.pager .pager__item--previous a {
  display: inline-block;
}
.pager .pager__item--previous a:before,
.pager .pager__item--next a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pager .pager__item--previous a:before {
  margin: 0 5px 0 0;
  background-image: url("../../../assets/pager/left-arrow.svg");
}
.pager .pager__item--next a:after {
  margin: 0 0 0 5px;
  background-image: url("../../../assets/pager/right-arrow.svg");
}

.pager a {
  font-size: 1.4rem;
}
.pager .pager__items {
  border-bottom: 0;
  margin: 1rem 0 0;
}
.pager .pager__item--previous, .pager .pager__item--next {
  font-size: 1.3rem;
  padding: 0 2.5rem;
  margin: 0 2rem;
}
.pager .pager__item--previous a, .pager .pager__item--next a {
  font-size: 1.3rem;
}
.pager .pager__item--previous {
  border-right: 1px solid #D0D0D0;
}
.pager .pager__item--next {
  border-left: 1px solid #D0D0D0;
}

.progress__track {
  border-color: #b3b3b3;
  border-radius: 10em;
  background-color: #f2f1eb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e7e7df), to(#f0f0f0));
  background-image: linear-gradient(#e7e7df, #f0f0f0);
  -webkit-box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.16);
          box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.16);
}

.progress__bar {
  border: 1px #07629a solid;
  background: #057ec9;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.15))), -webkit-gradient(linear, left top, right bottom, from(#0094f0), color-stop(25%, #0094f0), color-stop(25%, #007ecc), color-stop(50%, #007ecc), color-stop(50%, #0094f0), color-stop(75%, #0094f0), to(#0094f0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to right bottom, #0094f0 0%, #0094f0 25%, #007ecc 25%, #007ecc 50%, #0094f0 50%, #0094f0 75%, #0094f0 100%);
  background-size: 40px 40px;
  margin-top: -1px;
  margin-left: -1px; /* LTR */
  padding: 0 1px;
  height: 16px;
  border-radius: 10em;
  -webkit-animation: animate-stripes 3s linear infinite;
  -moz-animation: animate-stripes 3s linear infinite;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

[dir=rtl] .progress__bar {
  margin-left: 0;
  margin-right: -1px;
  animation-direction: reverse;
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
}

/**
 * Progress bar animations.
 */
@-webkit-keyframes animate-stripes {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, -80px 0;
  }
}
@keyframes animate-stripes {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, -80px 0;
  }
}
/* Visual styling for the Password strength indicator */
.password-strength__meter {
  margin-top: 0.5em;
  background-color: #ebeae4;
}

.password-strength__indicator {
  background-color: #77b259;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

.password-strength__indicator.is-weak {
  background-color: #e62600;
}

.password-strength__indicator.is-fair {
  background-color: #e09600;
}

.password-strength__indicator.is-good {
  background-color: #0074bd;
}

.password-strength__indicator.is-strong {
  background-color: #77b259;
}

.password-confirm,
.password-field,
.password-strength,
.password-confirm-match {
  width: 55%;
}

.password-suggestions {
  padding: 0.2em 0.5em;
  margin: 0.7em 0;
  max-width: 34.7em;
  border: 1px solid #b4b4b4;
}

.password-suggestions ul {
  margin-bottom: 0;
}

.confirm-parent,
.password-parent {
  clear: left; /* LTR */
  margin: 0;
  max-width: 33em;
  overflow: hidden;
}

[dir=rtl] .confirm-parent,
[dir=rtl] .password-parent {
  clear: right;
}

/* Styling for the status indicator of the passwords match test.  */
.password-confirm .ok {
  color: #325e1c;
  font-weight: bold;
}

.password-confirm .error {
  color: #a51b00;
  font-weight: bold;
}

/*default*/
/*status*/
/*warning*/
/*error*/
.messages {
  border: none;
  border-radius: 4px;
  margin: 2rem 0;
  padding: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #4d4e4a;
  color: #fff;
}

[dir=rtl] .messages {
  text-align: right;
}

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.messages--status {
  background: #8fc680;
  color: #fff;
}
.messages--status a {
  color: #fff;
  text-decoration: underline;
}

.messages--warning {
  background: #de975a;
  color: #fff;
}
.messages--warning a {
  color: #fff;
  text-decoration: underline;
}

.messages--error {
  background: #fc5457;
  color: #fff;
}
.messages--error a {
  color: #fff;
  text-decoration: underline;
}

.links.inline {
  margin: 0;
  padding: 0;
}
.links.inline li {
  display: inline-block;
  margin: 0 2rem 0 0;
  font-size: 1.6rem;
}
.links.inline a {
  color: #A85F9F;
  text-decoration: none;
  font-weight: 700;
}
.links.inline a:hover, .links.inline a:focus {
  color: #8B2F7F;
  text-decoration: underline;
}

.views-view-table td {
  font-size: 1.4rem;
  padding: 1.1rem 1.2rem;
  color: #747474;
  line-height: 1.8;
}
.views-view-table td a {
  padding: 0;
}
.views-view-table td a:hover {
  background-color: transparent;
}
.views-view-table td.view-field-member-schedules-table-column {
  white-space: normal;
}
.views-view-table th {
  background: #E8E3E9;
  padding: 1.1rem 1.2rem;
  color: #3b3b3b;
  font-size: 1.4rem;
  line-height: 1.8;
  white-space: nowrap;
}
.views-view-table th a {
  color: #3b3b3b;
}
.views-view-table tr:nth-child(even) {
  background: #F7F7F7;
  /*.last-updated-column {
      .hover {
          background: $greyPaler;
      }
  }*/
}

.tablesort {
  width: 16px;
  height: 12px;
  display: inline-block;
  background-size: 80%;
  margin-left: 1rem;
}

td.is-active {
  background: transparent;
}

.download-column {
  height: 2.5rem;
  white-space: nowrap;
}

.views-field-field-procedure-dist-date {
  letter-spacing: -0.5px;
}

.views-field-field-procedure-schedule .token:not(:last-child):after {
  content: ",";
  margin-right: 5px;
}

.views-field-field-alphabetic-order a {
  white-space: nowrap;
}

span.tooltip {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0 0 0 1rem;
  top: 0.4rem;
  background: url(../../../assets/icons/info.svg) no-repeat center center;
  background-size: cover;
  cursor: pointer;
  border: 1px solid #8B2F7F;
  border-radius: 100px;
  /* tooltip class fix */
  position: relative;
  opacity: 1;
  left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
span.tooltip:hover {
  opacity: 0.9;
}

.padlock {
  display: inline-block;
  width: 2rem;
  height: 2.5rem;
  background: url(../../../assets/icons/lock.svg) no-repeat center center;
  margin: 0 0.1rem;
}

a.external {
  display: inline-block;
  width: 2rem;
  height: 2.4rem;
  background: url(../../../assets/icons/external.svg) no-repeat center center;
  background-size: 1.8rem;
  margin: 0.1rem 0 0 2.9rem;
}
a.external:hover {
  background-color: transparent;
  opacity: 0.8;
}

.views-field-fields-access-document-icon a.external {
  margin: 0 auto;
}

td.views-field-fields-access-document-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a.view-more {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
a.view-more:hover, a.view-more:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
a.view-more {
  padding-left: 3.7rem;
  background-image: url(../../../assets/icons/plus.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.7rem;
}
a.view-more:hover, a.view-more:focus {
  background-image: url(../../../assets/icons/plus.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.7rem;
}
a.view-more {
  font-size: 1.8rem;
  text-indent: -999rem;
  padding-right: 0;
  margin-left: 2rem;
  margin-top: 1px;
  cursor: pointer;
  width: 2.8rem;
}
a.view-more:hover, a.view-more:focus {
  opacity: 0.8;
}

a.download-set {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
a.download-set:hover, a.download-set:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
a.download-set {
  padding-left: 3.7rem;
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.7rem;
}
a.download-set:hover, a.download-set:focus {
  background-image: url(../../../assets/icons/download2.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.7rem;
}
a.download-set {
  padding-left: 1rem;
  margin: 0 0.2rem 0 0.3rem;
  height: 1.8rem;
  background-position: 0;
  position: relative;
  top: 4px;
  width: 20px;
}
a.download-set:hover, a.download-set:focus {
  opacity: 0.8;
  background-position: 0;
}

.cert-wrapper a {
  display: inline-block;
  line-height: 130%;
  font-size: 1.4rem;
  color: #8B2F7F;
  padding: 0 1rem 0 0;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
}
.cert-wrapper a:hover, .cert-wrapper a:focus {
  outline: 0;
  color: #A85F9F;
  text-decoration: none;
  background-color: transparent;
}
.cert-wrapper a {
  padding-left: 3.5rem;
  background-image: url(../../../assets/icons/external.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.cert-wrapper a:hover, .cert-wrapper a:focus {
  background-image: url(../../../assets/icons/external.svg);
  background-position: 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.cert-wrapper a {
  color: #4D4E4A;
  margin-right: 2rem;
}
.cert-wrapper a:hover, .cert-wrapper a:focus {
  color: rgb(102.8355263158, 104.1710526316, 98.8289473684);
}

.view-display-id-home_latest_pending td,
.view-display-id-block_other td,
.view-display-id-block_1980 td {
  position: relative;
  overflow: visible;
}
.view-display-id-home_latest_pending td span.full,
.view-display-id-block_other td span.full,
.view-display-id-block_1980 td span.full {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  position: absolute;
  padding-right: 10px;
  background: #fff;
  color: #444;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 768px) {
  .view-display-id-home_latest_pending td span.full,
  .view-display-id-block_other td span.full,
  .view-display-id-block_1980 td span.full {
    opacity: 1;
    background: #E6E6E6;
    color: #747474;
  }
}
.view-display-id-home_latest_pending td:hover span.full,
.view-display-id-block_other td:hover span.full,
.view-display-id-block_1980 td:hover span.full {
  opacity: 1;
}
.view-display-id-home_latest_pending tr:nth-of-type(even) span.full,
.view-display-id-block_other tr:nth-of-type(even) span.full,
.view-display-id-block_1980 tr:nth-of-type(even) span.full {
  background: #F7F7F7;
}
@media (max-width: 768px) {
  .view-display-id-home_latest_pending tr:nth-of-type(even) span.full,
  .view-display-id-block_other tr:nth-of-type(even) span.full,
  .view-display-id-block_1980 tr:nth-of-type(even) span.full {
    opacity: 1;
    background: #F7F7F7;
    color: #747474;
  }
}

span.space::before,
span.hyphen::before {
  content: "-";
  display: inline-block;
}

span.comma::before {
  content: ", ";
}

.last-updated-column {
  position: relative;
}
.last-updated-column .last-date {
  cursor: pointer;
}
.last-updated-column .last-date::after {
  content: " *";
  color: #A85F9F;
  position: absolute;
  margin-left: 3px;
}
.last-updated-column .hover {
  opacity: 0;
  position: absolute;
  left: -3px;
  top: 100%;
  color: #3b3b3b;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.last-updated-column .hover::before {
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
  z-index: 9;
}
.last-updated-column .hover small {
  display: block;
  clear: both;
  white-space: nowrap;
}
.last-updated-column:hover .hover {
  opacity: 1;
}
.last-updated-column:hover .last-date {
  color: #444;
  border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    margin: 0 0 1rem 0;
  }
  tr:nth-child(odd) {
    background: #E6E6E6;
  }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
}
span.status-dot::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
  background: #747474;
}
span.status-dot.certified {
  color: #62D497;
  white-space: nowrap;
}
span.status-dot.certified::before {
  background: #62D497;
}
span.status-dot.procedures-1980 {
  color: #1D9AF5;
}
span.status-dot.procedures-1980::before {
  background: #1D9AF5;
}
span.status-dot.pending {
  color: #DE1E21;
}
span.status-dot.pending::before {
  background: #DE1E21;
}

.view-hs-transposition-status th.views-field-field-page-name {
  width: 30%;
}
.view-hs-transposition-status th.views-field-field-hs-1996 {
  width: 14%;
}
.view-hs-transposition-status th.views-field-field-hs-2002 {
  width: 14%;
}
.view-hs-transposition-status th.views-field-field-hs-2007 {
  width: 14%;
}
.view-hs-transposition-status th.views-field-field-hs-2012 {
  width: 14%;
}
.view-hs-transposition-status th.views-field-field-hs-2017 {
  width: 14%;
}

.sticky-header th {
  background: #e8e3e9;
}

.shortener td {
  position: relative;
  overflow: visible;
}
.shortener td span.full {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  position: absolute;
  padding-right: 10px;
  background: #fff;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 768px) {
  .shortener td span.full {
    opacity: 1;
    background: #E6E6E6;
    color: #747474;
  }
}
.shortener td:hover span.full {
  opacity: 1;
}
.shortener tr:nth-of-type(even) span.full {
  background: #F7F7F7;
}
@media (max-width: 768px) {
  .shortener tr:nth-of-type(even) span.full {
    opacity: 1;
    background: #F7F7F7;
    color: #747474;
  }
}

.accordion-item {
  color: #4D4E4A;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #E6E6E6;
}
.accordion-item .accordion-header {
  padding: 0.8rem 0;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
}
.accordion-item .accordion-header .accordion-toggle {
  width: 20px;
  height: 20px;
  background: url(../../../assets/icons/down-arrow-bold.svg) no-repeat center center;
  background-size: cover;
  float: right;
  font-size: 2.2rem;
  margin-top: 1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.6;
}
.accordion-item .accordion-body {
  display: none;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.open .accordion-header {
  font-size: 2.2rem;
}
.open .accordion-header .accordion-toggle {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.open .accordion-body {
  max-height: 100%;
}

.accordion-download {
  background: #E8E3E9;
}
.accordion-download .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.2rem;
  padding-bottom: 1.1rem;
}
.accordion-download .accordion-header .accordion-toggle {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../../../assets/icons/down-arrow-bold.svg) no-repeat center center;
  background-size: cover;
  float: right;
  margin-top: 0;
  font-size: 2.2rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.6;
}
.accordion-download .accordion-header:before {
  content: "⬤";
  float: left;
  color: #9D4F92;
  font-size: 0.7rem;
  margin-right: 1.4rem;
}
@media (max-width: 576px) {
  .accordion-download .accordion-header:before {
    display: none;
  }
}
.accordion-download .accordion-header .field--name-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #9D4F92;
  font-weight: 700;
  line-height: 1.1;
}
.accordion-download .accordion-body {
  display: none;
  padding-left: 4.4rem;
  padding-right: 2rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  max-height: 0;
}
@media (max-width: 576px) {
  .accordion-download .accordion-body {
    padding-left: 2rem;
  }
}
.accordion-download.open .accordion-header {
  font-size: 1.6rem;
}
.accordion-download.open .accordion-header .accordion-toggle {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.accordion-download.open .accordion-body {
  display: block;
  max-height: 100%;
}

.accordion-body .field--type-image {
  width: 7rem;
  height: 7rem;
  margin: 3rem auto;
}
.accordion-body .field--name-field-description-plain {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.accordion-filter {
  margin-top: 1.5rem;
}
.accordion-filter .accordion-header {
  font-size: 1.9rem;
  background: #F7F7F7;
  padding: 1rem 1.5rem 0.8rem;
  cursor: pointer;
}
.accordion-filter .accordion-header:hover {
  opacity: 0.8;
}
.accordion-filter .accordion-header .accordion-toggle {
  display: block;
  width: 16px;
  height: 15px;
  background: url(../../../assets/icons/down-arrow-bold.svg) no-repeat center center;
  background-size: cover;
  float: right;
  font-size: 2.2rem;
  margin-top: 1rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.6;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.accordion-filter .accordion-body {
  padding: 0 1.5rem 1.5rem;
}
.accordion-filter.open {
  background: #F7F7F7;
}
.accordion-filter.open .accordion-body {
  display: block;
}
.accordion-filter.open .accordion-toggle {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.has-color {
  border-bottom: none;
}
.has-color .accordion-header {
  color: #fff;
  font-size: 2rem;
  padding: 0.8rem 3rem 0.4rem;
}
.has-color .accordion-header .accordion-toggle {
  -webkit-filter: invert(100%);
          filter: invert(100%);
  margin-top: 1rem;
  opacity: 1;
}
.has-color .accordion-body {
  padding-left: 3rem;
  padding-right: 3rem;
  background: #fff;
  border: 1px solid #58ABAC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.has-color.open .accordion-body {
  padding-left: 3rem;
  padding-right: 3rem;
  background: #fff;
  border: 1px solid #58ABAC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.always.open .accordion-body {
  display: block;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #58ABAC;
  color: #fff;
}

#member_filter {
  font-size: 1.4rem;
  color: #4D4E4A;
  width: 21rem !important;
  outline: none;
  padding: 1.2rem 4rem 1.2rem 1.8rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
  border: 1px solid #D0D0D0;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: url(./../../../assets/icons/search.svg) no-repeat 18rem center !important;
  background-size: 1.8rem;
}
#member_filter::-webkit-input-placeholder {
  font-style: italic;
  color: #9E9E9E;
}
#member_filter::-moz-placeholder {
  font-style: italic;
  color: #9E9E9E;
}
#member_filter:-ms-input-placeholder {
  font-style: italic;
  color: #9E9E9E;
}
#member_filter::-ms-input-placeholder {
  font-style: italic;
  color: #9E9E9E;
}
#member_filter::placeholder {
  font-style: italic;
  color: #9E9E9E;
}
#member_filter:focus::-webkit-input-placeholder {
  opacity: 0.7;
}
#member_filter:focus::-moz-placeholder {
  opacity: 0.7;
}
#member_filter:focus:-ms-input-placeholder {
  opacity: 0.7;
}
#member_filter:focus::-ms-input-placeholder {
  opacity: 0.7;
}
#member_filter:focus::placeholder {
  opacity: 0.7;
}
#member_filter:focus {
  border: 1px solid #9E9E9E;
  color: #4D4E4A;
  font-style: normal;
}

.view-search .view-filters {
  background: #F7F7F7;
  border: none;
  padding: 1.5rem;
}
.view-search .view-filters .form-item-date-min,
.view-search .view-filters .form-item-date-max {
  max-width: calc(50% - 5px);
  color: #747474;
}
.view-search .view-filters .form-item-date-min label,
.view-search .view-filters .form-item-date-max label {
  display: none;
}
.view-search .view-filters .form-item-date-max {
  margin-left: 1rem;
}
.view-search .view-filters .form--inline input[type=text] {
  background: #fff !important;
  border-radius: 0;
  font-size: 14px;
  padding: 1.1rem 1rem 1rem 1rem;
}
.view-search .view-filters .form--inline .form-text::-webkit-input-placeholder {
  font-style: italic;
  color: #747474;
  opacity: 0.7;
}
.view-search .view-filters .form--inline .form-text::-moz-placeholder {
  font-style: italic;
  color: #747474;
  opacity: 0.7;
}
.view-search .view-filters .form--inline .form-text:-ms-input-placeholder {
  font-style: italic;
  color: #747474;
  opacity: 0.7;
}
.view-search .view-filters .form--inline .form-text::-ms-input-placeholder {
  font-style: italic;
  color: #747474;
  opacity: 0.7;
}
.view-search .view-filters .form--inline .form-text::placeholder {
  font-style: italic;
  color: #747474;
  opacity: 0.7;
}
.view-search .view-filters .form--inline .form-actions {
  width: 100%;
}
.view-search .view-filters .form--inline .button {
  width: 100%;
}
.view-search .view-filters .form--inline div {
  margin-right: 0;
}
.view-search .view-filters .form--inline div:last-of-type {
  margin-bottom: 0;
}
.view-search .view-filters .form--inline .form-item {
  width: 100%;
  margin-right: 0;
}
.view-search .view-filters .form--inline .js-form-type-select::before {
  border: none;
}

.facets-widget-checkbox h3 {
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 0;
}
.facets-widget-checkbox ul {
  margin: 0;
  padding: 0;
}
.facets-widget-checkbox ul li.facet-item {
  list-style: none;
  padding: 0;
}
.facets-widget-checkbox .facet-item ul {
  margin-left: 1.8rem;
}
.facets-widget-checkbox .facet-item__value {
  font-size: 14px;
  padding-left: 0.5rem;
}
.facets-widget-checkbox .facet-item__count {
  font-size: 12px;
}

.search-result {
  margin-bottom: 2rem;
}
.search-result .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #8B2F7F;
  color: #fff;
  padding: 0 1.3rem;
}
@media (max-width: 768px) {
  .search-result .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-result .header.certification {
  background: #A85F9F;
  border-left: 13px solid #8B2F7F;
}
.search-result .header .label {
  font-weight: normal;
}
.search-result .info, .search-result .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F7F7F7;
  padding: 1rem 1.3rem;
}
@media (max-width: 768px) {
  .search-result .info, .search-result .description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-result .info .member, .search-result .description .member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .search-result .info .member, .search-result .description .member {
    margin-bottom: 1rem;
  }
}
.search-result .info .member span, .search-result .description .member span {
  color: #747474;
  line-height: 1.3;
}
.search-result .info .member .label, .search-result .description .member .label {
  color: #747474;
  font-size: 1.3rem;
  font-weight: normal;
}
.search-result .info .type, .search-result .description .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-result .info .type span, .search-result .info .type div, .search-result .description .type span, .search-result .description .type div {
  line-height: 1.3;
}
.search-result .info .type .label, .search-result .description .type .label {
  font-size: 1.3rem;
  font-weight: normal;
  color: #747474;
}
.search-result .info .type .type-content, .search-result .description .type .type-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #747474;
}
.search-result .info .type .type-content div, .search-result .info .type .type-content span, .search-result .description .type .type-content div, .search-result .description .type .type-content span {
  color: #747474;
  margin-right: 0.5rem;
}

.search .paragraph-document {
  color: #fff;
  background: #F7F7F7;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.search .paragraph-document .field {
  padding: 0 1.3rem;
}
.search .paragraph-document .field--name-field-suffix:first-of-type {
  background: #58ABAC;
}
.search .paragraph-document .files > span, .search .paragraph-document .attachments > span {
  color: #747474;
  margin-left: 14px;
  font-size: 1.3rem;
}

.facets-widget-links {
  margin-bottom: 4rem;
}
.facets-widget-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.facets-widget-links ul li.facet-item {
  list-style: none;
}
.facets-widget-links ul li.facet-item a {
  display: inline-block;
  padding: 0.3rem 1.8rem 0.3rem;
  border: 1px solid #8B2F7F;
  border-radius: 4px;
  background: #8B2F7F;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.facets-widget-links ul li.facet-item a:hover, .facets-widget-links ul li.facet-item a:focus {
  border-color: #A85F9F;
  background: #A85F9F;
  color: #fff;
}
.facets-widget-links ul li.facet-item a {
  line-height: 1.5;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.facets-widget-links ul li.facet-item a .facet-item__count {
  margin-left: 0.5rem;
  opacity: 0.6;
}
.facets-widget-links ul li.facet-item a .facet-item__status {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 0.5rem;
  margin-top: -1px;
  display: block;
  width: 1.5rem;
  text-indent: -8850px;
  background: url(../../../assets/close.svg) no-repeat right center;
  background-size: 1.1rem;
}
.facets-widget-links ul li.facet-item a[data-drupal-facet-item-value=document] {
  background-color: #58ABAC;
  border-color: #58ABAC;
}
.facets-widget-links ul li.facet-item a[data-drupal-facet-item-value=document]:hover {
  background-color: rgb(122.068, 188.136, 188.932);
  border-color: rgb(122.068, 188.136, 188.932);
}

.block-wto-search-basic .row div {
  margin-bottom: 2.5rem;
  text-align: center;
}
.block-wto-search-basic a {
  display: block;
  padding: 1.2rem;
  background: #8B2F7F;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block-wto-search-basic a:hover {
  opacity: 0.8;
}
.block-wto-search-basic .row div.col-6 a {
  background: #A85F9F;
}
.block-wto-search-basic .row div.initial a {
  background: #58ABAC;
}
.block-wto-search-basic .row div.pre a {
  background: #3b3b3b;
}

.basic-search .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8rem;
  margin-bottom: 2rem;
}
.basic-search .info .label {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #8B2F7F;
}
.basic-search .info .icon {
  width: 80px;
  height: 80px;
  background: url(../../../assets/schedule.svg) no-repeat center center;
  background-size: contain;
  margin-right: 1rem;
}
.basic-search .list {
  margin-bottom: 3rem;
}
.basic-search .list .procedures,
.basic-search .list .status {
  margin-bottom: 0.5rem;
  position: relative;
}
.basic-search .list .procedures a,
.basic-search .list .status a {
  font-size: 1.6rem;
  display: block;
  padding: 1.8rem 2.5rem;
  background: #8B2F7F;
  border-radius: 4px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.basic-search .list .procedures a:hover,
.basic-search .list .status a:hover {
  opacity: 0.8;
}
.basic-search .list .procedures span.count,
.basic-search .list .status span.count {
  font-weight: bold;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 2rem;
  top: 1.9rem;
  pointer-events: none;
}
.basic-search .list .procedures.initial a,
.basic-search .list .status.initial a {
  background: #3b3b3b;
}
.basic-search .list .procedures.pre a,
.basic-search .list .status.pre a {
  background: #828282;
}
.basic-search .list .procedures.sub-procedures a,
.basic-search .list .status.sub-procedures a {
  background: #A85F9F;
  margin-left: 2.5rem;
}
.basic-search .list .status a {
  background: #58ABAC;
}
.basic-search .by-status .info .label {
  color: #58ABAC;
}
.basic-search .by-status .info .icon {
  width: 6rem;
  height: 6rem;
  background: url(../../../assets/change.svg) no-repeat center center;
}
.basic-search .history .info .label {
  color: #3b3b3b;
}
.basic-search .history .info .icon {
  width: 6rem;
  height: 6rem;
  background: url(../../../assets/history.svg) no-repeat center center;
}

.hero {
  position: absolute;
  height: 30rem;
}
@media (max-width: 1200px) {
  .hero {
    height: 30rem;
  }
}
@media (max-width: 992px) {
  .hero {
    height: 25rem;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 20rem;
  }
}
.hero {
  width: 100%;
  background: url(../../../assets/Hero_image.jpg) no-repeat center center;
  background-size: cover;
  z-index: -9999;
}

.mainwrapper {
  max-width: 1280px;
  margin: 10rem auto 0;
  padding: 5rem 3.6rem;
  background: #fff;
}
.mainwrapper .region-content {
  padding: 2.8rem;
}
@media (max-width: 1200px) {
  .mainwrapper {
    padding: 2rem 5rem;
  }
}
@media (max-width: 1060px) {
  .mainwrapper {
    padding: 2rem 0;
  }
}
@media (min-width: 1200px) {
  .mainwrapper .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.path-frontpage #block-wto-ma-primary-local-tasks {
  position: relative;
  top: -5rem;
}
.path-frontpage .mainwrapper {
  margin: 0 auto;
  padding-bottom: 0;
}

.section-home {
  margin: 4rem 0 0;
}
.section-home .text {
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .section-home .text {
    margin-left: 0;
  }
}
.section-home p {
  color: #4D4E4A;
  line-height: 1.5;
  margin-bottom: 3rem;
}
.section-home h3 {
  color: #A85F9F;
  font-size: 2.7rem;
}
.section-home .field--name-field-title {
  font-size: 4.4rem;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
  color: #4D4E4A;
  margin-bottom: 4rem;
}

.section-home.color {
  background: #58ABAC;
  padding-top: 8rem;
  padding-bottom: 8rem;
  z-index: 1;
  position: relative;
}
.section-home.color .text {
  margin-left: 0rem;
}
.section-home.color .text iframe {
  width: 100%;
  height: 245px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .section-home.color .text iframe {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .section-home.color .text iframe {
    height: 300px;
  }
}
.section-home.color .youtube-container {
  margin-top: 0;
  margin-bottom: 5rem;
}
.section-home.color p {
  line-height: 1.5;
  color: #fff;
  margin-bottom: 4rem;
}
.section-home.color h3 {
  color: #fff;
  font-size: 2.7rem;
  margin-top: 0;
  padding-top: 0;
}
.section-home.color .field--type-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-home.color .field--type-link a {
  display: inline-block;
  margin: auto;
  font-size: 1.7rem;
  padding: 1.7rem 5rem;
  border-radius: 0;
  border: 3px solid #fff;
  background: none;
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
}
.section-home.color .field--type-link a:hover, .section-home.color .field--type-link a:focus {
  border-color: #fff;
  background: #fff;
  color: #4D4E4A;
  outline: 0;
}
.section-home.color .field--type-link a {
  margin: 6rem auto 0;
}
.section-home.color::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  height: 100%;
  z-index: -1;
  background: #58ABAC;
  margin-left: -100%;
  margin-right: -100%;
}

#condegram_spiral {
  margin: 0 auto;
  text-align: center;
}

.section-hero {
  position: relative;
  background-size: cover;
  margin-top: -50px;
}
@media (max-width: 1200px) {
  .section-hero {
    margin-top: -20px;
  }
}
.section-hero .herocontainer {
  max-width: 1200px;
  margin: auto;
}
.section-hero .hero-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 50%;
  background: #8B2F7F;
  opacity: 0.9;
  padding: 5rem;
  min-height: 34rem;
}
@media (max-width: 768px) {
  .section-hero .hero-box {
    max-width: 100%;
  }
}
.section-hero .hero-box .field--name-field-description-plain {
  color: #fff;
  font-size: 2.4rem;
  line-height: 3.4rem;
}
@media (max-width: 768px) {
  .section-hero .hero-box .field--name-field-description-plain {
    text-align: center;
  }
}

.ui-dialog {
  border: none;
}
.ui-dialog * {
  font-family: MuseoSans, Helvetica, sans-serif;
}
.ui-dialog *:focus {
  -moz-outline: none;
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui-dialog .ui-dialog-buttonpane {
  background: #fff;
  border: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: left;
  margin: 1rem 0 1.4rem 1.4rem;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .button {
  margin: 0;
  font-family: MuseoSans, Helvetica, sans-serif;
  font-size: 1.3rem;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .button:focus {
  background: #8B2F7F;
  outline: 0;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .button:hover {
  background: #A85F9F;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  background: #fff;
  border: none;
  padding: 1.5rem 1.5rem 0rem 3rem;
}
.ui-dialog .ui-dialog-content {
  padding-top: 0;
  padding-left: 3rem;
  padding-right: 3rem;
}
.ui-dialog p.ui-dialog-content {
  padding: 0 3rem 2rem;
  line-height: 1.5;
}
.ui-dialog .ui-button-icon-only .ui-icon {
  left: 0;
  top: 0;
  margin: 0;
}
.ui-dialog .ui-dialog-titlebar-close {
  /*position: relative;*/
  right: 18px;
  top: 28px;
  width: 18px;
  height: 18px;
  opacity: 1;
  z-index: 9999;
  border: none;
}
.ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick {
  background: none !important;
}
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
  opacity: 0.7;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ui-dialog .ui-dialog-titlebar-close::before, .ui-dialog .ui-dialog-titlebar-close::after {
  position: absolute;
  left: 9px;
  content: " ";
  height: 18px;
  width: 2px;
  background-color: #747474;
}
.ui-dialog .ui-dialog-titlebar-close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ui-dialog .ui-dialog-titlebar-close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ui-widget.ui-widget-content {
  border: none !important;
  -webkit-box-shadow: 0 2px 94px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 2px 94px 0 rgba(0, 0, 0, 0.21);
}

.access-tooltip p {
  margin: 0;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-size: 1.4rem;
  line-height: 1.8;
}
.access-tooltip .ui-dialog-titlebar {
  padding-bottom: 0.5rem;
}

.ajax-progress {
  position: fixed;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  padding: 25px;
  z-index: 9999;
  background: url(../../../assets/loading.svg) no-repeat center center;
  background-size: 70px;
  content: " ";
}
.ajax-progress::after, .ajax-progress::before {
  content: " " !important;
}
.ajax-progress .throbber {
  display: none;
}

.ui-dialog-title {
  display: none;
}

.access-tooltip .ui-dialog-title {
  display: block;
}

.node-file-browser {
  margin-top: -1.5rem;
}
.node-file-browser .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #4D4E4A;
}
@media (max-width: 576px) {
  .node-file-browser .description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.node-file-browser .description .schedule {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  background: #F7F7F7;
}
.node-file-browser .description .type {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 1rem 1.5rem;
  margin: 0 5px;
  background: #F7F7F7;
}
@media (max-width: 576px) {
  .node-file-browser .description .type {
    margin: 5px 0;
  }
}
.node-file-browser .description .type .type-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.node-file-browser .description .type .type-content span {
  margin: 0 1rem;
}
.node-file-browser .description .date {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 1.5rem;
  background: #F7F7F7;
}

.paragraph-document .field {
  margin-bottom: 2rem;
}
.paragraph-document .field__label {
  font-weight: normal;
}
.paragraph-document .file-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  font-size: 1.4rem;
  padding: 0.7rem 1.4rem 0.5rem;
  margin: 0 0 1rem 0;
}
.paragraph-document .file-item .file-doc, .paragraph-document .file-item .file-docx,
.paragraph-document .file-item .file-pdf,
.paragraph-document .file-item .file-wpf,
.paragraph-document .file-item .file-zip,
.paragraph-document .file-item .file-xls, .paragraph-document .file-item .file-xlsx,
.paragraph-document .file-item .file-mdb {
  background: url(../../../assets/icons/file.svg) no-repeat left center;
  width: 3.3rem;
  height: 2.8rem;
  background-size: 2.2rem 2rem;
}
.paragraph-document .file-item .file-doc, .paragraph-document .file-item .file-docx {
  background-image: url(../../../assets/icons/word.svg);
}
.paragraph-document .file-item .file-pdf {
  background-image: url(../../../assets/icons/pdf.svg);
}
.paragraph-document .file-item .file-xls, .paragraph-document .file-item .file-xlsx {
  background-image: url(../../../assets/icons/excel.svg);
}
.paragraph-document .file-item .file-mdb {
  background-image: url(../../../assets/icons/database.svg);
}
.paragraph-document .file-item .name {
  color: #9E9E9E;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.paragraph-document .file-item .lang-set {
  -ms-flex-line-pack: center;
      align-content: center;
}
.paragraph-document .file-item .lang-set .lang {
  -ms-flex-line-pack: center;
      align-content: center;
  margin-left: 15px;
}
.paragraph-document .file-item .lang-set .lang span {
  color: #9E9E9E;
  margin-left: 1rem;
}

.section-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #f4f4f4;
  font-size: 1.4rem;
  padding: 0.7rem 1.4rem 0.5rem;
  margin: 0 0 1rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-item .icon {
  background: url(../../../assets/icons/file.svg) no-repeat left center;
  width: 3.3rem;
  height: 2.8rem;
  background-size: 2rem 2rem;
}
.section-item .globe {
  background-image: url(../../../assets/icons/globe.svg);
}
.section-item .database {
  background-image: url(../../../assets/icons/database2.svg);
}
.section-item .doc, .section-item .docx {
  background-image: url(../../../assets/icons/word.svg);
}
.section-item .pdf {
  background-image: url(../../../assets/icons/pdf.svg);
}
.section-item .xls, .section-item .xlsx {
  background-image: url(../../../assets/icons/excel.svg);
}
.section-item .mdb {
  background-image: url(../../../assets/icons/database2.svg);
}
.section-item .name {
  color: #747474;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-item .external {
  justify-self: flex-end;
  width: 2rem;
  height: 2.8rem;
  background: url(../../../assets/icons/external.svg) no-repeat left center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.downloadlink:hover .section-item, a.downloadlink:focus .section-item {
  background: #f7f7f7;
}
a.downloadlink:hover .section-item .external,
a.downloadlink:hover .section-item .arrow, a.downloadlink:focus .section-item .external,
a.downloadlink:focus .section-item .arrow {
  opacity: 0.5;
}

.youtube-container {
  position: relative;
  padding-bottom: 56.25%;
  margin: 3rem 0;
  height: 0;
  overflow: hidden;
}
.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.accordion-body .paragraph-document {
  position: relative;
}
.accordion-body .paragraph-document .field--name-field-suffix {
  font-weight: bold;
  margin-bottom: 0;
}
.accordion-body .paragraph-document .field--name-field-date {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .accordion-body .paragraph-document .field--name-field-date {
    position: relative;
  }
}

.members-list .view-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  height: 220rem;
}
@media (max-width: 992px) {
  .members-list .view-content {
    height: 286rem;
  }
}
@media (max-width: 768px) {
  .members-list .view-content {
    height: 418rem;
  }
}
@media (max-width: 576px) {
  .members-list .view-content {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.members-list .members-group {
  width: 22%;
}
@media (max-width: 992px) {
  .members-list .members-group {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .members-list .members-group {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .members-list .members-group {
    width: 100%;
  }
}
.members-list .members-group {
  margin-bottom: 2rem;
}
.members-list .members-group h3 {
  color: #A85F9F;
  font-weight: normal;
  font-size: 2.8rem;
}
.members-list .members-group h3::after {
  content: "";
  position: absolute;
  display: block;
  margin-top: 3px;
  height: 3px;
  width: 2.1rem;
  background: #A85F9F;
}

@media (max-width: 768px) {
  .section-hero + .section.paragraph-block-reference {
    position: relative;
  }
  .section-hero + .section.paragraph-block-reference::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    height: 100%;
    z-index: 0;
    margin-left: -100%;
    margin-right: -100%;
    background: #8B2F7F;
  }
}

.block-member-quick-access {
  background: #8B2F7F;
  margin-bottom: 4rem;
}
.block-member-quick-access .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
@media (max-width: 768px) {
  .block-member-quick-access .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.block-member-quick-access .container span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1.5;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  margin: 1rem 1rem 1rem 0;
  z-index: 1;
}
.block-member-quick-access .container .js-form-type-select {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  justify-self: flex-end;
  -ms-flex-item-align: center;
      align-self: center;
  background: #fff;
}
.block-member-quick-access .container .js-form-type-select::after {
  bottom: 0 !important;
}
@media (max-width: 768px) {
  .block-member-quick-access .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.node.member div.description {
  line-height: 1.5;
}

div.section.additional {
  font-size: 1.4rem;
  background: #f9f9f9;
  color: #747474;
  padding: 1rem;
  margin-top: 5rem;
}
div.section.additional h4 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
}
div.section.additional div, div.section.additional p {
  line-height: 1.7;
}

.tile-block {
  background: #58ABAC;
  text-align: center;
  padding: 3rem;
  margin: 15px 0;
  min-height: 43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tile-block .field--type-string-long {
  color: #fff;
  line-height: 1.4;
  min-height: 100px;
  width: 100%;
}
.tile-block .field--name-field-title {
  font-size: 2.6rem;
  margin-top: 0;
  color: #fff;
  line-height: 1.4;
  width: 100%;
}
.tile-block .media {
  padding: 2rem 4rem;
  margin-top: -1rem;
  background: url(../../../assets/stripes.png) no-repeat center center;
  background-size: cover;
}
.tile-block .media .field--type-image svg {
  height: 9rem;
  width: 9rem;
}
.tile-block .button-primary {
  margin-bottom: 0.5rem;
}

.path-frontpage .tile-block {
  min-height: auto;
}
.path-frontpage .tile-block .field--name-field-title {
  margin-bottom: 1rem;
}

.view-id-news h2 {
  padding: 0;
  margin: 0;
}
.view-id-news h2 .field--name-title {
  color: #4D4E4A;
  font-weight: 700;
  line-height: 1.4;
}
.view-id-news h2 .field--name-title:hover {
  color: #8B2F7F;
}
.view-id-news .date {
  font-weight: 700;
}
.view-id-news .field--name-body {
  margin-top: 2rem;
  line-height: 1.8;
}

.row.news {
  margin-top: 4rem;
}

article .media figure img {
  width: 100%;
  height: auto;
}
article .media figure figcaption {
  font-weight: bold;
  margin-bottom: 4rem;
}

.section.tabs {
  margin: 10rem 0 15rem;
}
.section.tabs ul.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.section.tabs ul.nav-tabs li.nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 2rem 0 0;
  background: #A85F9F;
  -webkit-box-shadow: 0 -40px 64px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -40px 64px rgba(0, 0, 0, 0.1);
}
.section.tabs ul.nav-tabs li.nav-item a.nav-item-link {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  padding: 2rem 3rem;
}
.section.tabs ul.nav-tabs li.nav-item a.nav-item-link:hover, .section.tabs ul.nav-tabs li.nav-item a.nav-item-link:focus {
  outline: none;
  background: #A85F9F;
}
.section.tabs ul.nav-tabs li.nav-item:last-child {
  margin: 0;
}
.section.tabs ul.nav-tabs li.nav-item.active a.nav-item-link {
  color: #4D4E4A;
  background: #fff;
}
.section.tabs ul.nav-tabs li.nav-item.active a.nav-item-link:hover, .section.tabs ul.nav-tabs li.nav-item.active a.nav-item-link:focus {
  outline: none;
  color: #4D4E4A;
  background: #fff;
}
.section.tabs table.views-table .views-field-field-member-schedules a {
  display: inline;
}
.section.tabs .tab-content {
  -webkit-box-shadow: -20px 20px 64px rgba(0, 0, 0, 0.1), 20px 20px 64px rgba(0, 0, 0, 0.1);
          box-shadow: -20px 20px 64px rgba(0, 0, 0, 0.1), 20px 20px 64px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  background: #fff;
}
.section.tabs .tab-content p {
  line-height: 1.7;
}
.section.tabs .tab-content p a {
  display: inline !important;
  padding: 0;
}
.section.tabs .tab-content h3.view-title {
  display: none;
}
.section.tabs .tab-content h4:first-of-type {
  margin-top: 0;
}
.section.tabs .pager .pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section.tabs .pager .pager__items a {
  padding: 0;
}
.section.tabs .pager .pager__items a:hover {
  background: none;
}

.cta {
  padding: 5rem 0 2rem;
  text-align: center;
}
.cta a.btn-large {
  display: inline-block;
}
.cta a.btn-large:hover, .cta a.btn-large:focus {
  background: #8B2F7F;
}

.section-cta {
  padding: 0 0 2rem;
  text-align: center;
}
.section-cta a.btn-large {
  display: inline-block;
}
.section-cta a.btn-large:hover, .section-cta a.btn-large:focus {
  background: #8B2F7F;
}

.block-wto-false-tabs .section.tabs {
  margin: 5rem 0;
}

.section .title {
  color: #A85F9F;
  font-weight: 700;
  font-size: 2.7rem;
  margin: 2rem 0;
}
.section .title .sub-title {
  font-size: 1.7rem;
  font-weight: normal;
  margin: 0;
  line-height: 1.4;
}
.section .title .sub-title li {
  margin-bottom: 0.5rem;
}

.status a.btn-primary {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-top: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.status .container {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .status .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.status .container .tile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  background: #F7F7F7;
  color: #8B2F7F;
  line-height: 1.2;
  font-size: 1.4rem;
  padding: 1.3rem 2rem 2.2rem;
  margin: 0 3px 0 0;
}
@media (max-width: 576px) {
  .status .container .tile {
    margin: 0 0 3px 0;
  }
}
.status .container .tile .count {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 2;
}
.status .container .tile:last-child {
  margin: 0;
}

.variant .more-link {
  color: #8B2F7F;
  text-align: left;
  margin: 3rem 0 3rem;
  cursor: pointer;
}
.variant .schedules.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.variant .schedules.container .tile {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  background: #F7F7F7;
  color: #4D4E4A;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 1.3rem 2rem 2.2rem;
  margin: 0;
}
.variant .schedules.container .tile .count {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.variant .schedules.container .tile.active {
  background: #A85F9F;
  color: #fff;
}

.block-wto-changes .description {
  margin-bottom: 3rem;
}
.block-wto-changes h2 {
  margin: 5rem 0 1rem;
  font-size: 2.6rem;
}
.block-wto-changes h3,
.block-wto-changes .wide-term .field--name-name {
  margin: 0;
  font-size: 3rem;
  font-weight: bold;
}
.block-wto-changes .wide-term {
  margin-bottom: 3rem;
}
.block-wto-changes .row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.block-wto-changes .taxonomy-term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-wto-changes .taxonomy-term .variant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.block-wto-changes .taxonomy-term span.number {
  color: #A85F9F;
  font-size: 1.6rem;
}
.block-wto-changes .taxonomy-term span.content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  background: #F7F7F7;
}
.block-wto-changes .taxonomy-term span.content-wrapper .content {
  margin-bottom: 4rem;
}
.block-wto-changes .taxonomy-term span.content-wrapper a.button--small {
  position: absolute;
  bottom: 22px;
}
.block-wto-changes .taxonomy-term span.content-wrapper p {
  line-height: 2.8rem;
  margin-top: 0;
}
.block-wto-changes .taxonomy-term span.content-wrapper h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 2rem;
  padding-top: 0;
  line-height: 1.4;
  font-size: 2rem;
}
.block-wto-changes .taxonomy-term span.content-wrapper h3:hover {
  opacity: 0.9;
}
.block-wto-changes .taxonomy-term span.content-wrapper .date {
  display: block;
  font-size: 1.4rem;
  color: #9E9E9E;
  margin-top: -2rem;
  margin-bottom: 1rem;
}
.block-wto-changes .wide-taxonomy-term span.number {
  color: #A85F9F;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding: 0;
}
.block-wto-changes .wide-taxonomy-term a {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.block-wto-changes .wide-taxonomy-term span.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin-bottom: 5rem;
  background: #fff;
}
.block-wto-changes .wide-taxonomy-term span.content-wrapper p {
  line-height: 2.8rem;
  margin-top: 0;
}
.block-wto-changes .wide-taxonomy-term span.content-wrapper h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding-top: 0;
  line-height: 1.4;
  font-size: 2.7rem;
  color: #A85F9F;
}
.block-wto-changes .wide-taxonomy-term span.content-wrapper h3:hover {
  opacity: 0.9;
}
.block-wto-changes .wide-taxonomy-term span.content-wrapper .date {
  display: block;
  font-size: 1.4rem;
  color: #9E9E9E;
  margin-top: -2rem;
  margin-bottom: 1rem;
}
.block-wto-changes .grey .wide-taxonomy-term span.number {
  margin-bottom: 0rem;
}
.block-wto-changes .grey .wide-taxonomy-term span.content-wrapper {
  background: #F7F7F7;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
}
.block-wto-changes .grey .wide-taxonomy-term span.content-wrapper a {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.block-wto-changes .grey .wide-taxonomy-term span.content-wrapper h3 {
  padding-bottom: 2rem;
  font-size: 2rem;
  color: #4D4E4A;
}

.book-shelf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  width: 100%;
  height: 40rem;
}
.book-shelf .book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  background-size: 100% 100%;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.book-shelf .book .style1:nth-child(5),
.book-shelf .book .style2:nth-child(7),
.book-shelf .book .style3:nth-child(2) {
  margin-right: 40px;
}
.book-shelf .book div {
  font-size: 17px;
  font-weight: bold;
  /*white-space: nowrap;*/
  text-align: center;
  line-height: 1.4;
}
.book-shelf .book .sub-label {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  text-align: center;
  color: #555;
  line-height: 1;
}
.book-shelf .style1 {
  background-size: 100% 100%;
  color: #fff;
  width: 50px;
  margin-right: 20px;
  height: 300px;
  margin-top: auto;
}
.book-shelf .style1:last-child {
  margin-right: 120px;
}
.book-shelf .style1 .top {
  background: #5db0b5;
  height: 2%;
  width: 100%;
}
.book-shelf .style1 .intermediary {
  background: #5db0b5;
  opacity: 0.7;
  height: 2%;
  width: 80%;
  margin-left: 9px;
}
.book-shelf .style1 .intermediary2 {
  background: #5db0b5;
  height: 1%;
  width: 80%;
  opacity: 0.7;
  margin-left: 9px;
}
.book-shelf .style1 .top-2 {
  background: #5db0b5;
  height: 1%;
  width: 100%;
}
.book-shelf .style1 .bottom {
  background: #5db0b5;
  height: 2%;
  width: 100%;
}
.book-shelf .style1 .default {
  background: #5db0b5;
  height: 90%;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.book-shelf .style1 .default2 {
  background: #5db0b5;
  height: 2%;
  width: 100%;
  opacity: 0.5;
}
.book-shelf .style2 {
  background-size: 100% 100%;
  color: #fff;
  width: 50px;
  margin-right: 20px;
  height: 320px;
  margin-top: auto;
  font-size: 14px;
}
.book-shelf .style2:last-child {
  margin-right: 120px;
}
.book-shelf .style2 .top {
  background: #6b2d84;
  height: 2%;
  width: 100%;
}
.book-shelf .style2 .intermediary {
  background: #6b2d84;
  width: 80%;
  opacity: 0.5;
  height: 2%;
  margin-left: 9px;
}
.book-shelf .style2 .intermediary2 {
  background: #6b2d84;
  width: 80%;
  opacity: 0.5;
  height: 2%;
  margin-left: 9px;
}
.book-shelf .style2 .top-2 {
  background: #6b2d84;
  height: 2%;
  width: 100%;
}
.book-shelf .style2 .top-3 {
  background: #6b2d84;
  height: 2%;
  width: 100%;
  opacity: 0.5;
}
.book-shelf .style2 .bottom {
  background: #6b2d84;
  height: 2%;
  width: 100%;
}
.book-shelf .style2 .default {
  background: #6b2d84;
  height: 88%;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  font-size: 14px;
}
.book-shelf .style3 {
  background-size: 100% 100%;
  color: #fff;
  width: 50px;
  margin-right: 20px;
  height: 370px;
  margin-top: auto;
}
.book-shelf .style3:last-child {
  margin-right: 120px;
}
.book-shelf .style3 .top {
  background: #4a9aa0;
  height: 2%;
  width: 100%;
}
.book-shelf .style3 .intermediary {
  background: #4a9aa0;
  width: 100%;
  opacity: 0.5;
  height: 2%;
}
.book-shelf .style3 .default {
  background: #4a9aa0;
  height: 89%;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.book-shelf .style3 .top-2 {
  height: 2%;
  width: 80%;
  opacity: 0.3;
  background: #4a9aa0;
  margin-left: 9px;
}
.book-shelf .style3 .bottom {
  height: 5%;
  background: #4a9aa0;
  width: 100%;
}
.book-shelf .style4 {
  background-size: 100% 100%;
  color: #fff;
  width: 50px;
  margin-right: 20px;
  margin-top: auto;
}
.book-shelf .style4 .top {
  background: #b787d8;
  height: 3%;
  width: 100%;
}
.book-shelf .style4 .intermediary {
  background: #b787d8;
  width: 80%;
  opacity: 0.7;
  height: 2%;
  margin-left: 9px;
}
.book-shelf .style4 .default {
  background: #b787d8;
  height: 91%;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
}
.book-shelf .style4 .top-2 {
  background: #b787d8;
  opacity: 0.5;
  height: 2%;
  width: 100%;
}
.book-shelf .style4 .bottom {
  background: #b787d8;
  height: 2%;
  width: 100%;
}

.shelf {
  display: block;
  height: 1rem;
  background: #9ed0d3;
  margin-bottom: 5rem;
}

.contact-form {
  padding-right: 8rem;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .contact-form {
    padding-right: 3rem;
    margin-bottom: 6rem;
    padding-right: 0;
  }
}
.contact-form .form-item {
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.contact-form .intro-text {
  line-height: 1.5;
  margin-bottom: 3rem;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 0;
  max-width: 100% !important;
}
.contact-form .form-submit {
  margin: 2rem 0 0 0;
}
.contact-form label {
  color: #747474;
  font-size: 1.4rem;
  font-weight: normal;
}

.contact-details {
  margin-bottom: 5rem;
}
.contact-details .detail {
  margin-left: 3rem;
  word-break: break-word;
}
.contact-details div, .contact-details span {
  font-size: 1.9rem;
  color: #666;
  line-height: 1.5;
}
.contact-details .title {
  color: #666;
  font-weight: 400;
  font-size: 2.2rem;
  margin: 0 0 0 3rem;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .contact-details .title {
    margin-left: 0;
  }
}
.contact-details .subtitle {
  color: #666;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 4.6rem 3rem;
}
@media (max-width: 992px) {
  .contact-details .subtitle {
    margin-left: 0;
  }
}
.contact-details .label {
  display: block;
  font-weight: normal;
  font-style: italic;
  position: relative;
  margin-top: 3.3rem;
  padding-left: 3rem;
  background: url(../../../assets/icons/email.svg) no-repeat left center;
  background-size: 2rem;
  font-size: 1.6rem;
}
.contact-details .phone {
  background: url(../../../assets/icons/phone.svg) no-repeat left center;
  background-size: 2rem;
}
.contact-details .address {
  background: url(../../../assets/icons/place.svg) no-repeat left center;
  background-size: 2rem;
}

.orgchart {
  margin: 2rem 0 5rem;
}
.orgchart .desktop {
  width: 100%;
  height: 937px;
  background: url(../../../assets/orgchartfull.png) no-repeat;
}
.orgchart .mobile {
  width: 343px;
  height: 1500px;
  background: url(../../../assets/orgchartmobile.png) no-repeat;
  background-size: cover;
  display: none;
}
@media (max-width: 1000px) {
  .orgchart .desktop {
    display: none;
  }
  .orgchart .mobile {
    display: block;
  }
}

.visualise .field__item .row {
  margin-bottom: 5rem;
}
.visualise .highcharts-container {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .col-md-6.left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.container.announcement {
  max-width: 100%;
  position: relative;
  background: #58ABAC;
  color: #fff;
}
.container.announcement .block {
  max-width: 900px;
  margin: auto;
}
.container.announcement .block p {
  padding: 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 576px) {
  .container.announcement .block p {
    padding: 0.5rem 0;
  }
}
.container.announcement .block a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.container.announcement .block a:hover, .container.announcement .block a:focus {
  text-decoration: none;
}

.spacer {
  margin: 2rem 0;
}
.spacer.spacer-small {
  height: 2rem;
}
.spacer.spacer-medium {
  height: 3rem;
}
.spacer.spacer-large {
  height: 4rem;
}
/*# sourceMappingURL=../map/global/styles.css.map */
