/* IMPORT */

@import url('normalize.min.css');
@import url('ionicons.min.css');

/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */

html {
  color: #222;
  line-height: 1.4;

  -webkit-font-smoothing: antialiased;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ===============
    IE Fixes
   =============== */


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* FONTS */

@font-face {
  font-family: 'bentonsans-bold';
  src: url('../fonts/bentonsans-bold-webfont.woff2') format('woff2'),
        url('../fonts/bentonsans-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsans-medium';
  src: url('../fonts/bentonsans-medium-webfont.woff2') format('woff2'),
        url('../fonts/bentonsans-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsans-regular';
  src: url('../fonts/bentonsans-regular-webfont.woff2') format('woff2'),
        url('../fonts/bentonsans-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsanscond-black';
  src: url('../fonts/bentonsanscond-black-webfont.woff2') format('woff2'),
        url('../fonts/bentonsanscond-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsanscond-bold';
  src: url('../fonts/bentonsanscond-bold-webfont.woff2') format('woff2'),
        url('../fonts/bentonsanscond-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bentonsanscond-regular';
  src: url('../fonts/bentonsanscond-regular-webfont.woff2') format('woff2'),
        url('../fonts/bentonsanscond-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* TEXTS */

h2 {
  font-family: 'bentonsanscond-bold', sans-serif;
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: normal;
  margin: 50px 0 25px;
}

h3 {
  font-family: 'bentonsanscond-bold', sans-serif;
  font-size: 1.8em;
  line-height: 1.5;
  font-weight: normal;
  margin: 50px 0 25px;
}

h4 {
  font-family: 'bentonsanscond-bold', sans-serif;
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: normal;
  margin: 0 0 15px;
}

p {
  font-family: 'bentonsans-regular', Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

/* COLOR */

.color-red    { color: #94122c; }
.color-black  { color: #444444; }

/* LINKS */

a {
  color: #94122c;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  outline: none !important;
  cursor: pointer !important;

  -o-transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}
  
a:visited {
  color: #94122c;
}
  
a:hover  {
  color: #94122c;
}
  
a:focus  {
  outline: thin dotted;
}
  
a:hover,
a:active {
  outline: 0;
}

/* BTN */

.btn {
  position: relative;
  display: inline-block;
  padding: 6px 20px;
  font-family: 'bentonsans-bold', sans-serif;
  font-size: .875rem;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  color: #000 !important;
  text-decoration: none;
  background: #a0bf38;
  text-align: center;
  border: none !important;
  outline: none !important;
  white-space: nowrap;
  border-radius: 4px;

  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  
  -o-transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn_block {
  display: block;
}

.btn:hover {
  background: rgba(32,185,88,.8);
  color: #000;
}

.btn:active {
  background: #6e9334;
}

.btn--big {
  padding: 20px 26px;
  font-size: 1.3rem;
  line-height: 1rem;
}

@media only screen and (min-width: 1024px) {
.btn_block {
  display: inline-block;
}
}

/* ALERTS */

.alert {
    width: 100%;
    display: block;
    padding: 5px 10px ;
    border-radius: 5px;
    font-size: .9em;
    margin: 10px 0;
}

.alert:first-of-type {
    margin: 0 0 10px 0;
}

.alert:last-of-type {
    margin: 10px 0 0 0;
}

    .alert_red {
        color: #cc0000;
        border: 1px solid #cc0000;
        background: #ffcbcb;
    }

    .alert_yellow {
        color: #cc8700;
        border: 1px solid #cc8700;
        background: #fff8ac;
    }

    .alert_green {
        color: #74ab21;
        border: 1px solid #74ab21;
        background: #dbf0b8;
    }
    
    .alert_blue {
        color: #216294;
        border: 1px solid #216294;
        background: #bce9ff;
    }

    .alert_grey {
        color: #5d5d5d;
        border: 1px solid #5d5d5d;
        background: #bbbbbb;
    }

/* IMAGES */

img {
  max-width: 100%;
}

/* ICONS */

.icon {
  font-family:'Ionicons';
}

/* FORMS */

label {
  display: block;
  margin: 0 0 5px 0;
  font-family: 'bentonsans-medium', Helvetica, sans-serif;
  text-align: left;
}
  
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
textarea,
select {
  width: 100%;
  height: auto;
  padding: 12px 14px;
  font-family: 'bentonsans-medium', Helvetica, sans-serif;
  border: 1px solid #cccccc;
  background: #fff;
  
  -moz-appearance: none;
  -webkit-appearance: none;
  
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  transition: .3s;

  -o-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important;
}
  
select {
  position: relative;
  padding-right: 34px;
}

.lt-ie9 select,
.lt-ie10 select {
  padding-right: 14px;
}
  
  .select {
    position: relative;
  }
  
    .select select {
      position: relative;
      z-index: 10;
    }
    
    select::-ms-expand {
      display: none;
    }
      
    .select .icon {
      position: absolute;
      font-family: 'Ionicons';
      z-index: 20;
      bottom: 16px;
      right: 14px;
      display: block;
      text-align: center;
      pointer-events: none;
      color: #94122c;
      line-height: 1em;
    }
    
  .lt-ie9 .select .icon,
  .lt-ie10 .select .icon {
    display: none;
  }
  
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  outline: 0;
  background: #fff;
  border-color: #000;
  padding-left: 14px;
}

input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="date"]:disabled,
select:disabled,
textarea:disabled {
  color: #444;
  border-color: #ccc;
  background: #f1f1f1;
  padding-left: 14px;
}

input[type="text"]:disabled::-webkit-input-placeholder,
input[type="password"]:disabled::-webkit-input-placeholder,
input[type="email"]:disabled::-webkit-input-placeholder,
input[type="tel"]:disabled::-webkit-input-placeholder,
input[type="number"]:disabled::-webkit-input-placeholder,
input[type="search"]:disabled::-webkit-input-placeholder,
input[type="date"]:disabled::-webkit-input-placeholder,
select:disabled::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder {
  color: #444;
}
  
input[type="text"].required,
input[type="password"].required,
input[type="email"].required,
input[type="tel"].required,
input[type="number"].required,
input[type="search"].required,
input[type="date"].required,
textarea.required,
select.required {
  border-color: #e26161 !important;
}

input:-webkit-autofill {
    padding-left: 14px !important;
}

textarea {
  min-height: 200px;
  max-height: 200px;
}

/* CHECKBOX */
  
input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}
  
label.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  margin: 0 0 15px 0;
  z-index: 10;
  line-height: 16px;
  text-transform: none;
  font-weight: 500;
}
  
label.checkbox:before {
  display: block;
  position: absolute;
  left: 0; top: 0;
  content: '\f372';
  width: 16px;
  height: 16px;
  font-family: 'Ionicons';
  color: #94122c;
  text-align: center;
  line-height: 16px;
  background: #fff;
  z-index: 30;
  font-size: 1.5em;
}

label.checkbox.required {
  color: #444 !important;
}

label.checkbox.required:before {
  color: #e26161;
}
  
input[type="checkbox"]:checked + label.checkbox:before {
  content: '\f373';
  color: #94122c;
}
  
label.checkbox.checked:before {
  content: '\f373';
  color: #94122c;
}
  
/* RADIO */
  
input[type="radio"] {
  position: absolute;
  left: -9999px;
}
  
.lt-ie9 input[type="radio"] {
  left: auto;
}

label.radio {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  padding-right: 10px;
  margin: 0 0 15px 0;
  z-index: 10;
  line-height: 16px;
  text-transform: none;
  font-weight: 500;
}
  
label.radio:before {
  content: '\f3a6';
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0; top: 0;
  display: block;
  font-family: 'Ionicons';
  font-size: 1.375em;
  text-align: center;
  background: #fff;
  z-index: 30;
  font-weight: normal;
  color: #94122c;
}
  
input[type="radio"]:checked + label.radio:before {
  content: '\f3a7';
  color: #94122c;
}
  
label.radio.checked:before {
  content: '\f3a7';
}

.doubt-sign {
  color: #e26161;
  font-family: 'Ionicons';
  font-weight: 700;
  position: absolute;
  bottom: 10px;
  right: 0;
  text-align: center;
  font-size: 1.25em;
  cursor: pointer;
  z-index: 20;
}

.doubt {
  display: none;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 65px;
  right: 0;
  font-weight: 500;
  color: #fff;
  background-color: #94122c;
  padding: 5px 10px;
  margin: 0 10px;
  z-index: 100;
}

.doubt.active {
  display: block;
}
  
.doubt:before {
  content:'';
  position: absolute;
  top: -10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #94122c transparent;
}

/* ALERTS */

.mini-alert {
  position: absolute; z-index: 50;
  bottom: 50px;
  left: 0;
  margin: 0 10px;
  padding: 5px;
  max-width: 100%;
  color: #fff;
  font-weight: 500;
  background: #e26161;
  background: rgba(226,97,97,.9);
}

.mini-alert.checkbox {
  bottom: 32px;
  margin: 0;
}
  
.mini-alert:before {
  position: absolute;
  bottom: -10px; left: 10px;
  content: '';
  display: block;
  width: 0; height: 0;
  border-right: 10px solid transparent; 
  border-top: 10px solid rgba(226,97,97,.9);
}

/* FORM */

.form {
  position: relative;
  text-align: left;
}
  .form .columns-container fieldset {
    margin-bottom: 20px;
  }

/* COLUMNS */
    
  .columns {
    float: left;
  }
  
  .two.columns,
  .three.columns,
  .four.columns,
  .five.columns,
  .six.columns,
  .seven.columns,
  .eight.columns,
  .nine.columns,
  .ten.columns,
  .twelve.columns {
    width: 100%;
  }

@media only screen and (min-width: 1024px) {
  .columns-container {
    margin: 0 -10px;
  }

  .columns {
    padding: 0 10px;
    float: left;
  }
  
  .two.columns                  { width: 16.666666%; }  
  .three.columns                { width: 24.999999%; }
  .four.columns                 { width: 33%; }
  .four.columns:nth-child(3n+2) { width: 34%; }
  .five.columns                 { width: 41.666666%; }
  .six.columns                  { width: 50%; }
  .seven.columns                { width: 58.333333%; }
  .eight.columns                { width: 66.666666%; }
  .nine.columns                 { width: 74.999999%; }
  .ten.columns                  { width: 83.333333%; }
  .twelve.columns               { width: 100%; }

}

/* GENERAL */

body {
  font-family: 'bentonsans-regular', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  background-color: #fff;
  color: #444444;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* STRUCTURE */

.body {
  background: #ccc;
}

.page-container {
  max-width: 1366px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 10px;
}

.title {
  font-size: 2.25em;
  color: #94122c;
  margin: 0;
  line-height: 1;
}

@media only screen and (min-width: 1024px) {
.wrapper {
  padding: 0 40px;
}
}

/* HEADER */

.header {
    padding: 25px 25px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

.home-logo-container {
    float: left;
  }

.header-links {
    clear: both;
    text-align: center;
  }


@media only screen and (min-width: 1024px) {

  .header {
    padding: 25px 25px;
  }

  .header--narrow {
    padding: 10px 0;
  }

  .header .wrapper {
    max-width: 1366px;
  }
}

  .home-logo-new {
    display: block;
      width: 132px;
      height: 61px;
      background: transparent url(../img/logo_cvg.png) no-repeat center;
      background-size: 100%;
    }

    /* @2x Images */   
    @media only screen and (-o-min-device-pixel-ratio: 5/4),
      only screen and (-webkit-min-device-pixel-ratio: 1.25),
      only screen and (min-device-pixel-ratio: 1.25),
      only screen and (min-resolution: 1.25dppx) {
      .home-logo-new {
        background: transparent url(../img/logo_cvg@2x.png) no-repeat center;
        background-size: 100%;
      }
    }

    /* @3x Images */
    @media only screen and (-o-min-device-pixel-ratio: 9/4),
      only screen and (-webkit-min-device-pixel-ratio: 2.25),
      only screen and (min-device-pixel-ratio: 2.25),
      only screen and (min-resolution: 2.25dppx) {
      .home-logo-new {
        background: transparent url(../img/logo_cvg@3x.png) no-repeat center;
        background-size: 100%;
      }
    }

    .partner-logo-container {
      float: right;
      padding-bottom: 15px;
      text-align: center;
    }
    
    .partner-logo {
      position: absolute;
      width: 170px;
      float: right;
      left: 50%;
      margin-left: -85px;
    }
      
      .partner-logo__text {
        font-family: 'bentonsans-regular';
        color: #94122c;
      }

      .partner-logo__image {
        display: block;
        margin-left: auto;
        max-height: 117px;
        padding-top: 10px;
      }

    @media only screen and (min-width: 1024px) {

      .home-logo-new {
        width: 148px;
        height: 66px;
      }

      .partner-logo-container {
        position: absolute;
        left: 50%;
        margin-left: -85px;
        width: 170px;
        padding-bottom: 0;
      }

      .partner-logo {
        display: block;
        margin: 0 auto;
        text-align: center;
      }

      .partner-logo__image {
        margin: 0 auto;
        max-width: 100%;
      }
    }
      .links-list {
        list-style: none;
        margin: 0;
        padding: 0;
      }
        
        .header-links__item {
          display: inline-block;
          text-align: center;
          vertical-align: middle;
          margin-bottom: 10px;
        }

          .header-links__item a {
            text-decoration: none;
          }
        
        .header-links__item::after {
          font-family: 'bentonsans-medium';
          content: '|';
          color: #94122c;
          padding: 0 10px;
        }

        .header-links__item:last-child {
          display: block;
          margin-bottom: 0; 
        }

        .header-links__item:last-child::after,
        .header-links__item:nth-child(2)::after {
          display: none;
        }

          .header-links__item-link_uppercase {
            font-family: 'bentonsans-medium';
            text-transform: uppercase;
            color: #94122c;
            font-size: 0.9em;
            text-decoration: none;
          }

          .header-links__item-link_text-big {
            color: #94122c;
            display: block;
            font-family: 'bentonsanscond-bold';
            font-size: 1.6em;
            line-height: 1;
          }
          
          .header-links__item-link_text-thin {
            color: #94122c;
            display: block;
            font-family: 'bentonsans-medium';
            font-size: .75em;
            text-transform: uppercase;
            text-decoration: none;
            margin: 0px;
            margin-top: 6px;
          }

      @media only screen and (min-width: 396px) {
        .header-links__item:last-child {
          display: inline-block;
          margin-bottom: 0;
        }

        .header-links__item:nth-child(2)::after {
          display: inline-block;
        }
      }
        
      @media only screen and (min-width: 480px) {

        .header-links__item {
          margin-bottom: 0;
        }

        .header-links__item:not(:last-of-type)::after {
          padding: 0 10px;
        }

          .header-links__item-link_text-thin {
            text-align: center;
          }

      }
      
      @media only screen and (min-width: 1024px) {
        
        .header-links__item {
          text-align: center;
        }

        .header-links {
          float: right;
          text-align: center;
          clear: none;
        }

        .header-links:last-child {
          display: block;
        }

        .header-links__item-link_text-thin {
            text-align: right;
          }
      }

/* MAIN */
  
  .offer {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .offer:nth-child(odd) .block:nth-child(odd) {
      order: 2;
  }
  
  .offer:nth-child(odd) .block:nth-child(even) {
      order: 1;
  }

  .offer:nth-child(even) .block:nth-child(odd) {
      order: 1;
  }
  
  .offer:nth-child(even) .block:nth-child(even) {
      order: 2;
  }

    .info-block {
      position: relative;
      width: 100%;
      height: 100%;
     /* background-color: #fafafa;*/
	  background-color: #fff;
    }

      .info-block .scroll {
        text-decoration: none;
      }
    
        .bottles {
          position: relative;
          width: 100%;
          text-align: center;
          padding: 40px 40px 0;
        }

          .bottles-container {
            position: relative;
          }

            .bottles-container__link {
              display: none;
            }
        
        .information {
          position: relative;
          padding: 10px;
        }

          .information-container {
            position: relative;
            text-align: center;
          }
            
            .information-container__button-close {
              display: none;
            }

            .information-container__image {
              display: none;
            }

            .information-container__title {
              text-transform: uppercase;
              font-family: 'bentonsans-bold';
              color: #94122c;
            }
            
            .information-container__text {
              font-family: 'bentonsans-medium';
              font-size: .9em;
              color: #000;
            }
            
            .information-container__legal {
              font-family: 'bentonsans-regular';
              font-size: .55em;
              color: #000;
            }

    .cta-block {
      order: 1;
      text-align: center;
      background: #fff;
      width: 100%;
    }
      
      .cta-block-container {
        padding: 40px;
      }
        
        .cta-block__text {
          margin: 0;
        }
        
        .cta-block__cta-stamp {
          width: 168px;
          height: 168px;
          display: block;
          margin: 40px auto 0;
          background-color: #efefef;
          color: #000;
          padding: 45px 0;
          
          -o-border-radius: 50%;
          -ms-border-radius: 50%;
          -moz-border-radius: 50%;
          -webkit-border-radius: 50%;
          border-radius: 50%;
        }
          
          .cta-block__cta-stamp_offer {
            font-family: 'bentonsans-regular';
            font-size: 1.2em;
            line-height: 1;
            margin: 0;
          }
            
            .cta-block__cta-stamp_price sup {
              font-family: 'bentonsanscond-bold';
              font-size: .9em;
              top: -13px;
            }

          .cta-block__cta-stamp_before {
            font-family: 'bentonsans-regular';
            font-size: .9em;
            line-height: 0;
          }

            .cta-block__cta-stamp_before .strikethrough {
              position: relative;
            }

            .cta-block__cta-stamp_before .strikethrough::before {
              position: absolute;
              top: 50%;
              margin-top: -9px;
              left: 0;
              content: '';
              height: 18px;
              width: 100%;
              display: block;
              background: url(../img/cross.png) no-repeat center center;
              background-size: 34px 17px;
            }
        
        .cta-block__legal {
          display: block;
          font-family: 'bentonsans-regular';
          font-size: .8em;
          margin: 20px auto;
          color: #000;
        }

      /* CTA-BLOCK BIG */
      .cta-block__cta-stamp--big {
          padding: 68px 0;
          width: 216px;
          height: 216px;
        }

          .cta-block__cta-stamp--big .cta-block__cta-stamp_price {
            font-size: 1.6em;
          }
          
          .cta-block__cta-stamp_price {
            font-size: 1.6em;
            font-family: 'bentonsanscond-bold';
            line-height: 1;
            margin: 0;
          }

          .cta-block__cta-stamp_before {
            font-size: 1.125em;
          }

  @media only screen and (min-width: 1024px) {

    .offer {
      display: table;
    }
    
      .offer .block:nth-child(odd)  {
          border-right: 1px solid #eee;
      }
    
    .info-block {
      display: table-cell;
      vertical-align: middle;
      width: 60%;
      overflow: hidden;
    }

        .bottles {
          padding: 80px;
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          transform: translateY(0);

          -webkit-transition: .5s cubic-bezier(.9, 0, .3, 1);
          -moz-transition: .5s cubic-bezier(.9, 0, .3, 1);
          transition: .5s cubic-bezier(.9, 0, .3, 1);
        }
        
        .active .bottles {
          -webkit-transform: translateY(-100%);
          -moz-transform: translateY(-100%);
          transform: translateY(-100%);
        }

            .bottles-container__link {
              display: block;
              position: absolute;
              width: 100%;
              margin: 0;
              color: #94122c;
              font-family: 'bentonsans-bold';
              text-transform: uppercase;
              text-decoration: underline;
            }

        .information {
          position: absolute;
          top: 100%;
          left: 0;
          height: 100%;
          width: 100%;
          /*background-color: #fafafa;*/
		  background-color: #fff;
          text-align: center;
          padding: 40px;

          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          transform: translateY(0);

          -webkit-transition: .5s cubic-bezier(.9, 0, .3, 1);
          -moz-transition: .5s cubic-bezier(.9, 0, .3, 1);
          transition: .5s cubic-bezier(.9, 0, .3, 1);
        }
        
        .active .information {
          -webkit-transform: translateY(-100%);
          -moz-transform: translateY(-100%);
          transform: translateY(-100%);
        }

            .information-container__button-close {
              position: absolute;
              right: 0;
              top: -6px;
              color: #94122c;
              font-size: 2em;
              line-height: 0;
              margin: 0;
              display: block;
            }

            .information-container__image {
              display: block;
              margin: 0 auto;
            }

    .cta-block {
      display: table-cell;
      vertical-align: middle;
      width: 40%;
    }

      .cta-block-container {
        padding: 60px;
      }
  }

.gifts {
  background: #fff;
  text-align: center;
  padding: 40px 10px;
}

    .gifts__text {
      margin: 0 auto;
    }
    
    .gifts__gifts-list {
      list-style-type: none;
      margin: 40px auto 0;
      padding: 0;
    }
      
      .gifts__gifts-item {
        width: 100%;
        padding: 15px 3%;
        position: relative;
      }
      
      .gifts__gifts-item:last-child {
        padding: 15px 3% 0;
      }

        .gifts__gifts-item figure {
          position: relative;
          width: 177px;
          height: 177px;
          padding: 25px;
          border-radius: 100%;
          border: 1px solid #eee;
          margin: 0 auto 15px;
        }

      .gifts__gifts-item .gifts__text {
        max-width: 250px;
      }
        
        .gifts__gifts-item .gifts__text .price {
          font-family: 'bentonsans-bold';
          font-size: 2em;
          color: #94122c;
          line-height: 0;
          position: relative;
        }

          .gifts__gifts-item .gifts__text .price > * {
            margin: 0;
          }

          .gifts__gifts-item .gifts__text .price .cross {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent url('../img/cross.png') no-repeat center center;
          }

@media only screen and (min-width: 1024px) {

  .gifts {
    padding: 60px;
  }

  .gifts__gifts-list {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  
  .gifts__gifts-item {
    display: table-cell;
    vertical-align: top;
    padding: 0 20px;
  }

  .gifts__gifts-item:last-child {
    padding: 0 3%;
  }
}

/* CLUB */

.club {
  background: #fafafa;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 40px 0;
}

.club--narrow {
  padding: 20px 0;
  text-align: center;
}
  
  .club .wrapper > *:first-child {
    margin-top: 0;
  }

  .club__text {
    margin: 0;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: underline;
  }

    .club__table-cell {
      text-align: center;
      margin-top: 40px;
      position: relative;
    }

    .club__square {
      border: 9px solid #94122c;
      padding: 20px;
    }

    .club__divider {
      height: 1px;
    }

    .club__divider:before {
      content: '';
      width: 94px;
      height: 1px;
      background: #cccccc;
      position: absolute;
      top: 0;
      left: 50%;
      margin-left: -47px;
    }

      .club__square__title {
        margin: 0;
        font-size: 2.125em;
        color: #94122c;
        line-height: 1.4em;
      }

        .club__square__title_big {
          font-size: 2.6470em;
          line-height: 1.4em;
          margin-bottom: -73px;
          margin-top: -15px;
          display: block;
        }

        .club__square__title__link {
          text-decoration: none;
        }

        .club__square__title__link:hover {
          text-decoration: underline;
        }

      .club__table-cell p {
        font-size: .875em;
      }

@media only screen and (min-width: 1024px) {
.club {
  padding: 60px 0;
}

.club--narrow {
  padding: 30px 0;
}

  .club__table {
    display: table;
    table-layout: fixed;
    margin-top: 60px;
  }

    .club__table-cell {
      display: table-cell;
      width: 45%;
      vertical-align: middle;
      margin: 0;
    }

    .club__divider {
      width: 10%;
      height: auto;
    }

    .club__divider:before {
      content: '';
      width: 1px;
      height: 94px;
      background: #cccccc;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -47px;
      margin-left: 0;
    }

      .club__table-cell p {
        text-align: left;
      }
}

/* FORM SECTION */

.form {
  background: #fff;
  padding: 40px 0;
}
  
  .form__title {
    text-align: center;
  }

  .form-container {
    padding-top: 40px;
  }

    .form-container__title {
      font-size: 1.25em;
      font-family: 'bentonsans-bold';
      text-transform: uppercase;
      border-bottom: 1px solid #ccc;
      padding-bottom: 14px;
      margin: 14px 0;
    }

    .form__resumen {
      width: 100%;
    }

      .form__row {
        border-bottom: 1px solid #ccc;
        text-align: right;
      }

      .form__row:last-of-type:not(.form__row_head) {
        border-bottom: none;
      }

        .form__cell_head {
          padding-top: 0 !important;
          padding-bottom: 14px;
          font-size: 0.75em;
          text-transform: uppercase;
        }

        .form__cell {
          text-align: right;
          padding: 14px 0;
        }

        .form__cell:first-child {
          text-align: left;
        }

          .form__image {
            display: none;
            padding-right: 14px;
          }
        
        .form__cell_subtotal {
          text-align: right !important;
          padding-bottom: 0;
        }

.input_float {
  margin-bottom: 15px;
}

.empty-table {
  text-align: center;
  color: #ccc;
}
  
  .empty-table > *:last-child {
    margin-bottom: 0;
  }
  
  .empty-table__icon {
    font-size: 3em;
  }

.bank {
  background: #ebebeb;
  padding: 20px;
  -o-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important;
  margin-bottom: 14px;
}

.bank__cell {
  display: table-row;
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

.policy {
  display: none;
  background: #f1f1f1;
  border: 1px solid #ccc;
  padding: 20px;
  height: 250px;
  overflow-y: auto;
  margin: 20px 0;
}

  .policy > *:first-child {
    margin-top: 0;
  }

  .policy > *:last-child {
    margin-bottom: 0;
  }

@media only screen and (min-width: 1024px) {
          .form__image {
            display: inline-block;
          }

.input_float {
  display: inline-block;
  width: auto !important;
}

.bank__cell {
  display: table-cell;
  width: auto;
  float: none;
  padding-right: 10px;
  margin-bottom: 0;
}

.bank__cell:last-child {
  padding-right: 0;
}

}

/* OPERATION */

.operation {
  background: #94122c;
  padding: 40px 0;
  color: #fff;
  text-align: center;
} 
  
  .operation .wrapper > *:last-child {
    margin-bottom: 0;
  }

  .operation__title {
    color: #fff;
  }

@media only screen and (min-width: 1024px) {
.operation {
  padding: 60px 0;
}

  .operation__title {
    margin: 0 0 60px;
  }
}

/* ENVIO */

.envio {
  background: #f1f1f1;
  padding: 40px 0;
  text-align: center;
} 

.envio__icon {
  color: #94122c;
  font-size: 4em;
  margin: 20px 0;
  display: block;
}

@media only screen and (min-width: 1024px) {
.envio {
  padding: 60px 0;
}
}

/* FOOTER */

.footer {
  padding: 30px 0;
  background: #fff;
}

  .footer__left {
    text-align: center;
  }

    .footer__left > *:first-child {
      margin-top: 0;
    }

    .footer__logo {
      display: table;
      margin: 0 auto;
      padding-bottom: 30px;
    }

      .footer__logo > * {
        display: table-cell;
        vertical-align: middle;
      }

      .footer-logo__text {
        text-align: left;
        padding-left: 10px;
        font-size: .75em;
      }

        .footer-logo__text > *:first-child {
          margin-top: 0;
        }

        .footer-logo__text > *:last-child {
          margin-bottom: 0;
        }

    .footer-list {
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: center;
    }

      .footer-list__item {
        font-size: 1.25em;
        color: #94122c;
        font-family: 'bentonsans-bold';
        margin-bottom: 30px;
      }

      .footer-list__item:last-child {
        margin-bottom: 0;
      }

@media only screen and (min-width: 1024px) {
.footer .wrapper {
  max-width: 1366px;
}

  .footer__left {
    float: left;
    text-align: left;
  }

    .footer__logo {
      padding-bottom: 0;
    }

  .footer__right {
    float: right;
  }

    .footer-list__item {
      float: left;
      margin-bottom: 0;
      margin-right: 60px;
      padding: 20px 0;
    }

    .footer-list__item:last-child {
      margin-right: 0;
    }
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

.margin-top-20 {
  margin-top: 20px;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

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

.no-margin-left {
  margin-left: 0 !important;
}

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

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

.no-padding-right {
  padding-right: 0 !important;
}

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

.no-padding-left {
  padding-left: 0 !important;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }

    a,
    a:visited {
      text-decoration: underline;
    }

    a[href]:after {
      content: " (" attr(href) ")";
    }

    abbr[title]:after {
      content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
      content: "";
    }

    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }

    thead {
      display: table-header-group;
    }

    tr,
    img {
      page-break-inside: avoid;
    }

    img {
      max-width: 100% !important;
    }

    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }

    h2,
    h3 {
      page-break-after: avoid;
    }
}