@import url(../libs/normalize-css/normalize.css);
@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-Light.otf");
  font-weight: 400;
  font-display: swap; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-RegularItalic.otf");
  font-weight: 400;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-SemiBold.otf");
  font-weight: 600;
  font-display: swap; }

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy-ExtraBold.otf");
  font-weight: 700;
  font-display: swap; }

@font-face {
  font-family: 'Hobo-Bobbi';
  src: url("../fonts/HoboStd.otf");
  font-weight: 400;
  font-display: swap; }

* {
  box-sizing: border-box; }
  *:before, *:after {
    box-sizing: border-box; }

html, body {
  position:relative;
  overflow-x:hidden; }

body {
  color: #264357;
  font-size: 14px;
  line-height: 1.6;
  font-family: Gilroy, sans-serif;
  background-color: #faf8f5; }



h1 {
  font-family: Hobo-Bobbi, serif;
  font-size: 3.5em;
  line-height: 1.3; }

h2 {
  font-family: Hobo-Bobbi, serif;
  font-size: 2.85em;
  line-height: 1.3; }

h3 {
  font-family: Hobo-Bobbi, serif;
  font-size: 2.28em;
  line-height: 1.3; }

h4 {
  font-size: 1.42em;
  font-weight: 600;
  line-height: 1.3; }

h5 {
  font-size: 14px;
  line-height: 18px; }

a{
  color: #DF655A;
}  

a:hover, a:active, a:focus {
  color: #264357;
  outline: 0;
  text-decoration: none; }

input::-moz-focus-inner {
  border: 0; }

object, embed {
  outline: 0; }

::-webkit-input-placeholder {
  color: #9AA3B7;
  opacity: 1; }

::-moz-placeholder {
  color: #9AA3B7;
  opacity: 1; }

:-ms-input-placeholder {
  color: #9AA3B7;
  opacity: 1; }

::-ms-input-placeholder {
  color: #9AA3B7;
  opacity: 1; }

::placeholder {
  color: #9AA3B7;
  opacity: 1; }

.main-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  z-index: 99;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left; }
    .main-menu ul li {
      display: block;
      padding-left: 24px;
      padding-right: 24px;
      margin-bottom: 30px;
      line-height: 1; }
      .main-menu ul li a {
        position: relative;
        color: #264357;
        font-size: 12px;
        line-height: 14px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        letter-spacing: 0.1em;
        text-transform: capitalize;
        -webkit-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out; }
        .main-menu ul li a:hover {
          color: #264357; }
.main-menu ul li ul {
	margin-top:24px;
}

.main-menu.open {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%); }

