.cc-card {
  margin: auto;
  margin-top: 25px;
  background-color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  padding: 22px 20px;
}
@media only screen and (max-width: 700px) {
  .cc-card {
    width: 95%;
    padding-top: 15px;
    margin-top: 45px;
  }
}
.cc-card.cc-card-highlight {
  border: 2px solid #EC5D35;
}
.cc-card-offer {
  background-color: #EC5D35;
  position: absolute;
  width: 220px;
  left: 8px;
  top: -37px;
  border-radius: 10px 10px 0px 0px;
  padding: 0px 5px;
  margin-bottom: 5px;
  color: #FCFCFC;
  font-size: 15px;
  padding-top: 5px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 5px;
}
.cc-card-offer p {
  margin: 0;
}
.cc-card p {
  margin: 0;
}
.cc-card-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cc-card-content-first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20%;
}
@media only screen and (max-width: 1300px) {
  .cc-card-content-first {
    width: 24%;
  }
}
@media only screen and (max-width: 700px) {
  .cc-card-content-first {
    flex-direction: row;
    margin: auto;
    width: 90%;
    align-items: center;
  }
}
.cc-card-content-first-logo {
  margin-bottom: 10px;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-first-logo {
    max-width: 50%;
    width: 42%;
    height: auto;
    margin-bottom: 0;
  }
}
.cc-card-content-second {
  width: 50%;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-second {
    width: 100%;
    margin-top: 15px;
  }
}
.cc-card-content-second-box {
  background-color: #E7F8F4;
  padding: 10px 15px;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-second-box p, .cc-card-content-second-box b {
    font-size: 14px;
  }
}
.cc-card-content-second-box-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-card-content-third {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 20%;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-third {
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-top: 15px;
  }
}
.cc-card-content-third-btn {
  background-color: #00B38C;
  border-radius: 12px;
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 10px 0px;
  width: 100%;
  margin: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  outline: 0;
  border: 0;
}
.cc-card-content-third-btn:hover {
  background-color: #2D8668;
}
.cc-card-content-third-btn svg {
  position: relative;
  max-height: 32px;
  width: 16px;
  height: 28px;
  margin-left: 10px;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-third-btn {
    width: 48%;
    margin: 0;
  }
}
.cc-card-content-third-seemore {
  position: relative;
  border: 1px solid #00B38C;
  border-radius: 12px;
  font-size: 12px;
  color: #00B38C;
  text-align: center;
  padding: 10px 0px;
  transition: 0.2s ease-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: white;
  width: 100%;
  margin: 0 auto;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-card-content-third-seemore svg {
  margin-left: 5px;
  width: 10px;
  height: auto;
}
.cc-card-content-third-seemore svg path {
  fill: #00B38C;
}
@media only screen and (max-width: 700px) {
  .cc-card-content-third-seemore {
    width: 48%;
    font-size: 15px;
    height: 48px;
    padding: 0;
    margin: 0;
  }
}
.cc-card-extra {
  margin-top: 10px;
}
@media only screen and (max-width: 700px) {
  .cc-card-extra {
    margin-top: 15px;
  }
}
.cc-card-extra.hidden-height {
  height: 0;
  max-height: 0;
  visibility: hidden;
  margin-top: 0;
}
.cc-card-extra-box {
  width: 60%;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 700px) {
  .cc-card-extra-box {
    width: 100%;
  }
}
.cc-card-extra-box-info {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
}
.cc-card-extra-box-info:nth-child(even) {
  background-color: #D4F4ED;
}
.cc-card-extra-box-info:nth-child(odd) {
  background-color: #E7F8F4;
}