.kupo-dashboard {
  padding: 10px;
}
@media (min-width: 1000px) {
  .kupo-dashboard {
    padding: 20px 40px;
  }
}
@media (min-width: 1600px) {
  .kupo-dashboard {
    max-width: 80%;
    padding: 20px 0;
    margin: 0 auto;
  }
}
.kupo-dashboard a, .kupo-dashboard strong, .kupo-dashboard span, .kupo-dashboard p {
  font-family: var(--smgCupoFontFamily, "Montserrat", Arial, sans-serif);
}
.kupo-dashboard h1 {
  font-family: var(--smgCupoHeadingFontFamily, "Poppins", Arial, sans-serif);
  font-weight: bold;
  color: var(--smgCupoPrimaryColor, #ed6102);
  font-size: 34px;
  line-height: 54px;
  padding: 0;
  margin: 0;
}
.kupo-dashboard h2 {
  margin: 20px 0;
  padding: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  color: var(--smgCupoPrimaryColor, #ed6102);
}
.kupo-dashboard > header,
.kupo-dashboard .kupo-dashboard-actions,
.kupo-dashboard .kupo-dashboard-advertisement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
  column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 1350px) {
  .kupo-dashboard > header {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .kupo-dashboard .kupo-dashboard-actions {
    flex-flow: row wrap;
    justify-content: space-evenly;
  }
}
.kupo-dashboard .kupo-dashboard-action {
  border-radius: 6px;
  border: 1px solid #bdbdbd;
  padding: 10px;
  width: 150px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.kupo-dashboard .kupo-dashboard-action > svg {
  height: 40px;
  width: 40px;
  fill: #000;
  cursor: pointer;
}
.kupo-dashboard .kupo-dashboard-action > span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  margin-top: 15px;
  color: #000;
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
}
.kupo-dashboard .kupo-dashboard-action:hover, .kupo-dashboard .kupo-dashboard-action:focus {
  border-color: var(--smgCupoPrimaryColor, #ed6102);
  background: var(--smgCupoPrimaryColor, #ed6102);
}
.kupo-dashboard .kupo-dashboard-action:hover > svg, .kupo-dashboard .kupo-dashboard-action:focus > svg {
  fill: #fff;
}
.kupo-dashboard .kupo-dashboard-action:hover > span, .kupo-dashboard .kupo-dashboard-action:focus > span {
  color: #fff;
}
.kupo-dashboard .kupo-dashboard-advertisement {
  column-gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1350px) {
  .kupo-dashboard .kupo-dashboard-advertisement {
    flex-flow: column;
    align-items: flex-start;
  }
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr;
  grid-template-areas: "top-offer none" "top-offer none" "top-offer none";
  column-gap: 10px;
  row-gap: 10px;
  flex: 1 0 auto;
}
@media (max-width: 850px) {
  .kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers {
    grid-template-columns: 1fr;
    grid-template-areas: "top-offer" "none" "none" "none";
  }
}
@media (max-width: 1350px) {
  .kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers {
    width: 100%;
  }
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer {
  background-position: center;
  background-size: cover;
  height: 150px;
  position: relative;
  border-radius: 0 6px 6px 0;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer.kupo-dashboard-top-offer {
  grid-area: top-offer;
  border-radius: 6px 0 0 6px;
}
@media (min-width: 851px) {
  .kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer.kupo-dashboard-top-offer {
    height: auto;
  }
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer .kupo-dashboard-offer-price, .kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer .kupo-dashboard-offer-description {
  position: absolute;
  color: #fff;
  padding: 10px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 13px;
  line-height: 20px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer .kupo-dashboard-offer-price {
  background: var(--smgCupoPrimaryColor, #ed6102);
  right: 10px;
  top: 10px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-offers .kupo-dashboard-offer .kupo-dashboard-offer-description {
  background: rgba(188, 188, 188, 0.8);
  bottom: 10px;
  left: 10px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency {
  max-width: 450px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency > h2 {
  margin: 0 0 20px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency > p {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-opening-hours {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-opening-hours .kupo-opening-hour {
  text-align: center;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-opening-hours-additional-information {
  margin-top: 10px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact .kupo-address-detail {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact .kupo-address-detail:not(:first-child) {
  margin-top: 20px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact .kupo-address-detail svg {
  height: 30px;
  width: 30px;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact .kupo-address-detail .kupo-contact-link {
  cursor: pointer;
  color: inherit;
}
.kupo-dashboard .kupo-dashboard-advertisement .kupo-dashboard-travel-agency .kupo-dashboard-contact .kupo-address-detail .kupo-contact-link:hover {
  color: var(--smgCupoPrimaryColor, #ed6102);
}
