@charset "utf-8";
/* CSS Document */

.cropped{
width: 1000px; 
height: 350px; 
object-fit: cover;
object-position: left;
	
}

.cropped-pie{
width: 670px; 
height: 475px; 
object-fit: cover;
object-position: left;
	
}


/* Dropdown Button */
.dropbtn {
     border: none;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 18px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    background-color: #4CAF50;
    font-weight: bold;
    float: right;
    margin-top: 50px;
    margin-right: 10px;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
  display: inline-block;
	float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	text-align: center;
  display: none;
  position: absolute;
  background-color: #fefefe;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
margin-top: 76px;
	margin-left: -30px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}






.myBtn{
	border: none;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 18px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
	background-color: #4CAF50;
	font-weight: bold;
	float: right;
    /*margin-top: 50px; 
    margin-right: 90px;*/

}

.dymoBtn{
	border: none;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 18px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
	background-color: #4CAF50;
	font-weight: bold;
}
.dymoBtn2{
	border: none;
    border-radius: 5px;
    display: inline-block;
    padding: 6px 18px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
	background-color: #4CAF50;
	font-weight: bold;
	float: right;
    margin-top: 50px;
    margin-right: 10px;
}


.dymoview{
	width: 180px;
	height: 40px;
  border: 1px solid black;
  border-radius: 15px;
  padding: 25px;
padding-bottom: 50px;
  margin: 10px;
  text-align: center;
}

/* The Modal (background) */
.dymo {
/*display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.dymo-content {
margin-top: 15%;
  background-color: #fefefe;
  margin-inline: auto; /* 15% from the top and centered */
  padding: 20px;
  border: 5px solid #888;
  width: 300px; /* Could be more or less, depending on screen size */

}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 10%; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 400px; /* Could be more or less, depending on screen size */
float: right;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
/* The Close Button */
.close2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.close2:hover,
.close2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}



/**
 * Position icons into circle (SO)
 * http://stackoverflow.com/q/12813573/1397351 
 */
.circle-container {
	position: relative;
	width: 24em;
	height: 30em;
	padding: 2.8em; /*= 2em * 1.4 (2em = half the width of an img, 1.4 = sqrt(2))*/
	margin: 2em auto 0;
	margin-top: 5em;
}
	
.circle-container a {
	display: block;
	/*overflow: hidden;*/
	position: absolute;
	top: 50%; left: 40%;
	width: 12em; height: 12em;
	margin: -2em; /* 2em = 4em/2 */ /* half the width */
	z-index: 9;
}
.circle-container img { display: block; width: 100%; }
.deg0 { transform: translate(18em); } /* 12em = half the width of the wrapper */
.deg20 { transform: rotate(20deg) translate(18em) rotate(-20deg); }
.deg45 { transform: rotate(45deg) translate(18em) rotate(-45deg); }
.deg270 { transform: rotate(270deg) translate(18em) rotate(-270deg); }
.deg135 { transform: rotate(135deg) translate(18em) rotate(-135deg); }
.deg180 { transform: translate(-18em); }
.deg225 { transform: rotate(225deg) translate(18em) rotate(-225deg); }
.deg315 { transform: rotate(315deg) translate(18em) rotate(-315deg); }
.deg90 { transform: rotate(90deg) translate(18em) rotate(-90deg); }


.order-no{
    padding-left: 7.5em;
    padding-top: 3.1em;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    font-size: 80px;
}
.unlock-no{
	padding-left: 0.35em;
    padding-top: 3.1em;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    font-size: 80px;
}

.quote-no{
	padding-left: 1.4em;
    padding-top: 5.65em;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    font-size: 80px;
}


.quote-ready{
    padding-left: 6.5em;
    padding-top: 5.65em;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    font-size: 80px;
}

.booking-table{
	font-size: 20px;

	
}


.body{
	font-family:'Lato', sans-serif;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
    color: #ff0000;
}

.body a {
font-weight : bold;
text-decoration: none; 
color:#4CAF50;
}
.body a:hover {
font-weight : bold;
text-decoration: none; 
color:#2AD933;
}



.header{
	min-height: 8em;
	width: 100%;
	position: absolute;
	outline: #000000;
	outline-width: 0.1em;
	outline-style: solid;
}

.title{
	
	text-align: center;
	padding-top:0.75em;
	font-family:'Lato', sans-serif;
	font-size: 3em;
	font-weight: Bold;
}

.header-logo__img{
	float: left;
	padding-top: 10px;
}

.main{
	min-height: 30em;
	padding-top: 5em;
	/*padding-left: 5em;
	padding-right: 5em;*/
}

.buttons{
	border-style: solid;
	border-color: #ddd;
    padding: 5px;
    background: #f2f2f2;
}
.buttons-top{
	border-style: solid;
	border-color: #ddd;
    padding: 5px;
    background: #f2f2f2;
	float: right;
}


table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    white-space: normal;
    line-height: normal;
    font-weight: normal;
    font-size: medium;
    font-style: normal;
    color: -internal-quirk-inherit;
    text-align: start;
    border-spacing: 2px;
    border-color: grey;
    font-variant: normal;
}

th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
	background-color: #4CAF50;
    color: white;
}

th, td {
    border-bottom: 1px solid #ddd;
    padding: 5px;
    text-align: center;
}
tr {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 16px;
}

tr:nth-child(odd) {
    background-color: #f2f2f2;	
}

.LazyList{
	
	margin-top: 3em;
    float: right;
}

.LazyList a{
	color: #000;
	
}

.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
  opacity: 0;
  transition: opacity 1s;
}

.footer{
	color: #FFFFFF;
	float: left;
	padding-top:2em;
	padding-left: 1.75em;
	background-color:#000000;
	width: 100%;
}
.footer img{
	float: left;
}
.footer a{
	color: #FFFFFF;
	font-weight: bold;
}
.footer p{
	padding-left: 30em;
}
.footermid{
	color: #FFFFFF;
	float: left;
	padding-top:2em;
	padding-left: 4.75em;
	width: 100%;
	
}
.footermid a{
	color: #FFFFFF;
	font-weight: bold;
}
.footermid p{
	padding-left: 30em;
}



.fade-out-container{
	
    display: flex;
    justify-content: center;
    position: absolute;
    margin-top: 150px;
    width: 100%;
	pointer-events: none; 
}

.fade-out {
	background-color: #4CAF50;
    color: white;
    padding: 5px;
  animation: fadeOut ease 2s forwards;
  -webkit-animation: fadeOut ease 2s forwards;
  -moz-animation: fadeOut ease 2s forwards;
  -o-animation: fadeOut ease 2s forwards;
  -ms-animation: fadeOut ease 2s forwards;
	pointer-events: none; 
}
@keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
}


