
/* Custom form */

.fsFormInput[type=text],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.fsFormInput[type=email],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.fsFormInput[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.fsFormInput[type=submit]:hover {
  background-color: #45a049;
}

.fsBuyButtonCTA {
  background-color: #e64117;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 40px;
  cursor: pointer;
}

/* Flag links */

.fsFlagButton img {
  width: 100%;
  vertical-align: middle;
  pointer-events: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}

.fsFlagButton {
  width: 20%;
  border-radius: 20%;
  display: inline-block;
  position: relative;
  box-shadow: 5px 10px 10px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: clip;
  transition-property: transform, box-shadow;
}

.fsFlagButton:hover {
  box-shadow: 8px 25px 20px -8px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}


/* Booking cards */

.fsBookingList {
  width: 100%;
}

.fsBookingList * {
  box-sizing: border-box;
  text-decoration: none;
}

.fsBookingColumn {
  float:left;
  width: 50%;
  padding: 0 10px;
}

.fsBookingRow {
  margin: 10px -5px;
}

.fsBookingRow::after {
  content:"";
  display: table;
  clear: both;
}

.fsBookingCardLorenskog {
  background-image: url("https://cdn-themes.thinkific.com/607034/372547/298ak1n0TaiGh9dJmyXs_Robsrudskogen-15.jpg");
  background-clip: border-box;
  background-position: center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
}

.fsBookingCardLorenskog:hover {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateY(-10px);
}

.fsBookingCardBergen {
  background-image: url("https://cdn-themes.thinkific.com/607034/372547/5I4UVldsSeTXtzUfEBnQ_bergen.jpg");
  background-clip: border-box;
  background-position: center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
}

.fsBookingCardBergen:hover {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateY(-10px);
}

.fsBookingCardLarvik {
  background-image: url("https://cdn-themes.thinkific.com/607034/372547/OCbIUkqQZmB3vZfJl8pa_larvik.jpg");
  background-clip: border-box;
  background-position: center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  transition: box-shadow 0.1s ease, transform 0.1s ease;
}

.fsBookingCardLarvik:hover {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateY(-10px);
}

.fsBookingCardBody {
  background-color: #001f44;
  padding: 3%;
  padding-left: 5%;
  padding-right: 5%;
  color: white;
}

.fsBookingCardButton {
  margin: 1%;
  margin-right: 1%;
  padding: 3%;
  background-color: #e64117;
  border-radius: 9%;
  margin-right: 6%;
  color: white;
  font-size: larger;
}