.main-menu .menu-button a {
  padding: 18px 65px;
  border: 1px solid #DF655A;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .main-menu .menu-button a:hover {
    background-color: #DF655A;
    color: #fff; }

.dropdown-link:after {
  content: url("../img/arrow-down.svg");
  position: absolute;
  right: -5px;
  top: -2px; }

/* Toggle */
.toggle-btn {
  display: block;
  position: absolute;
  top: 24px;
  left: 15px;
  z-index: 9999999; }

.toggle-btn .hamburger {
  background-color: transparent;
  cursor: pointer;
  display: block; }

.hamburger .icon-bar {
  background-color: #DF655A;
  display: block;
  height: 2px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 15px; }

.hamburger .icon-bar:not(:last-child) {
  margin-bottom: 3px; }

.menu-open .hamburger .icon-bar:nth-of-type(1) {
  top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.menu-open .hamburger .icon-bar:nth-of-type(2) {
  background-color: transparent; }

.menu-open .hamburger .icon-bar:nth-of-type(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

@media only screen and (min-width: 992px) {
  .main-menu {
    position: unset;
    background-color: transparent;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    font-size: 14px;
    font-weight: 400; }
    .main-menu ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .main-menu ul li {
		  position:relative;
        display: inline-block;
        padding-left: 7px;
        padding-right: 7px;
		  padding-top:15px;
		  padding-bottom: 15px;
        line-height: 1;
        margin-bottom: 0; }
        .main-menu ul li:last-child {
          padding-right: 0; }
        .main-menu ul li:first-child {
          padding-left: 0; }
        .main-menu ul li a {
          color: #264357;
          text-decoration: none;
          -webkit-transition: color 0.3s ease-in-out;
          transition: color 0.3s ease-in-out; }
          .main-menu ul li.current-menu-item > a {
            color: #DF655A;}
          .main-menu ul li a:hover {
            color: #DF655A; }
	.main-menu ul li ul{
		display:none;
		position:absolute;
		margin-top:0;
		top:45px;
		left:0;
		width:200px;
		border-radius:5px;
		background-color:#fff;
		padding:10px 15px;
		z-index:99;
	}
	.main-menu ul li ul li{
		display:block;
		padding:5px 0;
		text-align:left;
	}
  .toggle-btn {
    display: none; }
  .brand {
    text-align: left; } }

@media only screen and (min-width: 1200px) {
  .main-menu ul li {
    padding-left: 7px;
    padding-right: 7px; }
    .main-menu ul li:first-child {
      padding-left: 0; }
    .main-menu ul li:last-child {
      padding-right: 0; } }

@media only screen and (min-width: 1400px) {
  .main-menu ul li {
    padding-left: 12px;
    padding-right: 12px; } }

#top-bar {
  margin-top: -62px;
  background: -webkit-linear-gradient(left, #58ABF7 0%, #6A54F1 100%);
  background: linear-gradient(90deg, #58ABF7 0%, #6A54F1 100%);
  opacity: 0.6;
  position: relative;
  padding: 20px;
  color: #fff;
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
  margin-bottom: 0; }
  #top-bar .close-top-bar-button {
    position: absolute;
    right: 15px;
    top: 17px;
    cursor: pointer; }
  #top-bar.open {
    margin-top: 0; }

header {
  padding: 15px 0; }

.custom-logo{
  max-width: 100%;
  height: auto;
}

.top-cart {
  white-space: nowrap;
  color: #DF655A;
  position: absolute;
  top: 17px;
  right: 8px; }

.cart-contents{
	font-size:12px;
}

.home-hero-subtitle {
  font-weight: 600;
  font-size: 1.28em; }

.home-hero-yellow-element {
  margin-right: 30%; }

.blue-button {
  font-size: 1.14em;
  color: #fff;
  line-height: 1;
  background: -webkit-linear-gradient(left, rgba(88, 171, 247, 0.6) 0%, rgba(106, 84, 241, 0.6) 100%);
  background: linear-gradient(90deg, rgba(88, 171, 247, 0.6) 0%, rgba(106, 84, 241, 0.6) 100%);
  border-radius: 50px;
  padding: 22px 60px; }

#home-hero {
  padding: 30px 0; }

.home-hero-pink-element {
  position: absolute;
  top: 237px;
  left: -90px; }

.home-hero-violete-element {
  position: absolute;
  top: 50px;
  right: -50px; }

#features {
  padding: 60px 0; }

.feature-wrap {
  background-color: #fff;
  height: 100%;
  padding: 20px;
  border-radius: 40px; }

.feature-wrap a{
  color: #264357;
}

.feature-wrap a:hover{
  color: #DF655A;
}  

.feature-img {
  height: 289px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  transition: opacity .15s ease; }

.feature-wrap a:hover .feature-img{
  opacity: .75;
}  

.feature-title {
  padding-top: 28px;
  padding-bottom: 5px;
  text-align: center;
  font-size: 1.43em;
  font-weight: 600; }

.features-pink-element {
  position: absolute;
  top: -30px;
  left: -68px; }

.features-yellow-element {
  position: absolute;
  top: -25px;
  left: 24%; }

.features-violete-element {
  position: absolute;
  top: -60px;
  left: 47%; }

.features-green-element {
  position: absolute;
  top: -60px;
  right: -50px; }

.feature-blue-element {
  position: absolute;
  bottom: -60px;
  left: -20px; }

.home-product-yellow-element {
  position: absolute;
  top: -30px;
  right: 60px; }

.home-product-viotele-element {
  position: absolute;
  bottom: 0;
  right: 20%; }

.light-up-shoes-pink-element {
  position: absolute;
  top: 0;
  right: -80px; }

.light-up-shoes-red-element {
  position: absolute;
  bottom: -100px;
  left: 23%; }

.attachable-plushies-form-element {
  position: absolute;
  right: -350px;
  top: -230px;
  z-index: -1; }

.attachable-plushies-white-element {
  position: absolute;
  top: -180px;
  right: 23%; }

.attachable-plushies-orange-element {
  position: absolute;
  bottom: -120px;
  left: 10%; }

.home-products-row {
  margin-bottom: 100px; }

#new-products {
  padding: 120px 0 60px; }

.product-wrap {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 37px 20px 20px;
  text-align: center;
  position: relative; }

.woocommerce .product-wrap .star-rating{
  margin-left: auto;
  margin-right: auto;
}

.woocommerce span.onsale, .onsale {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 59px;
  height: 59px;
  background-color: #F27F1B;
  color: #fff;
  border-radius: 50%;
  -webkit-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  transform: rotate(-17deg); }

.product-image {
  margin-bottom: 40px; }

.product-wrap .product-image img{
  max-height: 229px;
}

.product-wrap .entry-title {
  color: #264357;
  padding-left: 13px;
  padding-right: 13px;
  margin-bottom: 10px; }

.price {
  font-weight: 600;
  line-height: 32px; }
  .price del {
    font-size: 1.42em;
    color: #AABAC5; }
  .price ins {
    font-size: 1.71em;
    color: #4FC137;
    text-decoration: none; }

.newest-product-shape-form {
  position: absolute;
  left: -500px;
  top: 0;
  z-index: -1; }

.newest-product-green-element {
  position: absolute;
  top: -100px;
  right: 10%; }

.newest-product-white-element {
  position: absolute;
  bottom: -60px;
  left: 0; }

#paint-product {
  padding: 60px 0; }

.paint-product-green-element {
  position: absolute;
  top: -60px;
  right: 20%; }

.paint-product-red-element {
  position: absolute;
  bottom: -30px;
  left: -50px; }

#bobbi-dobbiez {
  padding: 60px 0; }

