/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 11 2020 | 14:37:29 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.calculate {
  width: calc(100% - 140px);
  margin: 0px 70px;
  padding: 60px 10px;
  text-align: left;
  border-radius: 16px;
  background-image: linear-gradient(#BDB2EC, #947BFA);
}

.calculate section:first-child {
  padding: 0px 50px;
}

.calculate section:last-child {
  padding: 60px 0px 60px 0px;
  text-align: center;
}

.calculate p {
  	padding-bottom: 0px;
}

.calculate .title {
	font-family: 'Gilroy-SemiBold';
    font-size: 24px;
  	line-height: 36px;
    color: #fff;
  	margin-bottom: 30px;
}

.calculate .detail .money,
.calculate{
	color: #eae5fe;
	margin-top: 32px;
	font-size: 14px;
    line-height:20px;
    font-family: 'Gilroy-Medium';
}

.calculate .money {
	margin-top: 35px;
}

.calculate input[type="text"] {
	width: 100px;
	font-size: 30px!important;
	color: white;
    font-family: 'Gilroy-SemiBold';
	background: none!important;
	border: none!important;
	border-bottom: 2px solid rgba(255,255,255,0.5)!important;
  	margin-bottom: 10px;
}

.calculate input[type="text"]:focus {
	outline: none;
	border-bottom: 2px solid rgba(255,255,255,1)!important;
}

.calculate #time:focus {
	background-color: #a18cf5!important;
}

.calculate #rate:focus {
	background-color: #9880f9!important;
}

.calculate a {
    display: block;
    width: 100%;
    margin-top: 32px;
    padding: 16px;
    text-align: center;
    color: #947bf9;
  	font-family: 'Gilroy-SemiBold'!important;
    font-size: 16px;
  	line-height: 24px;
    border: none;
    border-radius: 15px!important;
    background-color: white;
}

.calculate #result {
  display: none;
  width: 100%;
  height: 100%;
}

.calculate #result p {
  color: white;
  font-size: 40px;
  font-family: 'Gilroy-SemiBold';
}

.calculate #result p:first-child {
  font-size: 24px;
}

.calculate #result p:nth-child(2) {
	margin: 35px 0px;
}

.calculate #result p:last-child {
  font-size: 20px;
}

.calculate #result p:last-child:hover {
  cursor: pointer!important;
}

@media only screen and (max-width: 1000px) {
  .calculate {
    width: 100%;
    margin: 0px;
  }
  
  .calculate section {
    padding-left: 0px!important;
    padding-right: 0px!important;
  }
  
  .calculate section .title{
    text-align: center;
  }
}