/**
 * Stylesheet for meilenoptimieren.com Hotel Boxes Plugin
 *
 * @category WordPressPlugin
 * @package  Meilenoptimieren.com
 * @author   Joswig Solutions UG <manuel@joswigsolutions.com>
 * @license  GPL2, https://www.gnu.org/licenses/gpl-2.0.html
 * @link     https://joswigsolutions.com/
 */

.hotel-box {
  border: 1px solid #25325c;
  color: rgba(0, 0, 0, 0.87);
  text-align: center;
}

.hotel-box .box-header {
  display: flex;
  flex-direction: column;
}

.hotel-box .box-header .thumbnail-wrapper .hotel-thumbnail {
  width: 100%;
}

.hotel-box .box-header .text-wrapper {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.hotel-box .box-header .text-wrapper .title {
  color: #25325c;
  line-height: 1.5;
}

.hotel-box .box-header .text-wrapper .description {
  color: #25325c;
  line-height: 1.3;
}

.hotel-box .box-body {
  padding: 1.5rem;
}

.hotel-box .box-body .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 2.5rem;
  margin-top: -2rem;
}

.hotel-box .box-body .icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  width: calc(33.3% - 1rem);
}

.hotel-box .box-body .icons .icon img {
  height: 64px;
  width: auto;
  margin-bottom: 0.5rem;
  box-shadow: none;
}

.hotel-box .box-body .icons .icon span {
  font-weight: bold;
  line-height: 1.1;
}

.hotel-box .box-body .button-wrapper {
  display: flex;
  justify-content: space-around;
}

.hotel-box .box-body .button-wrapper .btn-orange {
  margin-right: 2rem;
}

@media (max-width: 640px) {
  .hotel-box {
    text-align: left;
  }

  .hotel-box .box-body .icons {
    margin-bottom: 2rem;
    margin-top: -1rem;
  }

  .hotel-box .box-body .icons .icon {
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .hotel-box .box-body .icons .icon img {
    height: 48px;
  }

  .hotel-box .box-body .icons .icon img {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }

  .hotel-box .box-body .button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hotel-box .box-body .button-wrapper .btn {
    width: fit-content;
  }

  .hotel-box .box-body .button-wrapper .btn-orange {
    margin-bottom: 3px;
    margin-right: 0;
  }
}