/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

.sticky-cta {
    position: fixed;
    top: 35%;
    right: 0px;
    z-index: 999999999;
    display: flex;
    gap: 15px
}

.sticky-cta .purple-sticky {
    padding: 10px 20px;
    color: #fff;
    background: #7F47DD;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 4px 0 4px rgba(0,0,0,.2);
	max-width: 100px;
	border-radius: 10px 0px 0px 15px;
	border-top: solid 2px #fff;
	border-bottom: solid 2px #fff;
	border-left: solid 2px #fff;
}

@media only screen and (max-width: 1000px) {
	.sticky-cta {
		top: initial;
		left: 0;
		bottom: 0;
		transform: translate(0,0) rotate(0);
		width: 100%;
	}
	
	.sticky-cta .purple-sticky {
    	width: 100%;
		text-align: center;
	}

}

/* SEO Calculator Page */

.seo-calculator h1 {
  text-align: center;
}

.rates_input div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-top: 15px; */
  align-items: flex-end;
}

.rates_input div label {
  flex-grow: 1;
  max-width: 65%;
  min-width: 100px;
  width: 100%;
}

.rates_input div input {
  width: 65%;
}

.rates_input div span {
  font-size: 20px;
  margin-top: -15px;
  font-weight: 700;
  color: #427fe0;
}

.seo-calculator {
  padding: 0;
}

.seo-calculator-wrapper {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.rates_output {
  padding: 40px;
  background: #427fe0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rates_output div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.output_title {
  display: inline-block;
  margin-right: 20px;
}

.rates_input > div {
  border-bottom: 1px solid #dbdbdb;
  padding: 20px 15px;
  margin-bottom: 10px;
}

.rates_input > div:last-child {
  border-bottom: none;
}

.long_details {
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  /* padding: 10px 10px 10px 10px; */
}

.rates_input div label {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.rates_input div label svg {
  margin-left: 10px;
  min-width: 20px;
  cursor: pointer;
}

.input_contents {
  position: relative;
  align-content: center;
  width: 100%;
}

.tootip {
  position: absolute;
  top: 20px;
  background: #427fe0;
  color: #fff;
  max-width: 200px;
  right: 20px;
  z-index: 1;
  padding: 10px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 10px;
}

.tootip.active {
  opacity: 1;
  visibility: visible;
}

.rates_input div label svg path {
  transition: 0.3s;
}

.rates_input div label svg:hover path {
  fill: #515151 !important;
}

.rates_output .text-intro {
  text-align: center;
}

.rates_output .text-intro p {
  font-size: 15px;
  font-weight: 500;
  color: #fff !important;
  line-height: 1.4;
}

.bottom_text_outro {
  font-size: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: normal;
}

.heading-intro {
  text-align: center;
  margin-bottom: 20px;
}

.rates-highlight {
  font-size: 18px !important;
  font-weight: bold !important;
}

@media screen and (min-width: 500px) {
  .rates_input div {
    margin-top: 0;
    align-items: center;
  }

  .rates_input div label {
    max-width: 70%;
  }

  .rates_input div input {
    width: 67%;
    /* 75 */
  }
}

@media screen and (min-width: 990px) {
  .seo-calculator-wrapper {
    flex-direction: row;
  }

  .rates_input {
    width: 60%;
  }

  .rates_output {
    width: 40%;
    border-radius: 0 20px 20px 0px;
  }

  .rates_input div span {
    margin-top: -15px;
  }

  .rates_input > div {
    flex-wrap: nowrap;
  }

  .long_details {
    width: 40%;
    margin-right: 10px;
    padding: 10px 10px 10px 0;
  }

  .input_contents {
    width: 60%;
  }
}


