434 lines
8.2 KiB
CSS
434 lines
8.2 KiB
CSS
/* PAGE - PRICING */
|
|
|
|
/* PAGE - PRICING - Plans */
|
|
|
|
.section-page-pricing {
|
|
padding: 40px 0 50px 0;
|
|
}
|
|
|
|
.section-page-pricing-content {
|
|
width: 990px;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pricing-plans-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.pricing-plans-list > li {
|
|
width: 214px;
|
|
max-width: 100%;
|
|
position: relative;
|
|
margin: 0 50px 0 50px;
|
|
}
|
|
|
|
.plan-header {
|
|
padding: 0 25px 5px 0;
|
|
}
|
|
|
|
.plan-header > h2 {
|
|
font-weight: bold;
|
|
font-size: 22px;
|
|
line-height: 28px;
|
|
margin: 0 0 15px 0;
|
|
}
|
|
.plan-header .starts-from {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
display: inline-block;
|
|
width: 100%;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.plan-price-block {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.plan-price-block p {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.plan-price {
|
|
display: block;
|
|
font-size: 24px;
|
|
line-height: 36px;
|
|
}
|
|
.plan-price i {
|
|
font-style: normal;
|
|
display: inline-block;
|
|
font-size: 46px;
|
|
font-weight: bold;
|
|
margin-left: 5px;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
|
|
.plan-price-description {
|
|
display: block;
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
margin: 3px 0 0 8px;
|
|
}
|
|
|
|
/*.plan-content-card {*/
|
|
/*padding: 25px;*/
|
|
/*border-radius: 6px;*/
|
|
/*background-color: #ededed;*/
|
|
/*position: relative;*/
|
|
/*min-height: 280px;*/
|
|
/*}*/
|
|
|
|
.plan-content-card-products-list > li {
|
|
margin: 0 0 26px 0;
|
|
}
|
|
|
|
.plan-content-card-products-list > li:last-of-type {
|
|
margin: 0;
|
|
}
|
|
|
|
.plan-content-card-products-list > li > h3 {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
|
|
.features-list {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.features-list > li {
|
|
margin: 0 0 12px 0;
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
line-height: 22px;
|
|
}
|
|
.features-list > li > span {
|
|
display: block;
|
|
opacity: 0.6;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
font-weight: normal;
|
|
margin-top: 8px;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.features-list > li:last-of-type {
|
|
margin: 0;
|
|
}
|
|
|
|
.features-list > li > a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.features-list > li i {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
padding: 1px 6px 2px 6px;
|
|
border-radius: 100px;
|
|
background-color: #c7c7cc;
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
color: #fff;
|
|
margin: 0 0 0 3px;
|
|
}
|
|
|
|
a.plan-card-button {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: calc(100% - 50px);
|
|
height: 50px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #c7c7cc;
|
|
border-radius: 4px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
color: #fff;
|
|
text-align: center;
|
|
position: absolute;
|
|
bottom: 25px;
|
|
left: 25px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
a.plan-card-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
a.plan-card-button > span {
|
|
display: block;
|
|
width: 100%;
|
|
font-weight: normal;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
margin: -12px 0 0 0;
|
|
}
|
|
|
|
a.plan-card-button-blue {
|
|
background-color: #007aff;
|
|
}
|
|
|
|
a.plan-card-button-blue:hover {
|
|
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.section-pricing-cta-block {
|
|
margin: 10px 0 40px 0;
|
|
text-align: center;
|
|
}
|
|
.section-pricing-cta-block .button {
|
|
width: 100%;
|
|
}
|
|
|
|
/* PAGE - PRICING - FAQ */
|
|
|
|
.section-page-pricing-faq {
|
|
padding: 50px 0 100px 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-content {
|
|
width: 690px;
|
|
max-width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.section-page-pricing-faq-content > h3 {
|
|
font-weight: bold;
|
|
font-size: 44px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
margin: 0 0 30px 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-list {
|
|
width: 600px;
|
|
margin: 0 auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.section-page-pricing-faq-list > li {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-list > li:last-of-type {
|
|
margin: 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-list > li > h4 {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
position: relative;
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
line-height: 34px;
|
|
min-height: 80px;
|
|
margin: 0;
|
|
padding: 10px 80px 10px 20px;
|
|
background-color: #ededed;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.section-page-pricing-faq-list > li > h4::before,
|
|
.section-page-pricing-faq-list > li > h4::after {
|
|
content: '';
|
|
width: 14px;
|
|
height: 1px;
|
|
background-color: #111;
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 33px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.section-page-pricing-faq-list > li > h4.active::after {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
.section-page-pricing-faq-list-item-content {
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
display: none;
|
|
padding: 20px 80px 30px 20px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section-page-pricing-faq-list-item-content p {
|
|
margin: 0 0 16px 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-list-item-content p:last-of-type {
|
|
margin: 0;
|
|
}
|
|
|
|
.section-page-pricing-faq-list-item-content a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.section-page-pricing-faq-list-item-content ol {
|
|
list-style-type: decimal;
|
|
padding: 0 0 0 18px;
|
|
}
|
|
|
|
.section-page-pricing-faq-ps {
|
|
width: 600px;
|
|
max-width: 100%;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
padding: 0 80px 0 20px;
|
|
margin: 40px auto 0 auto;
|
|
}
|
|
.section-dropdown {
|
|
width: 100%;
|
|
background: url('/static/website/img/icons/chevron-down.svg');
|
|
background-repeat: no-repeat;
|
|
background-position: right 3px top 14px;
|
|
background-size: 18px;
|
|
position: relative;
|
|
}
|
|
.section-dropdown.open {
|
|
background: url('/static/website/img/icons/chevron-up.svg');
|
|
background-repeat: no-repeat;
|
|
background-position: right 3px top 14px;
|
|
background-size: 18px;
|
|
}
|
|
.section-dropdown > span {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
cursor: pointer;
|
|
}
|
|
.section-dropdown > span > i {
|
|
display: inline-block;
|
|
color: #007aff;
|
|
font-style: normal;
|
|
width: 100%;
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
.section-dropdown > ul {
|
|
background: black;
|
|
color: white;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
width: 215px;
|
|
position: absolute;
|
|
top: 56px;
|
|
left: 0;
|
|
height: 0px;
|
|
opacity: 0;
|
|
z-index: -1;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.section-dropdown > ul > li {
|
|
font-weight: bold;
|
|
}
|
|
.section-dropdown > ul > li:first-of-type {
|
|
font-weight: normal;
|
|
}
|
|
.section-dropdown > ul > li:last-of-type {
|
|
font-weight: normal;
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
}
|
|
.section-dropdown > ul > li:last-of-type > a {
|
|
color: #007aff;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
.section-dropdown > ul > li > span {
|
|
float: right;
|
|
}
|
|
.section-dropdown.open > ul {
|
|
height: 286px;
|
|
opacity: 1;
|
|
z-index: 1;
|
|
}
|
|
.free .plan-header > h2 {
|
|
margin-bottom: 47px;
|
|
}
|
|
.free .plan-header {
|
|
padding: 0 25px 3px 0;
|
|
}
|
|
.free .plan-header p {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.6);
|
|
margin: 8px 0 24px 0;
|
|
}
|
|
.switch-section {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
.switcher {
|
|
display: inline-block;
|
|
position: relative;
|
|
border-radius: 36px;
|
|
background: #fff;
|
|
box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.08);
|
|
padding: 6px;
|
|
margin-top: 32px;
|
|
}
|
|
.switcher div {
|
|
float: left;
|
|
padding: 7px 24px 5px 24px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
position: relative;
|
|
z-index: 2;
|
|
min-width: 141px;
|
|
line-height: 16px;
|
|
font-size: 16px;
|
|
transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
|
|
}
|
|
.switcher div:nth-child(1) {
|
|
color: #fff;
|
|
}
|
|
.switcher:after {
|
|
content: ' ';
|
|
display: block;
|
|
width: 141px;
|
|
height: 28px;
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 7px;
|
|
border-radius: 36px;
|
|
background: #3eb991;
|
|
z-index: 1;
|
|
transform: translate3d(0, 0, 0);
|
|
transition: all 0.3s ease;
|
|
}
|
|
.switcher.active:after {
|
|
transform: translate3d(140px, 0, 0);
|
|
}
|
|
.switcher.active div:nth-child(1) {
|
|
color: #000;
|
|
}
|
|
.switcher.active div:nth-child(2) {
|
|
color: #fff;
|
|
}
|
|
.switcher:before {
|
|
content: attr(data-discount);
|
|
position: absolute;
|
|
color: #e13434;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
width: 141px;
|
|
left: 6px;
|
|
top: -26px;
|
|
text-align: center;
|
|
}
|