.zb-el-zionButton {
  display: flex;
  width: 100%;
}

.zb-el-button {
  display: flex;
}

.zb-el-button--has-icon.zb-el-button--icon-right .zb-el-button__text {
  margin-right: 10px;
}

.zb-el-button--icon-right {
  flex-direction: row-reverse;
}
.zb-el-button--icon-right .zb-el-button__icon {
  margin-right: 0;
  margin-left: 10px;
}

.zb-el-button__icon {
  margin-right: 10px;
}

.zb-el-button--icon-left {
  flex-direction: row;
}
.zb-el-button--icon-left .zb-el-button__icon {
  margin-right: 10px;
}

.zb-el-button--icon-top {
  flex-direction: column;
  align-items: center;
}
.zb-el-button--icon-top .zb-el-button__icon {
  margin-right: 0;
  margin-bottom: 5px;
}

.zb-el-button--icon-bottom {
  flex-direction: column-reverse;
  align-items: center;
}
.zb-el-button--icon-bottom .zb-el-button__icon {
  margin-top: 5px;
  margin-right: 0;
}

.zb-el-zionButton--align--right {
  justify-content: flex-end;
}

.zb-el-zionButton--align--left {
  justify-content: flex-start;
}

.zb-el-zionButton--align--center {
  justify-content: center;
}

.zb-el-button {
  padding: 15px 20px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background-color: #006dd2;
  border-radius: 3px;
}
.zb-el-button--icon-black {
  color: #fff;
  background-color: #000;
}
.zb-el-button--icon-dark {
  color: #fff;
  background-color: #3a3a3a;
}
.zb-el-button--icon-gray {
  color: #313131;
  background-color: #dcdcdc;
}
.zb-el-button--icon-white {
  color: #313131;
  background-color: #fff;
}
.zb-el-button--icon-succes {
  color: #fff;
  background-color: #28a745;
}
.zb-el-button--icon-danger {
  color: #fff;
  background-color: #dc3545;
}
.zb-el-button--icon-warning {
  color: #fff;
  background-color: #edbf34;
}
.zb-el-button--icon-info {
  color: #fff;
  background-color: #17a2b8;
}
.zb-el-button--icon-link {
  color: #006dd2;
  background: none;
}
.zb-el-button--normal {
  border-radius: 0;
}
.zb-el-button--semi-rounded {
  border-radius: 3px;
}
.zb-el-button--rounded {
  border-radius: 200px;
}
.zb-el-button--size-small {
  padding: 12px 15px;
  font-size: 13px;
}
.zb-el-button--size-normal {
  padding: 16px 20px;
  font-size: 14px;
}
.zb-el-button--size-medium {
  padding: 22px 26px;
  font-size: 14px;
}
.zb-el-button--size-large {
  padding: 26px 36px;
  font-size: 16px;
}
.zb-el-button--full-width {
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 991.98px) {
  .zb-el-zionButton--lg--align--left {
    justify-content: flex-start;
  }
  .zb-el-zionButton--lg--align--right {
    justify-content: flex-end;
  }
  .zb-el-zionButton--lg--align--center {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .zb-el-zionButton--md--align--left {
    justify-content: flex-start;
  }
  .zb-el-zionButton--md--align--right {
    justify-content: flex-end;
  }
  .zb-el-zionButton--md--align--center {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .zb-el-zionButton--sm--align--left {
    justify-content: flex-start;
  }
  .zb-el-zionButton--sm--align--right {
    justify-content: flex-end;
  }
  .zb-el-zionButton--sm--align--center {
    justify-content: center;
  }
}