/*
 Theme Name:   GP Ström Bar
 Description:  GeneratePress Child Theme
 Template:     generatepress
 Version:      1.0
*/

/* Base */

::-webkit-input-placeholder {
	color: #0b1b1f !important;
}

:-moz-placeholder {
	color: #0b1b1f !important;
}

::-moz-placeholder {
	color: #0b1b1f !important;
}

:-ms-input-placeholder {
	color: #0b1b1f !important;
}

/* Utilities */

/* Components */



.bookning > *{
  max-width:1050px;
}

.bookning h2{
  margin:0 0 18px 0;
}

.bookning p{
  margin:0 0 54px 0;
  max-width:70ch;
}


.bookning .booking__form{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));

  column-gap:44px;
	row-gap: 10px;
  align-items:start;
}

.bookning .field--full--text{
  grid-column:1 / -1;
}

.bookning .row-3col{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  column-gap:44px;
}


.bookning input,
.bookning select,
.bookning textarea{
  width:100%;
  background:transparent;
  border:2px solid #0b1b1f;
  color:#0b1b1f;
  padding:14px 18px;
  outline:none;
  box-shadow:none;
}

select#boka {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%230B1B1F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
}


.bookning input,
.bookning select{
  border-radius:999px;
  height:54px;
}



.bookning textarea{
  border-radius:26px;
  min-height:210px;
  padding:18px;
  resize:vertical;
}


.bookning input:focus,
.bookning select:focus,
.bookning textarea:focus{
  outline:4px solid rgba(11,27,31,0.18);
  outline-offset:3px;
}

.booking input::placeholder, 
.booking textarea::placeholder{
	color: black;
}


.bookning input[type="submit"].booking__submit,
.bookning .wpcf7-submit.booking__submit{
 
	background-color: #0b1b1f;
	color: white;
	padding: 5px 10px;
	text-align: left;
	
	max-width: 150px;
	max-height: 40px;
	display: inline-block;
	font-size: 15px;

  	border-radius: 0 999px 999px 0;

  	cursor: pointer;
}
.bookning h5{
  margin:40px 0 0 0;
}


@media (max-width: 767px){
  .bookning .booking__form{
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }


  .bookning .row-3col{
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }
}

