.wpify-woo-delivery-date {
  margin-bottom: 1.5rem;

  &__line {
	p {
	  margin-bottom: 0;
	}

	span {
	  font-weight: bold;
	  color: green;
	}
  }

  &__info {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s linear;

	&.show {
	  max-height: 700px;
	  overflow-y: auto;
	}
  }

  &__country-select {
	width: 100%;
	max-width: 300px;
	margin: 10px 0;
  }

  &__shipping-methods {
	height: 0;
	overflow: hidden;
	transition: max-height 0.5s linear;

	&.show {
	  height: auto;
	  overflow-y: auto;
	}
  }

  table {
	border-collapse: collapse;
	border: 0;
	width: 100%;
	max-width: 300px;

	th {
	  border: 0;
	  padding: 2px;
	  text-align: left;
	}

	td {
	  border: 0;
	  padding: 2px;
	  text-align: right;
	}
  }
}