.bobbi-dobbiez-shape-form {
  position: absolute;
  top: -350px;
  right: -750px;
  z-index: -1; }

.bobbi-dobbiez-white-element {
  position: absolute;
  top: -200px;
  right: 0; }

.bobbi-dobbiez-violete-circle {
  position: absolute;
  top: -90px;
  right: 20%; }

.bobbi-dobbiez-violete-element {
  position: absolute;
  top: -27px;
  left: 32%; }

.bobbi-dobbiez-red-element {
  position: absolute;
  bottom: -50px;
  left: -85px; }

#bobbi-polish {
  padding: 60px 0; }

.bobbi-polish-red-element {
  position: absolute;
  top: -45px;
  right: 25%; }

.bobbi-polish-shape-form {
  position: absolute;
  top: -45px;
  left: -550px;
  z-index: -1; }

.bobbi-polish-white-circle {
  position: absolute;
  left: -35px;
  top: 120px; }

.bobbi-polish-violete-triangle {
  position: absolute;
  right: -25px;
  bottom: 13px; }

.bobbi-polish-white-line {
  position: absolute;
  bottom: -120px;
  left: 20%; }

#bobbi-stickers {
  padding: 60px 0; }

.bobbi-stickers-yellow-element {
  position: absolute;
  left: -45px;
  top: 200px; }

.bobbi-stickers-violete-element {
  position: absolute;
  right: 6%;
  bottom: -30px; }

#home-testimonials {
  padding: 60px 0; }

.home-testimonials-red-element {
  position: absolute;
  right: 3%;
  top: -55px; }

.testimonial-wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  font-size: 1.28em;
  margin-left: 15px;
  margin-right: 15px;
  height: inherit !important; }

