.button {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 15px 25px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.33px;
  color: #ffffff;
  background-color: #00aeef;
  border-radius: 6px;
}

.button--outline {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 15px 25px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.33px;
  background-color: transparent;
  color: #00aeef;
  border: 1px solid #00aeef;
}

.button--upload {
  padding: 10px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button--upload i {
  background-image: url("../assets/gfx/icons/icon-upload-white.svg");
  width: 23px;
  height: 24px;
  margin-left: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.button--download {
  padding: 10px 15px 10px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button--download i {
  background-image: url("../assets/gfx/icons/icon-download-white.svg");
  width: 23px;
  height: 24px;
  margin-right: 13px;
  background-size: contain;
  background-repeat: no-repeat;
}

.delete {
  width: 23px;
  height: 23px;
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}

.delete:before,
.delete:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #00aeef;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.delete:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.close,
.delete {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close:before,
.close:after,
.delete:before,
.delete:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  background-color: #00aeef;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close:after,
.delete:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.back-link {
  text-decoration: none;
  color: #00aeef;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1000;
}

@media (min-width: 1200px) {
  .back-link {
    left: 60px;
  }
}

.back-link:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 6px;
  background-image: url("../assets/gfx/icons/icon-chevron-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cta-delete {
  padding: 0;
  margin-right: 10px;
  border: none;
  background-color: transparent;
  color: #00aeef;
  font-size: 14px;
  line-height: 28px;
}

.cta-delete:focus {
  outline: none;
}

.cta-delete:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  background-image: url("../assets/gfx/icons/icon-trash-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  float: left;
}

.cta-copy {
  padding: 0;
  margin-right: 10px;
  border: none;
  background-color: transparent;
  color: #00aeef;
  font-size: 14px;
  line-height: 28px;
}

.cta-copy:focus {
  outline: none;
}

.cta-copy:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  background-image: url("../assets/gfx/icons/icon-copy-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  float: left;
}
