.download-container {
  background-color: #212121;
  color: black;
  border: 1px solid black;
  margin: 50px 0;
}

.download-container .title {
  padding: 0px 50px 0px 0px;
  position: relative;
  display: flex;
  gap: 125px;
  align-items: center;
  background-color: #f0f0f0;
  justify-content: space-between;
  height: 100%;
}

.title p {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.5rem;
  white-space: nowrap;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: subpixel-antialiased
}

.title-end {
  padding: 0px 50px 0px 0px;
  position: relative;
  display: flex;
  gap: 200px;
  align-items: center;
  background-color: #fafafa;
}

/* Equal columns aligned */
.title-end>* {
  flex: 1;
}

.title-end::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 5px;
  transition: 0.2s;
  padding: 9px;
  font-weight: 700;
  bottom: 44px;
  cursor: pointer;
}

.title-end.active::after {
  transform: rotate(45deg);
}

#iCUEThumbnailImg {
  display: block;
  object-fit: contain;
  max-width: 144px;
  max-height: 144px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  padding: 1px 0px 1px 0px;
}

.download-name {
  display: inline-block;
  flex-shrink: 1;
}

.download-name p {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 0.84rem;
  font-weight: 100;
  letter-spacing: 0.084rem;
  line-height: 1.176rem;
  text-transform: uppercase;
  color: #505050;
}

#icueVersionDate {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 0.84rem;
  font-weight: 100;
  letter-spacing: 0.084rem;
  line-height: 1.176rem;
  text-transform: uppercase;
  color: #505050;
}

.download-url {
  text-align: right;
  cursor: pointer;
}

.download-url-mobile {
  display: none;
  cursor: pointer;
}

.download-button {
  display: inline-block;
  color: black;
}

.fa-download:before {
  font-size: 25px;
}

#iCUEDownloadImg {
  display: block;
  object-fit: contain;
  max-width: 59px;
  max-height: 59px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.infocont {
  overflow: hidden;
  transition: 0.3s;
  background-color: #f0f0f0;
  display: none;
}

.infocont.active {
  display: block;
}

.info {
  padding: 0 20px 20px;
  background-color: #f0f0f0;
}

.info h4 {
  text-align: center;
  color: black;
}

div.info p {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 2.25rem;
}

/* media queries */
@media only screen and (max-width: 1450px) {
  .download-container .title {
    gap: 75px;
  }

  .title-end::after {
    right: 0px;
  }
}

@media only screen and (max-width: 1250px) {
  .download-container .title {
    gap: 50px;
  }
}

@media only screen and (max-width: 1150px) {
  .download-container .title {
    gap: 15px;
  }
}

@media only screen and (max-width: 800px) {
  .download-container .title {
    gap: 0px;
    padding: 0px 25px 0px 0px;
  }

  .download-container .title p {
    white-space: unset;
    max-width: 200px;
    text-align: center;
  }

  #iCUEDownloadImg {
    max-width: 65px;
    max-height: 65px;
    padding: 10px;
  }

  .title-end::after {
    right: 0px;
    padding: 9px 5px;
  }
}

@media only screen and (max-width: 600px) {
  .download-container {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0px auto;
  }

  #iCUEThumbnailImg {
    max-width: 400px;
    max-height: 400px;
  }

  .download-container .title {
    flex-direction: column;
    padding: unset;
    padding: 0;
  }

  .download-container .title p {
    margin-top: 15px;
  }

  .title-end::after {
    bottom: 60px;
  }

  #icueVersionDate {
    margin-bottom: 15px;
  }

  .download-url {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 400px) {
  .fa-download:before {
    font-size: 20px;
  }
}