/*
Plugin Name: SRI Get Rates Sticky Widget
Plugin URI: https://www.themitchellsagency.com
Description: Simple sticky widget that starts opened and tells users to click through to get rates. Sends users to Contact page.
Version: 1.0
Author: Justin Higgs
License: Use it and spread the love.
*/
.home .sri-sticky-get-pricing-widget {
  top: 60vh;
}
.sri-sticky-get-pricing-widget {
  position: fixed;
  z-index: 999;
  top: 38vh;
  width: 320px;
  left: -320px;
  -webkit-box-shadow: 3px 2px 8px 0 rgba(44, 42, 41, 0.2);
          box-shadow: 3px 2px 8px 0 rgba(44, 42, 41, 0.2);
  color: #fff;
  word-wrap: break-word;
  //text-align: center;
}
.sri-sticky-get-pricing-widget h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
  //text-transform: uppercase;
  font-weight: 600;
}
.sri-sticky-get-pricing-widget a {
  color: #fff;
  text-decoration: underline;
}
.sri-sticky-get-pricing-widget a:hover {
  color: #e2b13f;
}
.sri-sticky-get-pricing-widget p {
  margin-bottom: 10px;
}
.sri-sticky-get-pricing-widget .sticky-get-pricing-widget__left-chunk {
  float: left;
  width: 85%;
  padding: 15px;
  background-image: url(../img/background.jpg);
}
.sri-sticky-get-pricing-widget .sticky-get-pricing-widget__left-chunk .btn {
  margin-bottom: 0;
}
.sri-sticky-get-pricing-widget .sticky-get-pricing-widget__right-chunk {
  position: absolute;
  right: 0;
  padding: 10px;
  width: 15%;
  background: #e2b13f;
  height: 100%;
}
.sri-sticky-get-pricing-widget .pull-right {
  text-decoration: none;
}
.sri-sticky-get-pricing-widget #openStickyGetPricingWidget {
  visibility: hidden;
  cursor: pointer;
  clear: right;
  position: absolute;
  color: #fff;
  font-size: 38px;
  right: 3px;
  width: auto;
  top: 50%;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  -webkit-transition: 300ms all;
  transition: 300ms all;
}
.sri-sticky-get-pricing-widget #openStickyGetPricingWidget:hover {
  right: 0;
  text-shadow: 2px 1px 4px #666;
  text-decoration: none;
  -webkit-transition: 300ms all;
  transition: 300ms all;
}
.sri-sticky-get-pricing-widget #closeStickyGetPricingWidget {
  visibility: hidden;
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.75;
  text-decoration: none;
  color: #eee;
}
.sri-sticky-get-pricing-widget #closeStickyGetPricingWidget:hover {
  text-decoration: none;
  color: #fff;
}