.red {
  color: #DF655A; }

.testimonials-autor {
  font-style: italic; }

.testimonials-slider {
  margin-left: 15px;
  margin-right: 15px; }
  .testimonials-slider .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

.testimonials-shape-form {
  position: absolute;
  z-index: -1;
  background: -webkit-linear-gradient(344deg, #91B5DE 0%, #66BEE1 100%);
  background: linear-gradient(106deg, #91B5DE 0%, #66BEE1 100%);
  border-radius: 50px 0px 0px 50px;
  height: 750px;
  width: 120%;
  top: 120px; }

.testimonials-slider-buttons {
  position: absolute;
  top: 70px;
  left: 70px; }
  .testimonials-slider-buttons .next-button {
    margin-bottom: 65px;
    cursor: pointer; }
  .testimonials-slider-buttons .prev-button {
    cursor: pointer; }

.testimonials-red-element {
  position: absolute;
  top: 450px;
  left: -50px;
  z-index: -2; }

.instagram-title {
  margin-top: 100px; }

.instagram-feed {
  width:100%;
  min-height: 260px;
  padding-left: 60px;
  padding-right: 60px;}
  

#subscribe {
  padding: 100px 0 60px; }

.subscribe-form input[type="email"] {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD0DB;
  border-radius: 40px;
  padding: 22px;
  line-height: 1;
  font-weight: 700;
  height: 62px; }

.subscribe-blue-trialnge {
  position: absolute;
  top: -80px;
  left: -40px; }

.subscrible-green-line {
  position: absolute;
  top: -75px;
  right: 25%; }

.subscribe-red-triangle {
  position: absolute;
  top: -130px;
  right: -70px;
  z-index: -2; }

.hr {
  width: 100%;
  height: 1px;
  background-color: #CBD0DB; }

footer{
	overflow-x:hidden;}

.footer-menu-row {
  padding-top: 38px;
  font-style: 1.14em;
  font-weight: 600; }
  .footer-menu-row .footer-menu-title {
    color: #DF655A;
    margin-bottom: 30px; }
  .footer-menu-row ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .footer-menu-row ul li {
      margin-bottom: 5px; }
      .footer-menu-row ul li a {
        color: #264357; }
        .footer-menu-row ul li a:hover {
          color: #DF655A; }
  .footer-menu-row p {
    line-height: 1.9;
    margin-bottom: 30px; }

.copyright-area {
  padding: 38px 0; }

#copyright-menu {
  margin: 0;
  padding: 0;
  list-style: none; }
  #copyright-menu li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }
    #copyright-menu li:first-child {
      padding-left: 0; }
    #copyright-menu li:last-child {
      padding-right: 0; }
    #copyright-menu li a {
      color: #264357;
      opacity: .5; }
      #copyright-menu li a:hover {
        opacity: 1; }

.copyright {
  opacity: .5; }

#social-buttons {
  padding: 0;
  margin: 0;
  list-style: none; }
  #social-buttons li {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px; }
    #social-buttons li:first-child {
      padding-left: 0; }
    #social-buttons li:last-child {
      padding-right: 0; }
    #social-buttons li a {
      opacity: .5; }
      #social-buttons li a:hover {
        opacity: 1; }

.footer-menu-green-line {
  position: absolute;
  left: -80px;
  top: 150px; }

.footer-menu-green-circle {
  position: absolute;
  bottom: 30px;
  right: -60px; }

.copyright-area {
  overflow: hidden; }

.copiright-area-red-circle {
  position: absolute;
  left: 15%;
  bottom: -40px; }

.copiright-area-red-line {
  position: absolute;
  right: 20%;
  bottom: -15px; }

#page-title {
  padding: 60px 0; }
  #page-title .page-subtitle {
    opacity: .5; }

.page-title-red-line {
  position: absolute;
  top: -60px;
  left: -60px; }

.video-bg {
  position: relative;
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px; }

.play-button svg g {
  -webkit-transition: all .15s ease;
  transition: all .15s ease; }

.play-button:hover svg g {
  opacity: 1; }

#who-we-are {
  padding: 120px 0 200px; }

.how-it-is-started-green-circle {
  position: absolute;
  top: -80px;
  right: -60px; }

.who-we-are-shape-form {
  position: absolute;
  left: -650px;
  top: -330px;
  z-index: -1; }

.who-we-are-white-circle {
  position: absolute;
  top: -120px;
  left: 10px; }

#attachable-plushies {
  padding-bottom: 150px; }

