/*! add-on.css  */

/* Figure */

figure.floatright {
	height: auto;
	float: right;
}

figure.floatleft {
	height: auto;
	float: left;
}

.center {
	text-align: center;
}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 90%;
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*for leaflet map */

.leaflet-div-icon {
	border: none;
}
.leaflet-pie-label {
	font-family: sans-serif;
	background: transparent;
	border: none;
	white-space: nowrap;
}
.leaflet-pie-label.left {
	text-align: right;
}

.chartcontainer-center
{
	 margin: auto;
     max-width: 500px;
     min-width: 350px; 
	 padding: 10px;
}

.chartcontainerlean-center
{
	 margin: auto;
     max-width: 500px;
     min-width: 350px; 
	 padding: 1px;
}

.chartcontainer-left
{
     float: left;
     max-width: 500px;
     min-width: 350px;  
	 padding: 20px;
}

.chartcontainer-right
{
     float: right;
     max-width: 500px;
     min-width: 350px; 
	 padding: 20px; 
}

.chartcard {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px; /* 5px rounded corners */
}

.chartcardlean {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 1px; /* 5px rounded corners */
}

/* On mouse-over, add a deeper shadow */
.chartcard:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.chartcardcontainer {
  padding: 2px 16px;
}


.ratiochartparent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 0.8fr 0.2fr 0.6fr 0.2fr 0.6fr 0.2fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.rcdiv1 { grid-area: 1 / 1 / 2 / 2; }
.rcdiv2 { grid-area: 1 / 2 / 2 / 3; }
.rcdiv3 { grid-area: 3 / 1 / 4 / 2; }
.rcdiv4 { grid-area: 3 / 2 / 4 / 3; }
.rcdiv5 { grid-area: 5 / 1 / 6 / 2; }
.rcdiv6 { grid-area: 5 / 2 / 6 / 3; }
.rcdiv7 { grid-area: 2 / 1 / 3 / 2; }
.rcdiv8 { grid-area: 2 / 2 / 3 / 3; }
.rcdiv9 { grid-area: 4 / 1 / 5 / 2; }
.rcdiv10 { grid-area: 4 / 2 / 5 / 3; }
.rcdiv11 { grid-area: 6 / 1 / 7 / 2; }
.rcdiv12 { grid-area: 6 / 2 / 7 / 3; }


.quotelayout {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-column-gap: 5px;
grid-row-gap: 15px;
}


.site-hero {
  background-color: #2798f1;
}

img.floatright {
	width: auto;
  float: right;
  max-height: 500px;
  padding:20px;
}

@media only screen and (max-width: 768px) {
  img.floatright{
    float: none;
    margin:20px;
  }
} 

img.floatleft {
	width: auto;
  float: left;
  max-height: 500px;
  padding:20px;
 
}

@media only screen and (max-width: 768px) {
  img.floatleft{
    float: none;
    margin:20px;
  }
} 


/*buttons*/
@import url('https://fonts.googleapis.com/css?family=Lato:100&display=swap');


.center {
  height: 60px;
}

.btn {
  width: 180px;
  height: 60px;
  cursor: pointer;
  background: #671ae6;
  border: 3px solid #671ae6;
  outline: none;
  transition: 1s ease-in-out;
}

.svgbutton {
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

.btn:hover {
  transition: 1s ease-in-out;
  border: 3px solid #e9f814;
}

.btn:hover .svgbutton {
  stroke-dashoffset: -480;
}

.btn span {
  color: white;
  font-size: 18px;
  font-weight: 100;
  text-transform: uppercase;
}



