/* Call To Action Button */

.call-to-action-button {
    position: fixed;
    z-index: 999;
    right: 18px;
    top: 88px;
    text-align: center;
  }

  .btn-ecommerce {
    background-color: #212d8a !important;
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.05), 0 3px 14px 2px rgba(0,0,0,0.05), 0 5px 5px -3px rgba(0,0,0,0.3);
  }

  .btn-ecommerce:hover {
    background-color: #ea7c00 !important;
    box-shadow: 0 12px 14px 5px rgba(0,0,0,0.05), 0 7px 18px 6px rgba(0,0,0,0.05), 0 9px 9px -7px rgba(0,0,0,0.3);
  }

  .btn-ecommerce img {
    width: 24px;
    margin-top: 12px;
    margin-left: -2px;
  }

    /*
    .btn-ecommerce img.picto-white,
    .btn-ecommerce:hover img.picto-blue {
      display: none;
    }

    .btn-ecommerce:hover img.picto-white,
    .btn-ecommerce img.picto-blue {
      display: inline;
    }
    */

    .button-text {
      display: none;
    }

    .button-text .material-icons {
      font-size: 18px;
      margin-left: .5em;
    }


    @media (min-width: 768px) {
      .call-to-action-button {
        right: 24px;
        top: 108px;
      }
      .call-to-action-button .btn-floating.btn-large.btn-ecommerce {
        width: 56px;
        height: 56px;
        line-height: 56px;
      }
      .btn-ecommerce img {
        width: 32px;
        margin-top: 12px;
      }
      .button-text {
        display: block;
        margin-top: .5em;
        font-family: 'Rubik', Helvetica, Arial, sans-serif;
        font-weight: 900;
        font-style: italic;
        text-transform: uppercase;
        font-size: 12px;
        padding: .3em 1em;
        border-radius: 10px;
        background-color: rgba(33,45,138,.8);
      }
    }

    @media (min-width: 960px) {
      .call-to-action-button {
        right: 36px;
      }
      .call-to-action-button .btn-floating.btn-large.btn-ecommerce {
        width: 72px;
        height: 72px;
        line-height: 72px;
      }
      .button-text {
        font-size: 14px;
      }
      .call-to-action-button .btn-ecommerce img {
        width: 36px;
        margin-top: 20px;
      }
    }


/* Commerces List */

.commerces-list {
    margin: 0;
    justify-content: flex-start;
  }

  .commerces-list li {
    position: relative;
    width: calc(50% - 1px);
    margin: 1px 1px 0 0;
    height: 33vh
  }

  .commerces-list li .btn-ecommerce {
    position: absolute;
    right: 16px;
    bottom: 16px;
  }

  .commerces-list li img {
    margin: 0 auto;
    max-width: 70%;
    max-height: 80%;
  }

    @media (min-width: 768px) {
      .commerces-list li {
        height: 20vh;
        width: calc(25% - 1px);
      }
      .commerces-list.three-col li {
        height: 30vh;
        width: calc(33.3% - 1px);
      }
      .commerces-list li .btn-ecommerce img {
        width: 32px;
        margin-top: 12px;
      }
    }

    @media (min-width: 960px) {
      .commerces-list li {
        height: 33vh;
      }
      .commerces-list li img {
        max-width: 300px;
      }
    }