.who-we-are-white-line {
  position: absolute;
  bottom: -110px;
  left: 12%; }

.attachable-plushies-shape-form {
  position: absolute;
  right: -250px;
  top: -350px;
  z-index: -1; }

.attachable-plushies-orange-triangle {
  position: absolute;
  top: -150px;
  left: 25%; }

.attachable-plushies-white-circle {
  position: absolute;
  top: -230px;
  right: 25%; }

.attachable-plushies-red-line {
  position: absolute;
  bottom: -60px;
  left: 35%; }

#contact-us {
  padding: 60px 0; }

.contact-description {
  opacity: .5;
  margin-bottom: 45px; }

input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD0DB;
  border-radius: 40px;
  padding: 22px;
  line-height: 1;
  font-weight: 700;
  height: 62px; }

textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CBD0DB;
  border-radius: 40px;
  padding: 22px;
  line-height: 1;
  font-weight: 700;
  height: 200px; }

.contact-us-red-line {
  position: absolute;
  top: -80px;
  left: -60px; }

.contact-up-green-circle {
  position: absolute;
  top: 30%;
  right: -50px; }

#our-promise{
  padding: 30px 0 60px;
}

#our-promise img{
	max-width:400px;
}

.related.products{
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.related-product-shape-form {
  position: absolute;
  top: -140px;
  right: -550px;
  z-index: -1;  
}

.related-product-green-line{
  position: absolute;
  top: -30px;
  right: 20px;
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
	#sb_instagram.sbi_col_4 #sbi_images .sbi_item{
		width:50%;
	}
	.testimonials-shape-form{
		height:900px;
	}
}
/* Extra Small Devices, Phones */
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 5em; }
  .top-cart {
    position: relative;
    top: unset;
    right: unset; }
  .home-product-viotele-element {
    position: absolute;
    bottom: 0;
    right: 60%; }
  .attachable-plushies-orange-element {
    position: absolute;
    bottom: -60px;
    left: 10%; }
  .newest-product-green-element {
    position: absolute;
    top: 0;
    right: 10%; }
  .testimonials-slider {
    margin-left: 120px;
    margin-right: 120px; } }

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1332px; } }



/* Add FAQ Page */

.btn-faq{
  position: relative;
  font-size: 1.42em;
  font-weight: 600;
  line-height:1;
  padding: 24px 35px 24px 0;
  border-bottom: 1px solid #CBD0DB;
  cursor: pointer;}

.btn-faq:after{
  content: url('../img/minus.svg');
  position: absolute;
  height: 20px;
  top: -10px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 15px;
  cursor: pointer;
}

.btn-faq.collapsed:after{
  content: url('../img/plus.svg');
  position: absolute;
  height: 20px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 15px;
  cursor: pointer;
}

.faq-body{
  padding: 24px 0;
}


/* Add Reviews Page */

#reviews{
  padding-bottom: 80px;
}

/* Add Login Link in Menu */

.login-link{
	font-size:12px;
	margin-left:10px;
}

.mobile-login-link{
	color: #264357;
	font-size:12px;
	margin-left:24px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: none;
    display:block;
}

.woocommerce .woocommerce-form-login .password-input{
	width:100%;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{
	width:100%;
}

.whosale-image{
	border-radius:20px;
}

ul{
	margin:0;
	padding:0 0 0 13px;
}

ul > li{
	margin-bottom:7px;
}

.whosale-note{
	opacity:0.5;
	font-size:0.87em;
	margin-top:-7px;
}

.whosale-green-circle{
	position:absolute;
	right:-20px;
	top:0;
}

#whosale{
	padding:60px 0;
}

.whosale-call-to-action{
	font-size:1.28em;
	font-weight:600;
	line-height:1.8;
}

.whosale-call-toaction-note{
	font-weight: 600;
	font-size: 1em;
	line-height: 1.4;
	color: #909EA6;
}

.whosale-call-to-action-right-curve{
	position:absolute;
	top:0;
	right:0;
}

.whosale-call-to-action-green-line{
	position:absolute;
	left:10%;
	top:10px;
	z-index:-1;
}


